Lines Matching defs:object
251 JSObject *object = inValue.toObject(exec);
255 JSObject* imp = object;
271 if (object->inherits(&ArrayInstanceImp::s_info))
273 if (object->className() == "Array")
280 object->getPropertyNames(exec, propNames);
303 unsigned int length = object->get(exec, Identifier(exec, "length")).toUInt32(exec);
309 CFTypeRef cfValue = KJSValueToCFTypeInternal(object->get(exec, i), exec, &imps);
319 object->getPropertyNames(exec, propNames);
332 if (object->hasProperty(exec, propName))
335 CFTypeRef cfValue = KJSValueToCFTypeInternal(object->get(exec, propName), exec, &imps);
384 * The execution state holds two things: (1) exceptions; (2) the global object.
386 * the global object, JSGlue includes no calls that depend on it. Its property
387 * getters and setters are per-object; they don't walk up the enclosing scope.