Searched refs:defineGetter (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerActivation.cpp84 void DebuggerActivation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes) function in class:JSC::DebuggerActivation
86 m_activation->defineGetter(exec, propertyName, getterFunction, attributes);
H A DDebuggerActivation.h47 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes);
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowShell.cpp128 void JSDOMWindowShell::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes) function in class:WebCore::JSDOMWindowShell
130 m_window->defineGetter(exec, propertyName, getterFunction, attributes);
H A DJSLocationCustom.cpp171 void JSLocation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes) function in class:WebCore::JSLocation
175 Base::defineGetter(exec, propertyName, getterFunction, attributes);
282 void JSLocationPrototype::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes) function in class:WebCore::JSLocationPrototype
286 Base::defineGetter(exec, propertyName, getterFunction, attributes);
H A DJSDOMWindowShell.h80 virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* getterFunction, unsigned attributes);
H A DJSDOMWindowCustom.cpp395 void JSDOMWindow::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes) function in class:WebCore::JSDOMWindow
401 // Don't allow shadowing location using defineGetter.
405 Base::defineGetter(exec, propertyName, getterFunction, attributes);
/external/webkit/Source/JavaScriptCore/runtime/
H A DObjectPrototype.cpp120 thisValue.toThisObject(exec)->defineGetter(exec, Identifier(exec, exec->argument(0).toString(exec)), asObject(exec->argument(1)));
H A DJSGlobalObject.cpp144 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes) function in class:JSC::JSGlobalObject
148 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes);
H A DJSObject.cpp313 void JSObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes) function in class:JSC::JSObject
648 target->defineGetter(exec, propertyName, asObject(descriptor.getter()), attributes);
H A DJSGlobalObject.h162 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes);
H A DJSObject.h200 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes = 0);
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp3525 baseObj->defineGetter(callFrame, stackFrame.args[1].identifier(), asObject(stackFrame.args[2].jsValue()));
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp4661 baseObj->defineGetter(callFrame, ident, asObject(callFrame->r(function).jsValue()));

Completed in 720 milliseconds