Searched refs:getOwnPropertySlot (Results 1 - 25 of 80) sorted by relevance

1234

/external/webkit/Source/JavaScriptCore/runtime/
H A DObjectPrototype.h34 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
H A DRegExpMatchesArray.h33 virtual bool getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) function in class:JSC::RegExpMatchesArray
37 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
40 virtual bool getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) function in class:JSC::RegExpMatchesArray
44 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
H A DArrayPrototype.h33 bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
H A DDatePrototype.h34 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
H A DJSByteArray.cpp58 bool JSByteArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) function in class:JSC::JSByteArray
66 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
80 bool JSByteArray::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) function in class:JSC::JSByteArray
86 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
H A DJSONObject.h48 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
H A DMathObject.h32 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
H A DStringObject.cpp53 bool StringObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) function in class:JSC::StringObject
57 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
60 bool StringObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) function in class:JSC::StringObject
64 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
H A DStringPrototype.h34 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
H A DJSNotAnObject.h64 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
65 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
H A DStringObject.h36 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
37 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
H A DJSStaticScopeObject.cpp70 bool JSStaticScopeObject::getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot& slot) function in class:JSC::JSStaticScopeObject
H A DNumberConstructor.h34 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
H A DObjectConstructor.h34 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
H A DJSNotAnObject.cpp77 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, const Identifier&, PropertySlot&) function in class:JSC::JSNotAnObject
83 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, unsigned, PropertySlot&) function in class:JSC::JSNotAnObject
H A DJSZombie.h66 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&) { ASSERT_NOT_REACHED(); return false; } function in class:JSC::JSZombie
67 virtual bool getOwnPropertySlot(ExecState*, unsigned, PropertySlot&) { ASSERT_NOT_REACHED(); return false; } function in class:JSC::JSZombie
H A DJSByteArray.h81 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
82 virtual bool getOwnPropertySlot(JSC::ExecState*, unsigned propertyName, JSC::PropertySlot&);
H A DJSStaticScopeObject.h46 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
/external/webkit/Source/WebCore/bridge/
H A Druntime_array.h41 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
42 virtual bool getOwnPropertySlot(ExecState*, unsigned, PropertySlot&);
H A Druntime_array.cpp78 bool RuntimeArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) function in class:JSC::RuntimeArray
94 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
120 bool RuntimeArray::getOwnPropertySlot(ExecState *exec, unsigned index, PropertySlot& slot) function in class:JSC::RuntimeArray
127 return JSObject::getOwnPropertySlot(exec, index, slot);
H A Druntime_method.cpp67 bool RuntimeMethod::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot) function in class:JSC::RuntimeMethod
74 return InternalFunction::getOwnPropertySlot(exec, propertyName, slot);
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerActivation.cpp54 bool DebuggerActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) function in class:JSC::DebuggerActivation
56 return m_activation->getOwnPropertySlot(exec, propertyName, slot);
H A DDebuggerActivation.h41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestMediaQueryListListener.h38 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
64 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
/external/webkit/Source/JavaScriptGlue/
H A DUserObjectImp.h49 virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&);

Completed in 610 milliseconds

1234