Home
last modified time | relevance | path

Searched refs:getterFunc (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
DPropertySlot.h155 void setGetterSlot(JSObject* getterFunc) in setGetterSlot() argument
157 ASSERT(getterFunc); in setGetterSlot()
160 m_data.getterFunc = getterFunc; in setGetterSlot()
163 void setCacheableGetterSlot(JSValue slotBase, JSObject* getterFunc, unsigned offset) in setCacheableGetterSlot() argument
165 ASSERT(getterFunc); in setCacheableGetterSlot()
169 m_data.getterFunc = getterFunc; in setCacheableGetterSlot()
230 JSObject* getterFunc; member
DPropertySlot.cpp36 CallType callType = m_data.getterFunc->getCallData(callData); in functionGetter()
37 return call(exec, m_data.getterFunc, callType, callData, thisValue(), exec->emptyList()); in functionGetter()
DJSGlobalObject.cpp144 …efineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attrib… in defineGetter() argument
148 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes); in defineGetter()
DJSGlobalObject.h162 …virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunc, unsign…
/external/webkit/Source/JavaScriptCore/bytecode/
DInstruction.h160 Instruction(PropertySlot::GetValueFunc getterFunc) { u.getterFunc = getterFunc; } in Instruction()
169 PropertySlot::GetValueFunc getterFunc; member
/external/webkit/LayoutTests/fast/js/resources/
DgetOwnPropertyDescriptor.js63 function getterFunc(){}; function
64 objectWithGetter.__defineGetter__("getter", getterFunc);
72 objectWithAccessor.__defineGetter__("accessor", getterFunc);
/external/webkit/Source/WebCore/bindings/scripts/
DCodeGeneratorV8.pm2506 my $getterFunc = $codeGenerator->WK_lcfirst($attrName);
2508 …ScriptValue::deserializeAndSetProperty(wrapper, "${attrName}", ${attrAttr}, impl->${getterFunc}());
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp2646 PropertySlot::GetValueFunc getter = vPC[6].u.getterFunc; in privateExecute()
2819 PropertySlot::GetValueFunc getter = vPC[5].u.getterFunc; in privateExecute()
2941 PropertySlot::GetValueFunc getter = vPC[7].u.getterFunc; in privateExecute()