Searched defs:deleteProperty (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/runtime/
H A DStrictEvalActivation.cpp36 bool StrictEvalActivation::deleteProperty(ExecState*, const Identifier&) function in class:JSC::StrictEvalActivation
H A DJSNotAnObject.cpp105 bool JSNotAnObject::deleteProperty(ExecState* exec, const Identifier&) function in class:JSC::JSNotAnObject
111 bool JSNotAnObject::deleteProperty(ExecState* exec, unsigned) function in class:JSC::JSNotAnObject
H A DJSVariableObject.cpp37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::JSVariableObject
42 return JSObject::deleteProperty(exec, propertyName);
H A DRegExpMatchesArray.h68 virtual bool deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::RegExpMatchesArray
72 return JSArray::deleteProperty(exec, propertyName);
75 virtual bool deleteProperty(ExecState* exec, unsigned propertyName) function in class:JSC::RegExpMatchesArray
79 return JSArray::deleteProperty(exec, propertyName);
H A DStringObject.cpp81 bool StringObject::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::StringObject
89 return JSObject::deleteProperty(exec, propertyName);
H A DJSCell.cpp151 bool JSCell::deleteProperty(ExecState* exec, const Identifier& identifier) function in class:JSC::JSCell
153 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier);
156 bool JSCell::deleteProperty(ExecState* exec, unsigned identifier) function in class:JSC::JSCell
158 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier);
H A DArguments.cpp303 bool Arguments::deleteProperty(ExecState* exec, unsigned i) function in class:JSC::Arguments
316 return JSObject::deleteProperty(exec, Identifier(exec, UString::number(i)));
319 bool Arguments::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::Arguments
350 return JSObject::deleteProperty(exec, propertyName);
H A DJSZombie.h61 virtual bool deleteProperty(ExecState*, const Identifier&) { ASSERT_NOT_REACHED(); return false; } function in class:JSC::JSZombie
62 virtual bool deleteProperty(ExecState*, unsigned) { ASSERT_NOT_REACHED(); return false; } function in class:JSC::JSZombie
H A DJSActivation.cpp187 bool JSActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::JSActivation
192 return Base::deleteProperty(exec, propertyName);
H A DJSFunction.cpp305 bool JSFunction::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::JSFunction
308 return Base::deleteProperty(exec, propertyName);
311 return Base::deleteProperty(exec, propertyName);
H A DJSObject.cpp217 bool JSObject::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::JSObject
243 bool JSObject::deleteProperty(ExecState* exec, unsigned propertyName) function in class:JSC::JSObject
245 return deleteProperty(exec, Identifier::from(exec, propertyName));
695 deleteProperty(exec, propertyName);
708 deleteProperty(exec, propertyName);
736 deleteProperty(exec, propertyName);
765 deleteProperty(exec, propertyName);
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMStringMapCustom.cpp58 bool JSDOMStringMap::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:WebCore::JSDOMStringMap
H A DJSStorageCustom.cpp50 bool JSStorage::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:WebCore::JSStorage
H A DJSHistoryCustom.cpp148 bool JSHistory::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:WebCore::JSHistory
153 return Base::deleteProperty(exec, propertyName);
H A DJSDOMWindowShell.cpp113 bool JSDOMWindowShell::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:WebCore::JSDOMWindowShell
115 return m_window->deleteProperty(exec, propertyName);
H A DJSLocationCustom.cpp155 bool JSLocation::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:WebCore::JSLocation
160 return Base::deleteProperty(exec, propertyName);
H A DJSDOMWindowCustom.cpp371 bool JSDOMWindow::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:WebCore::JSDOMWindow
376 return Base::deleteProperty(exec, propertyName);
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerActivation.cpp69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::DebuggerActivation
71 return m_activation->deleteProperty(exec, propertyName);
/external/webkit/Source/WebCore/bridge/
H A Druntime_array.cpp157 bool RuntimeArray::deleteProperty(ExecState*, const Identifier&) function in class:JSC::RuntimeArray
162 bool RuntimeArray::deleteProperty(ExecState*, unsigned) function in class:JSC::RuntimeArray
H A Druntime_object.cpp228 bool RuntimeObject::deleteProperty(ExecState*, const Identifier&) function in class:JSC::Bindings::RuntimeObject
/external/webkit/Source/JavaScriptCore/API/
H A DJSClassRef.h106 JSObjectDeletePropertyCallback deleteProperty; member in struct:OpaqueJSClass
H A DJSCallbackObjectFunctions.h247 bool JSCallbackObject<Base>::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::JSCallbackObject
254 if (JSObjectDeletePropertyCallback deleteProperty = jsClass->deleteProperty) {
261 result = deleteProperty(ctx, thisRef, propertyNameRef.get(), &exception);
286 return Base::deleteProperty(exec, propertyName);
290 bool JSCallbackObject<Base>::deleteProperty(ExecState* exec, unsigned propertyName) function in class:JSC::JSCallbackObject
292 return deleteProperty(exec, Identifier::from(exec, propertyName));
H A DJSObjectRef.h324 @field deleteProperty The callback invoked when deleting a property.
358 JSObjectDeletePropertyCallback deleteProperty; member in struct:__anon14890
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPMeta.java456 void deleteProperty(String schemaNS, String propName); method in interface:XMPMeta
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue_p.h142 inline void deleteProperty(quint32 property, JSValueRef* exception);
143 inline void deleteProperty(JSStringRef property, JSValueRef* exception);
1014 inline void QScriptValuePrivate::deleteProperty(quint32 property, JSValueRef* exception) function in class:QScriptValuePrivate
1025 inline void QScriptValuePrivate::deleteProperty(JSStringRef property, JSValueRef* exception) function in class:QScriptValuePrivate
1043 deleteProperty(name, &exception);

Completed in 257 milliseconds

12