Lines Matching refs:object

200   function inspect(object) {  argument
202 if (isUndefined(object)) return 'undefined';
203 if (object === null) return 'null';
204 return object.inspect ? object.inspect() : String(object);
273 function stringify(object) { argument
274 return JSON.stringify(object);
277 function toQueryString(object) { argument
278 return $H(object).toQueryString();
281 function toHTML(object) { argument
282 return object && object.toHTML ? object.toHTML() : String.interpret(object);
285 function keys(object) { argument
286 if (Type(object) !== OBJECT_TYPE) { throw new TypeError(); }
288 for (var property in object) {
289 if (object.hasOwnProperty(property)) {
296 function values(object) { argument
298 for (var property in object)
299 results.push(object[property]);
303 function clone(object) { argument
304 return extend({ }, object);
307 function isElement(object) { argument
308 return !!(object && object.nodeType == 1);
311 function isArray(object) { argument
312 return _toString.call(object) === ARRAY_CLASS;
322 function isHash(object) { argument
323 return object instanceof Hash;
326 function isFunction(object) { argument
327 return _toString.call(object) === FUNCTION_CLASS;
330 function isString(object) { argument
331 return _toString.call(object) === STRING_CLASS;
334 function isNumber(object) { argument
335 return _toString.call(object) === NUMBER_CLASS;
338 function isDate(object) { argument
339 return _toString.call(object) === DATE_CLASS;
342 function isUndefined(object) { argument
343 return typeof object === "undefined";
744 function interpolate(object, pattern) { argument
745 return new Template(this, pattern).evaluate(object);
788 evaluate: function(object) { argument
789 if (object && Object.isFunction(object.toTemplateReplacements))
790 object = object.toTemplateReplacements();
793 if (object == null) return (match[1] + '');
798 var ctx = object, expr = match[3],
904 function include(object) { argument
906 if (this.indexOf(object) != -1) return true;
910 if (value == object) {
1222 function $H(object) { argument
1223 return new Hash(object);
1227 function initialize(object) { argument
1228 this._object = Object.isHash(object) ? object.toObject() : Object.clone(object);
1277 function merge(object) { argument
1278 return this.clone().update(object);
1281 function update(object) { argument
1282 return new Hash(object).inject(this, function(result, pair) {