Searched defs:getterFunc (Results 1 - 4 of 4) sorted by relevance

/external/webkit/LayoutTests/fast/js/resources/
H A DgetOwnPropertyDescriptor.js63 function getterFunc(){}; function
64 objectWithGetter.__defineGetter__("getter", getterFunc);
65 descriptorShouldBe("objectWithGetter", "'getter'", {"get": "getterFunc", "set": undefined, enumerable: true, configurable: true});
72 objectWithAccessor.__defineGetter__("accessor", getterFunc);
73 descriptorShouldBe("objectWithAccessor", "'accessor'", {"set": "setterFunc", "get": "getterFunc", enumerable: true, configurable: true});
/external/webkit/Source/JavaScriptCore/bytecode/
H A DInstruction.h160 Instruction(PropertySlot::GetValueFunc getterFunc) { u.getterFunc = getterFunc; } argument
169 PropertySlot::GetValueFunc getterFunc; member in union:JSC::Instruction::__anon14337
/external/webkit/Source/JavaScriptCore/runtime/
H A DPropertySlot.h155 void setGetterSlot(JSObject* getterFunc) argument
157 ASSERT(getterFunc);
160 m_data.getterFunc = getterFunc;
163 void setCacheableGetterSlot(JSValue slotBase, JSObject* getterFunc, unsigned offset) argument
165 ASSERT(getterFunc);
169 m_data.getterFunc = getterFunc;
230 JSObject* getterFunc; member in union:JSC::PropertySlot::__anon14402
H A DJSGlobalObject.cpp144 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes) argument
148 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes);

Completed in 230 milliseconds