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

  /external/webkit/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);
DebuggerActivation.h 47 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes);
  /external/webkit/WebCore/bindings/js/
JSDOMWindowShell.cpp 127 void JSDOMWindowShell::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
129 m_window->defineGetter(exec, propertyName, getterFunction, attributes);
JSDOMWindowShell.h 80 virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* getterFunction, unsigned attributes);
JSLocationCustom.cpp 180 void JSLocation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
184 Base::defineGetter(exec, propertyName, getterFunction, attributes);
364 void JSLocationPrototype::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
368 Base::defineGetter(exec, propertyName, getterFunction, attributes);
JSDOMWindowCustom.cpp 415 void JSDOMWindow::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
421 // Don't allow shadowing location using defineGetter.
425 Base::defineGetter(exec, propertyName, getterFunction, attributes);
    [all...]
  /external/webkit/JavaScriptCore/runtime/
ObjectPrototype.cpp 118 thisValue.toThisObject(exec)->defineGetter(exec, Identifier(exec, args.at(0).toString(exec)), asObject(args.at(1)));
JSObject.cpp 297 void JSObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
568 target->defineGetter(exec, propertyName, asObject(descriptor.getter()), attributes);
JSGlobalObject.h 185 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes);
JSGlobalObject.cpp 180 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes)
184 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes);
JSObject.h 188 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes = 0);
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 809 milliseconds