Searched refs:getterFunc (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/JavaScriptCore/runtime/ |
D | PropertySlot.h | 155 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
|
D | PropertySlot.cpp | 36 CallType callType = m_data.getterFunc->getCallData(callData); in functionGetter() 37 return call(exec, m_data.getterFunc, callType, callData, thisValue(), exec->emptyList()); in functionGetter()
|
D | JSGlobalObject.cpp | 144 …efineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attrib… in defineGetter() argument 148 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes); in defineGetter()
|
D | JSGlobalObject.h | 162 …virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunc, unsign…
|
/external/webkit/Source/JavaScriptCore/bytecode/ |
D | Instruction.h | 160 Instruction(PropertySlot::GetValueFunc getterFunc) { u.getterFunc = getterFunc; } in Instruction() 169 PropertySlot::GetValueFunc getterFunc; member
|
/external/webkit/LayoutTests/fast/js/resources/ |
D | getOwnPropertyDescriptor.js | 63 function getterFunc(){}; function 64 objectWithGetter.__defineGetter__("getter", getterFunc); 72 objectWithAccessor.__defineGetter__("accessor", getterFunc);
|
/external/webkit/Source/WebCore/bindings/scripts/ |
D | CodeGeneratorV8.pm | 2506 my $getterFunc = $codeGenerator->WK_lcfirst($attrName); 2508 …ScriptValue::deserializeAndSetProperty(wrapper, "${attrName}", ${attrAttr}, impl->${getterFunc}());
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 2646 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()
|