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

1 2

  /external/webkit/JavaScriptCore/runtime/
ObjectPrototype.cpp 86 return thisValue.toThisObject(exec);
91 return jsBoolean(thisValue.toThisObject(exec)->hasOwnProperty(exec, Identifier(exec, args.at(0).toString(exec))));
96 JSObject* thisObj = thisValue.toThisObject(exec);
118 thisValue.toThisObject(exec)->defineGetter(exec, Identifier(exec, args.at(0).toString(exec)), asObject(args.at(1)));
127 thisValue.toThisObject(exec)->defineSetter(exec, Identifier(exec, args.at(0).toString(exec)), asObject(args.at(1)));
133 return thisValue.toThisObject(exec)->lookupGetter(exec, Identifier(exec, args.at(0).toString(exec)));
138 return thisValue.toThisObject(exec)->lookupSetter(exec, Identifier(exec, args.at(0).toString(exec)));
143 return jsBoolean(thisValue.toThisObject(exec)->propertyIsEnumerable(exec, Identifier(exec, args.at(0).toString(exec))));
153 return jsMakeNontrivialString(exec, "[object ", thisValue.toThisObject(exec)->className(), "]");
JSStaticScopeObject.cpp 40 JSObject* JSStaticScopeObject::toThisObject(ExecState* exec) const
ErrorPrototype.cpp 51 JSObject* thisObj = thisValue.toThisObject(exec);
JSActivation.h 62 virtual JSObject* toThisObject(ExecState*) const;
JSNumberCell.cpp 70 JSObject* JSNumberCell::toThisObject(ExecState* exec) const
JSStaticScopeObject.h 55 virtual JSObject* toThisObject(ExecState*) const;
JSZombie.h 62 virtual JSObject* toThisObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; }
JSCell.cpp 161 JSObject* JSCell::toThisObject(ExecState* exec) const
168 return toThisObject(exec)->toString(exec);
JSCell.h 109 virtual JSObject* toThisObject(ExecState*) const;
323 inline JSObject* JSValue::toThisObject(ExecState* exec) const
325 return isCell() ? asCell()->toThisObject(exec) : toThisObjectSlowCase(exec);
ArrayPrototype.cpp 252 JSObject* thisObj = thisValue.toThisObject(exec);
291 JSValue curArg = thisValue.toThisObject(exec);
321 JSObject* thisObj = thisValue.toThisObject(exec);
343 JSObject* thisObj = thisValue.toThisObject(exec);
354 JSObject* thisObj = thisValue.toThisObject(exec);
378 JSObject* thisObj = thisValue.toThisObject(exec);
403 JSObject* thisObj = thisValue.toThisObject(exec);
446 JSObject* thisObj = thisValue.toThisObject(exec);
504 JSObject* thisObj = thisValue.toThisObject(exec);
559 JSObject* thisObj = thisValue.toThisObject(exec)
    [all...]
JSActivation.cpp 132 JSObject* JSActivation::toThisObject(ExecState* exec) const
JSString.cpp 189 JSObject* JSString::toThisObject(ExecState* exec) const
JSFunction.cpp 122 return exec->interpreter()->execute(jsExecutable(), exec, this, thisValue.toThisObject(exec), args, scopeChain().node(), exec->exceptionSlot());
JSNumberCell.h 66 virtual JSObject* toThisObject(ExecState*) const;
JSGlobalObjectFunctions.cpp 276 JSObject* thisObject = thisValue.toThisObject(exec);
JSObject.cpp 481 JSObject* JSObject::toThisObject(ExecState*) const
JSString.h 348 virtual JSObject* toThisObject(ExecState*) const;
JSValue.h 189 JSObject* toThisObject(ExecState*) const;
  /external/webkit/JavaScriptCore/API/
JSCallbackFunction.cpp 55 JSObjectRef thisObjRef = toRef(thisValue.toThisObject(exec));
JSContextRef.cpp 142 // It is necessary to call toThisObject to get the wrapper object when used with WebCore.
143 return toRef(exec->lexicalGlobalObject()->toThisObject(exec));
JSCallbackObjectFunctions.h 377 JSObjectRef thisObjRef = toRef(thisValue.toThisObject(exec));
  /external/webkit/WebCore/bindings/js/
JSDOMWindowBase.h 73 virtual JSC::JSObject* toThisObject(JSC::ExecState*) const;
JSDOMWindowBase.cpp 142 JSObject* JSDOMWindowBase::toThisObject(ExecState*) const
JSEventListener.cpp 163 JSValue thisValue = globalObject->toThisObject(exec);
  /external/webkit/JavaScriptCore/profiler/
ProfileGenerator.cpp 66 m_currentNode = ProfileNode::create(Profiler::createCallIdentifier(exec, function ? function.toThisObject(exec) : 0, sourceURL, lineNumber), m_head.get(), m_head.get());

Completed in 105 milliseconds

1 2