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

  /external/webkit/Source/JavaScriptCore/runtime/
PropertySlot.cpp 36 CallType callType = m_data.getterFunc->getCallData(callData);
37 return call(exec, m_data.getterFunc, callType, callData, thisValue(), exec->emptyList());
PropertySlot.h 155 void setGetterSlot(JSObject* getterFunc)
157 ASSERT(getterFunc);
160 m_data.getterFunc = getterFunc;
163 void setCacheableGetterSlot(JSValue slotBase, JSObject* getterFunc, unsigned offset)
165 ASSERT(getterFunc);
169 m_data.getterFunc = getterFunc;
230 JSObject* getterFunc;
JSGlobalObject.h 162 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes);
JSGlobalObject.cpp 144 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes)
148 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes);
  /external/webkit/Source/JavaScriptCore/bytecode/
Instruction.h 160 Instruction(PropertySlot::GetValueFunc getterFunc) { u.getterFunc = getterFunc; }
169 PropertySlot::GetValueFunc getterFunc;
  /external/webkit/LayoutTests/fast/js/resources/
getOwnPropertyDescriptor.js 63 function getterFunc(){};
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/WebCore/bindings/scripts/
CodeGeneratorV8.pm     [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 81 milliseconds