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

  /external/webkit/LayoutTests/fast/js/resources/
getOwnPropertyDescriptor.js 67 function setterFunc(){};
68 objectWithSetter.__defineSetter__("setter", setterFunc);
69 descriptorShouldBe("objectWithSetter", "'setter'", {"set": "setterFunc", "get": undefined, enumerable: true, configurable: true});
71 objectWithAccessor.__defineSetter__("accessor", setterFunc);
73 descriptorShouldBe("objectWithAccessor", "'accessor'", {"set": "setterFunc", "get": "getterFunc", enumerable: true, configurable: true});
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 139 JSObject* setterFunc = asGetterSetter(gs)->setter();
140 if (!setterFunc) {
146 CallType callType = setterFunc->getCallData(callData);
149 call(exec, setterFunc, callType, callData, this, args);
JSGlobalObject.h 163 virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunc, unsigned attributes);
JSGlobalObject.cpp 151 void JSGlobalObject::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunc, unsigned attributes)
155 JSVariableObject::defineSetter(exec, propertyName, setterFunc, attributes);

Completed in 493 milliseconds