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

12

/macosx-10.10/JavaScriptCore-7600.1.17/debugger/
H A DDebuggerActivation.cpp92 bool DebuggerActivation::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::DebuggerActivation
95 return thisObject->m_activation->methodTable()->defineOwnProperty(thisObject->m_activation.get(), exec, propertyName, descriptor, shouldThrow);
H A DDebuggerActivation.h50 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSArrayBuffer.h54 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
H A DClassInfo.h92 DefineOwnPropertyFunctionPtr defineOwnProperty; member in struct:JSC::MethodTable
142 &ClassName::defineOwnProperty, \
H A DJSArrayBuffer.cpp95 bool JSArrayBuffer::defineOwnProperty( function in class:JSC::JSArrayBuffer
104 return Base::defineOwnProperty(thisObject, exec, propertyName, descriptor, shouldThrow);
H A DJSProxy.cpp97 bool JSProxy::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::JSProxy
100 return thisObject->target()->methodTable(exec->vm())->defineOwnProperty(thisObject->target(), exec, propertyName, descriptor, shouldThrow);
H A DRegExpMatchesArray.h122 static bool defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::RegExpMatchesArray
126 return JSArray::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow);
H A DJSArrayBufferView.h150 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
H A DJSProxy.h86 JS_EXPORT_PRIVATE static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
H A DRegExpObject.h87 JS_EXPORT_PRIVATE static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
H A DStringObject.h57 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
H A DJSArrayBufferView.cpp173 bool JSArrayBufferView::defineOwnProperty( function in class:JSC::JSArrayBufferView
183 return Base::defineOwnProperty(thisObject, exec, propertyName, descriptor, shouldThrow);
H A DStringObject.cpp84 bool StringObject::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool throwException) function in class:JSC::StringObject
123 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
H A DArguments.cpp165 methodTable(exec->vm())->defineOwnProperty(this, exec, vm.propertyNames->caller, descriptor, false);
177 methodTable(exec->vm())->defineOwnProperty(this, exec, vm.propertyNames->callee, descriptor, false);
317 bool Arguments::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::Arguments
330 if (!Base::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow))
363 return Base::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow);
H A DJSFunction.h168 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
H A DObjectConstructor.cpp327 O->methodTable(exec->vm())->defineOwnProperty(O, exec, Identifier(exec, propertyName), descriptor, true);
357 object->methodTable(exec->vm())->defineOwnProperty(object, exec, propertyNames[i], descriptors[i], true);
411 object->methodTable(exec->vm())->defineOwnProperty(object, exec, *iter, desc, true);
452 object->methodTable(exec->vm())->defineOwnProperty(object, exec, *iter, desc, true);
H A DObjectPrototype.cpp125 thisObject->methodTable(exec->vm())->defineOwnProperty(thisObject, exec, exec->argument(0).toString(exec)->toIdentifier(exec), descriptor, false);
145 thisObject->methodTable(exec->vm())->defineOwnProperty(thisObject, exec, exec->argument(0).toString(exec)->toIdentifier(exec), descriptor, false);
H A DRegExpObject.cpp131 bool RegExpObject::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow) function in class:JSC::RegExpObject
155 return Base::defineOwnProperty(object, exec, propertyName, descriptor, shouldThrow);
H A DJSFunction.cpp445 bool JSFunction::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool throwException) function in class:JSC::JSFunction
449 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
458 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
467 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
475 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
483 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
H A DJSCell.cpp221 bool JSCell::defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool) function in class:JSC::JSCell
H A DJSCell.h214 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
H A DJSGenericTypedArrayView.h236 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
H A DJSGenericTypedArrayViewInlines.h333 bool JSGenericTypedArrayView<Adaptor>::defineOwnProperty( function in class:JSC::JSGenericTypedArrayView
340 // defineOwnProperty for indexed properties on typed arrays, even if they're out
346 return Base::defineOwnProperty(thisObject, exec, propertyName, descriptor, shouldThrow);
H A DArguments.h121 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow);
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSLocationCustom.cpp128 bool JSLocation::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool throwException) function in class:WebCore::JSLocation
132 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);
239 bool JSLocationPrototype::defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool throwException) function in class:WebCore::JSLocationPrototype
243 return Base::defineOwnProperty(object, exec, propertyName, descriptor, throwException);

Completed in 270 milliseconds

12