HomeSort by relevance Sort by last modified time
    Searched refs:getOwnPropertySlot (Results 26 - 50 of 80) sorted by null

12 3 4

  /external/webkit/Source/JavaScriptCore/runtime/
JSStaticScopeObject.h 46 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
JSFunction.cpp 181 bool JSFunction::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
184 return Base::getOwnPropertySlot(exec, propertyName, slot);
225 return Base::getOwnPropertySlot(exec, propertyName, slot);
235 getOwnPropertySlot(exec, propertyName, slot);
268 getOwnPropertySlot(exec, exec->propertyNames().prototype, slot);
288 getOwnPropertySlot(exec, propertyName, slot);
JSCell.cpp 117 bool JSCell::getOwnPropertySlot(ExecState* exec, const Identifier& identifier, PropertySlot& slot)
119 // This is not a general purpose implementation of getOwnPropertySlot.
121 // It calls getPropertySlot, not getOwnPropertySlot.
129 bool JSCell::getOwnPropertySlot(ExecState* exec, unsigned identifier, PropertySlot& slot)
131 // This is not a general purpose implementation of getOwnPropertySlot.
133 // It calls getPropertySlot, not getOwnPropertySlot.
JSString.cpp 271 bool JSString::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
273 // The semantics here are really getPropertySlot, not getOwnPropertySlot.
285 if (object->getOwnPropertySlot(exec, propertyName, slot))
319 bool JSString::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
321 // The semantics here are really getPropertySlot, not getOwnPropertySlot.
325 return JSString::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
RegExpObject.h 55 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
Lookup.h 195 return thisObj->ParentImp::getOwnPropertySlot(exec, propertyName, slot);
231 if (static_cast<ParentImp*>(thisObj)->ParentImp::getOwnPropertySlot(exec, propertyName, slot))
273 return thisObj->ParentImp::getOwnPropertySlot(exec, propertyName, slot);
Arguments.cpp 144 bool Arguments::getOwnPropertySlot(ExecState* exec, unsigned i, PropertySlot& slot)
154 return JSObject::getOwnPropertySlot(exec, Identifier(exec, UString::number(i)), slot);
181 bool Arguments::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
209 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
JSFunction.h 94 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
JSGlobalObject.h 156 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
323 inline bool JSGlobalObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
325 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot))
340 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot))
NumberConstructor.cpp 69 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
RegExpConstructor.h 68 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.h 49 virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestMediaQueryListListener.cpp 70 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
90 bool JSTestMediaQueryListListenerConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
122 bool JSTestMediaQueryListListenerPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
146 bool JSTestMediaQueryListListener::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
JSTestInterface.cpp 69 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
91 bool JSTestInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
150 bool JSTestInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
JSTestSerializedScriptValueInterface.cpp 71 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
91 bool JSTestSerializedScriptValueInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
136 bool JSTestSerializedScriptValueInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
JSTestInterface.h 40 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
JSTestSerializedScriptValueInterface.h 40 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
  /external/webkit/Source/WebCore/bridge/
runtime_object.h 41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.cpp 88 bool JSDOMWindowShell::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
90 return m_window->getOwnPropertySlot(exec, propertyName, slot);
JSDOMWindowShell.h 73 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
JSWorkerContextCustom.cpp 73 if (JSGlobalObject::getOwnPropertySlot(exec, propertyName, slot))
  /external/webkit/Source/WebCore/bridge/qt/
qt_instance.h 67 virtual bool getOwnPropertySlot(JSObject*, ExecState*, const Identifier&, PropertySlot&);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.h 66 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 115 virtual bool getOwnPropertySlot(JSObject*, ExecState*, const Identifier&, PropertySlot&) { return false; }
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 113 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);

Completed in 482 milliseconds

12 3 4