HomeSort by relevance Sort by last modified time
    Searched refs:getterFunction (Results 1 - 9 of 9) 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);
DebuggerActivation.h 47 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned 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);
JSDOMWindowShell.h 80 virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* getterFunction, unsigned attributes);
JSDOMWindowCustom.cpp 395 void JSDOMWindow::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
405 Base::defineGetter(exec, propertyName, getterFunction, attributes);
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 313 void JSObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
318 asGetterSetter(object)->setGetter(exec->globalData(), getterFunction);
336 getterSetter->setGetter(globalData, getterFunction);
562 if (JSObject* getterFunction = asGetterSetter(location->get())->getter()) {
564 slot.setCacheableGetterSlot(this, getterFunction, offsetForLocation(location));
566 slot.setGetterSlot(getterFunction);
JSObject.h 200 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes = 0);
    [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc     [all...]

Completed in 96 milliseconds