HomeSort by relevance Sort by last modified time
    Searched defs:defineGetter (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerActivation.cpp 84 void DebuggerActivation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
86 m_activation->defineGetter(exec, propertyName, getterFunction, attributes);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.cpp 128 void JSDOMWindowShell::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
130 m_window->defineGetter(exec, propertyName, getterFunction, attributes);
JSLocationCustom.cpp 171 void JSLocation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
175 Base::defineGetter(exec, propertyName, getterFunction, attributes);
282 void JSLocationPrototype::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
286 Base::defineGetter(exec, propertyName, getterFunction, attributes);
JSDOMWindowCustom.cpp 395 void JSDOMWindow::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
401 // Don't allow shadowing location using defineGetter.
405 Base::defineGetter(exec, propertyName, getterFunction, attributes);
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.cpp 144 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes)
148 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes);
JSObject.cpp 313 void JSObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
648 target->defineGetter(exec, propertyName, asObject(descriptor.getter()), attributes);

Completed in 340 milliseconds