Searched refs:defineOwnProperty (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.9.5/JavaScriptCore-7537.78.1/debugger/
H A DDebuggerActivation.h52 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
H A DDebuggerActivation.cpp104 bool DebuggerActivation::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::DebuggerActivation
107 return thisObject->m_activation->methodTable()->defineOwnProperty(thisObject->m_activation.get(), exec, propertyName, descriptor, shouldThrow);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DClassInfo.h94 DefineOwnPropertyFunctionPtr defineOwnProperty; member in struct:JSC::MethodTable
139 &ClassName::defineOwnProperty, \
H A DRegExpMatchesArray.h129 static bool defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::RegExpMatchesArray
133 return JSArray::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow);
H A DJSFunction.cpp395 bool JSFunction::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool throwException) function in class:JSC::JSFunction
399 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
408 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
416 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
423 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
431 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
H A DJSProxy.h87 JS_EXPORT_PRIVATE static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
H A DStringObject.h58 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
H A DJSProxy.cpp109 bool JSProxy::defineOwnProperty(JSC::JSObject* object, JSC::ExecState* exec, JSC::PropertyName propertyName, JSC::PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::JSProxy
112 return thisObject->target()->methodTable()->defineOwnProperty(thisObject->target(), exec, propertyName, descriptor, shouldThrow);
H A DStringObject.cpp92 bool StringObject::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool throwException) function in class:JSC::StringObject
131 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
H A DArguments.cpp111 methodTable()->defineOwnProperty(this, exec, exec->propertyNames().caller, descriptor, false);
122 methodTable()->defineOwnProperty(this, exec, exec->propertyNames().callee, descriptor, false);
282 bool Arguments::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::Arguments
295 if (!Base::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow))
328 return Base::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow);
H A DJSFunction.h171 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
H A DObjectConstructor.cpp302 O->methodTable()->defineOwnProperty(O, exec, Identifier(exec, propertyName), descriptor, true);
333 object->methodTable()->defineOwnProperty(object, exec, propertyNames[i], descriptors[i], true);
387 object->methodTable()->defineOwnProperty(object, exec, *iter, desc, true);
428 object->methodTable()->defineOwnProperty(object, exec, *iter, desc, true);
H A DRegExpObject.h95 JS_EXPORT_PRIVATE static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
H A DObjectPrototype.cpp127 thisObject->methodTable()->defineOwnProperty(thisObject, exec, Identifier(exec, exec->argument(0).toString(exec)->value(exec)), descriptor, false);
147 thisObject->methodTable()->defineOwnProperty(thisObject, exec, Identifier(exec, exec->argument(0).toString(exec)->value(exec)), descriptor, false);
H A DRegExpObject.cpp140 bool RegExpObject::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::RegExpObject
164 return Base::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow);
H A DJSCell.cpp224 bool JSCell::defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool) function in class:JSC::JSCell
H A DJSCell.h160 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
H A DArguments.h108 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
H A DJSArray.h56 JS_EXPORT_PRIVATE static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool throwException);
H A DJSGlobalObject.cpp177 bool JSGlobalObject::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::JSGlobalObject
184 return Base::defineOwnProperty(thisObject, exec, propertyName, descriptor, shouldThrow);
H A DJSGlobalObject.h247 JS_EXPORT_PRIVATE static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
H A DJSArray.cpp78 bool JSArray::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool throwException) function in class:JSC::JSArray
H A DJSObject.h455 // putDirect is effectively an unchecked vesion of 'defineOwnProperty':
570 JS_EXPORT_PRIVATE static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, PropertyDescriptor&, bool shouldThrow);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSLocationCustom.cpp182 bool JSLocation::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool throwException) function in class:WebCore::JSLocation
186 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
293 bool JSLocationPrototype::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool throwException) function in class:WebCore::JSLocationPrototype
297 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
H A DJSDOMWindowCustom.cpp483 bool JSDOMWindow::defineOwnProperty(JSC::JSObject* object, JSC::ExecState* exec, JSC::PropertyName propertyName, JSC::PropertyDescriptor& descriptor, bool shouldThrow) function in class:WebCore::JSDOMWindow
494 return Base::defineOwnProperty(thisObject, exec, propertyName, descriptor, shouldThrow);

Completed in 288 milliseconds

12