Searched refs:deleteProperty (Results 1 - 25 of 58) sorted by relevance

123

/external/webkit/Source/JavaScriptCore/runtime/
H A DStrictEvalActivation.cpp36 bool StrictEvalActivation::deleteProperty(ExecState*, const Identifier&) function in class:JSC::StrictEvalActivation
H A DStrictEvalActivation.h36 virtual bool deleteProperty(ExecState*, const Identifier&);
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 DJSNotAnObject.h71 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
72 virtual bool deleteProperty(ExecState*, unsigned 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 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 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 DStringObject.cpp81 bool StringObject::deleteProperty(ExecState* exec, const Identifier& propertyName) function in class:JSC::StringObject
89 return JSObject::deleteProperty(exec, propertyName);
H A DStringObject.h41 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
H A DJSActivation.h60 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
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 DJSFunction.h98 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
/external/webkit/Source/WebCore/bridge/
H A Druntime_array.h47 virtual bool deleteProperty(ExecState* exec, const Identifier &propertyName);
48 virtual bool deleteProperty(ExecState* exec, unsigned propertyName);
H A Druntime_object.h44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
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
/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);
H A DDebuggerActivation.h44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
/external/webkit/Source/WebCore/bindings/js/
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 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 DScriptObject.cpp104 scriptState->lexicalGlobalObject()->deleteProperty(scriptState, Identifier(scriptState, name));
/external/webkit/Source/JavaScriptCore/API/
H A DJSClassRef.h106 JSObjectDeletePropertyCallback deleteProperty; member in struct:OpaqueJSClass
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalueiterator_p.h139 m_object->deleteProperty(m_idx.value(), &exception);
/external/webkit/Source/WebCore/bridge/objc/
H A Dobjc_runtime.h117 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);

Completed in 160 milliseconds

123