/external/webkit/Source/JavaScriptCore/runtime/ |
RegExpMatchesArray.h | 68 virtual bool deleteProperty(ExecState* exec, const Identifier& propertyName) 72 return JSArray::deleteProperty(exec, propertyName); 75 virtual bool deleteProperty(ExecState* exec, unsigned propertyName) 79 return JSArray::deleteProperty(exec, propertyName);
|
JSNotAnObject.h | 71 virtual bool deleteProperty(ExecState*, const Identifier& propertyName); 72 virtual bool deleteProperty(ExecState*, unsigned propertyName);
|
JSVariableObject.cpp | 37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName) 42 return JSObject::deleteProperty(exec, propertyName);
|
JSCell.cpp | 151 bool JSCell::deleteProperty(ExecState* exec, const Identifier& identifier) 153 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier); 156 bool JSCell::deleteProperty(ExecState* exec, unsigned identifier) 158 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier);
|
StrictEvalActivation.h | 36 virtual bool deleteProperty(ExecState*, const Identifier&);
|
JSNotAnObject.cpp | 105 bool JSNotAnObject::deleteProperty(ExecState* exec, const Identifier&) 111 bool JSNotAnObject::deleteProperty(ExecState* exec, unsigned)
|
JSZombie.h | 61 virtual bool deleteProperty(ExecState*, const Identifier&) { ASSERT_NOT_REACHED(); return false; } 62 virtual bool deleteProperty(ExecState*, unsigned) { ASSERT_NOT_REACHED(); return false; }
|
StringObject.cpp | 81 bool StringObject::deleteProperty(ExecState* exec, const Identifier& propertyName) 89 return JSObject::deleteProperty(exec, propertyName);
|
StrictEvalActivation.cpp | 36 bool StrictEvalActivation::deleteProperty(ExecState*, const Identifier&)
|
StringObject.h | 41 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
|
Arguments.cpp | 303 bool Arguments::deleteProperty(ExecState* exec, unsigned i) 316 return JSObject::deleteProperty(exec, Identifier(exec, UString::number(i))); 319 bool Arguments::deleteProperty(ExecState* exec, const Identifier& propertyName) 350 return JSObject::deleteProperty(exec, propertyName);
|
JSArray.h | 146 virtual bool deleteProperty(ExecState*, const Identifier& propertyName); 147 virtual bool deleteProperty(ExecState*, unsigned propertyName);
|
JSObject.cpp | 217 bool JSObject::deleteProperty(ExecState* exec, const Identifier& propertyName) 243 bool JSObject::deleteProperty(ExecState* exec, unsigned propertyName) 245 return deleteProperty(exec, Identifier::from(exec, propertyName)); 695 deleteProperty(exec, propertyName); 708 deleteProperty(exec, propertyName); 736 deleteProperty(exec, propertyName); 765 deleteProperty(exec, propertyName);
|
ArrayPrototype.cpp | 383 thisObj->deleteProperty(exec, length - 1); 427 thisObj->deleteProperty(exec, k); 432 thisObj->deleteProperty(exec, lk1); 458 thisObj->deleteProperty(exec, k - 1); 460 thisObj->deleteProperty(exec, length - 1); 595 thisObj->deleteProperty(exec, k + additionalArgs); 598 thisObj->deleteProperty(exec, k - 1); 608 thisObj->deleteProperty(exec, k + additionalArgs - 1); 638 thisObj->deleteProperty(exec, k + nrArgs - 1); [all...] |
JSFunction.cpp | 305 bool JSFunction::deleteProperty(ExecState* exec, const Identifier& propertyName) 308 return Base::deleteProperty(exec, propertyName); 311 return Base::deleteProperty(exec, propertyName);
|
/external/webkit/Source/WebCore/bridge/ |
runtime_array.h | 47 virtual bool deleteProperty(ExecState* exec, const Identifier &propertyName); 48 virtual bool deleteProperty(ExecState* exec, unsigned propertyName);
|
runtime_object.h | 44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
|
runtime_array.cpp | 157 bool RuntimeArray::deleteProperty(ExecState*, const Identifier&) 162 bool RuntimeArray::deleteProperty(ExecState*, unsigned)
|
/external/webkit/Source/JavaScriptCore/debugger/ |
DebuggerActivation.cpp | 69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) 71 return m_activation->deleteProperty(exec, propertyName);
|
DebuggerActivation.h | 44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptfunction.cpp | 79 0, // deleteProperty 139 0, // deleteProperty
|
/external/webkit/Source/JavaScriptCore/API/ |
JSCallbackObjectFunctions.h | 247 bool JSCallbackObject<Base>::deleteProperty(ExecState* exec, const Identifier& propertyName) 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) 292 return deleteProperty(exec, Identifier::from(exec, propertyName));
|
JSCallbackObject.h | 162 virtual bool deleteProperty(ExecState*, const Identifier&); 163 virtual bool deleteProperty(ExecState*, unsigned);
|
JSClassRef.h | 106 JSObjectDeletePropertyCallback deleteProperty;
|
/external/webkit/Source/WebCore/bindings/js/ |
JSDOMWindowShell.cpp | 113 bool JSDOMWindowShell::deleteProperty(ExecState* exec, const Identifier& propertyName) 115 return m_window->deleteProperty(exec, propertyName);
|