HomeSort by relevance Sort by last modified time
    Searched refs:toObject (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/JavaScriptCore/runtime/
JSCell.cpp 122 JSObject* object = toObject(exec);
134 JSObject* object = toObject(exec);
143 toObject(exec)->put(exec, identifier, value, slot);
148 toObject(exec)->put(exec, identifier, value);
153 return toObject(exec)->deleteProperty(exec, identifier);
158 return toObject(exec)->deleteProperty(exec, identifier);
163 return toObject(exec);
221 JSObject* JSCell::toObject(ExecState*) const
Completion.cpp 59 JSObject* thisObj = (!thisValue || thisValue.isUndefinedOrNull()) ? exec->dynamicGlobalObject() : thisValue.toObject(exec);
JSNotAnObject.h 54 // any operations performed on the result of a failed toObject call.
78 virtual JSObject* toObject(ExecState*) const;
JSNumberCell.cpp 65 JSObject* JSNumberCell::toObject(ExecState* exec) const
JSZombie.h 56 virtual JSObject* toObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; }
JSCell.h 90 virtual JSObject* toObject(ExecState*) const;
102 // Object operations, with the toObject operation included.
318 inline JSObject* JSValue::toObject(ExecState* exec) const
320 return isCell() ? asCell()->toObject(exec) : toObjectSlowCase(exec);
JSNotAnObject.cpp 70 JSObject* JSNotAnObject::toObject(ExecState* exec) const
JSString.cpp 184 JSObject* JSString::toObject(ExecState* exec) const
ArrayPrototype.cpp 234 JSObject* o = element.toObject(exec);
297 JSObject* curObject = curArg.toObject(exec);
589 JSObject* applyThis = args.at(1).isUndefinedOrNull() ? exec->globalThisValue() : args.at(1).toObject(exec);
647 JSObject* applyThis = args.at(1).isUndefinedOrNull() ? exec->globalThisValue() : args.at(1).toObject(exec);
704 JSObject* applyThis = args.at(1).isUndefinedOrNull() ? exec->globalThisValue() : args.at(1).toObject(exec);
760 JSObject* applyThis = args.at(1).isUndefinedOrNull() ? exec->globalThisValue() : args.at(1).toObject(exec);
805 JSObject* applyThis = args.at(1).isUndefinedOrNull() ? exec->globalThisValue() : args.at(1).toObject(exec);
    [all...]
JSNumberCell.h 63 virtual JSObject* toObject(ExecState*) const;
ObjectConstructor.cpp 69 return arg.toObject(exec);
JSObject.h 133 virtual JSObject* toObject(ExecState*) const;
235 using JSCell::toObject;
JSObject.cpp 476 JSObject* JSObject::toObject(ExecState*) const
JSString.h 345 virtual JSObject* toObject(ExecState*) const;
JSValue.h 162 JSObject* toObject(ExecState*) const;
180 // Object operations, with the toObject operation included.
  /external/webkit/JavaScriptGlue/
JSValueWrapper.cpp 77 JSObject* object = ptr->GetValue().toObject(exec);
112 JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, exec));
136 JSObject *objValue = ptr->GetValue().toObject(exec);
153 JSObject* ksjThisObj = value.toObject(exec);
154 JSObject* objValue = ptr->GetValue().toObject(exec);
UserObjectImp.cpp 145 JSObject* kjsObject = kjsValue.toObject(exec);
175 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec), exec);
212 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec), exec);
292 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec), exec);
326 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec), exec);
JSUtils.cpp 250 JSObject *object = inValue.toObject(exec);
  /external/v8/test/mjsunit/regress/
regress-1200351.js 80 eval("unescape(break.toObject()).prototype.new RegExp.continue.__lookupGetter__(x.slice(1, NaN)) = typeof(null.push(0.2))")
136 eval("x = return debugger.toObject()")
196 eval("for (new RegExp.join().className() in new Object().length()>>true.toObject()) { parseFloat(escape(debugger)) }")
236 eval("for (null.size/true.add(void) in 0+continue&true.null) { continue.toObject()/throw new true(debugger) }")
252 eval("switch (parseInt(0).length()) { case ('a'.toObject().__defineSetter__(GetFunctionFor(null),function(){(!x)})): IsSmi(void).constructor; break; }")
260 eval("with ({ 0>>>=this.lastIndex : new Object().lastIndexOf(true).toObject() }) { x.lastIndex > 1.__defineSetter__(false,function(){this}) }")
332 eval("for (debugger==continue.toObject(), Array(NaN.className()), Math.max(new RegExp).prototype.value) { GetFunctionFor('a').prototype.value }")
352 eval("for (void==NaN.sort(), new Object()==new RegExp.toObject(), -1/NaN.unshift()) { GetFunctionFor(true).name() }")
356 eval("for ((!'a'.join()), ~NaN.__defineGetter__(undef,function(){this}), Math.pow(NaN).__lookupGetter__(typeof(false))) { throw new debugger.toObject()(Math.max(-1)) }")
440 eval("const x = new GetFunctionFor(0.2).toObject()")
    [all...]
  /external/webkit/WebCore/bindings/js/
JSGeolocationCustom.cpp 84 JSObject* object = value.toObject(exec);
JSDOMBinding.cpp 650 return static_cast<DateInstance*>(value.toObject(exec))->internalNumber();
656 JSObject* exceptionObject = exception.toObject(exec);
  /external/webkit/JavaScriptCore/API/
JSValueRef.cpp 275 JSObjectRef objectRef = toRef(jsValue.toObject(exec));
  /external/webkit/WebCore/bridge/qt/
qt_runtime.cpp 130 JSObject *object = val.toObject(exec);
154 object = value.toObject(exec);
642 JSObject* object = value.toObject(exec);
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/webkit/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 1006 this._object = Object.isHash(object) ? object.toObject() : Object.clone(object);
1034 toObject: function() {
1083 return Object.toJSON(this.toObject());
1092 Hash.prototype.toTemplateReplacements = Hash.prototype.toObject;
1186 this.options.parameters = this.options.parameters.toObject();
    [all...]

Completed in 109 milliseconds

1 2