HomeSort by relevance Sort by last modified time
    Searched defs:getOwnPropertySlot (Results 1 - 25 of 41) sorted by null

1 2

  /external/webkit/Source/JavaScriptCore/runtime/
JSStaticScopeObject.cpp 70 bool JSStaticScopeObject::getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot& slot)
RegExpMatchesArray.h 33 virtual bool getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
37 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
40 virtual bool getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
44 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
StringObject.cpp 53 bool StringObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
57 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
60 bool StringObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
64 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
JSByteArray.cpp 58 bool JSByteArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
66 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
80 bool JSByteArray::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
86 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
JSNotAnObject.cpp 77 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, const Identifier&, PropertySlot&)
83 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, unsigned, PropertySlot&)
NumberConstructor.cpp 69 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
ObjectPrototype.cpp 72 bool ObjectPrototype::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
76 return JSObject::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);
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.
JSZombie.h 66 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&) { ASSERT_NOT_REACHED(); return false; }
67 virtual bool getOwnPropertySlot(ExecState*, unsigned, PropertySlot&) { ASSERT_NOT_REACHED(); return false; }
RegExpObject.cpp 82 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
JSActivation.cpp 135 bool JSActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
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);
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);
MathObject.cpp 106 bool MathObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerActivation.cpp 54 bool DebuggerActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
56 return m_activation->getOwnPropertySlot(exec, propertyName, slot);
  /external/webkit/Source/WebCore/bridge/
runtime_method.cpp 67 bool RuntimeMethod::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
74 return InternalFunction::getOwnPropertySlot(exec, propertyName, slot);
runtime_array.cpp 78 bool RuntimeArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
94 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
120 bool RuntimeArray::getOwnPropertySlot(ExecState *exec, unsigned index, PropertySlot& slot)
127 return JSObject::getOwnPropertySlot(exec, index, slot);
runtime_object.cpp 114 bool RuntimeObject::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
156 return instance->getOwnPropertySlot(this, exec, propertyName, slot);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
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)
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)
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)
  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.cpp 113 // getOwnPropertySlot should have guarded against a null fJSUserObject.
125 bool UserObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
145 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
  /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);
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 115 virtual bool getOwnPropertySlot(JSObject*, ExecState*, const Identifier&, PropertySlot&) { return false; }

Completed in 933 milliseconds

1 2