Searched defs:defineGetter (Results 1 - 6 of 6) 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);
/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 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 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);

Completed in 24 milliseconds