HomeSort by relevance Sort by last modified time
    Searched refs:deleteProperty (Results 1 - 25 of 49) sorted by null

1 2

  /external/webkit/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);
JSVariableObject.cpp 37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName)
42 return JSObject::deleteProperty(exec, propertyName);
JSNotAnObject.h 91 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
92 virtual bool deleteProperty(ExecState*, unsigned propertyName);
JSZombie.h 60 virtual bool deleteProperty(ExecState*, const Identifier&) { ASSERT_NOT_REACHED(); return false; }
61 virtual bool deleteProperty(ExecState*, unsigned) { ASSERT_NOT_REACHED(); return false; }
JSCell.cpp 151 bool JSCell::deleteProperty(ExecState* exec, const Identifier& identifier)
153 return toObject(exec)->deleteProperty(exec, identifier);
156 bool JSCell::deleteProperty(ExecState* exec, unsigned identifier)
158 return toObject(exec)->deleteProperty(exec, identifier);
JSNotAnObject.cpp 112 bool JSNotAnObject::deleteProperty(ExecState* exec, const Identifier&)
118 bool JSNotAnObject::deleteProperty(ExecState* exec, unsigned)
StringObject.cpp 78 bool StringObject::deleteProperty(ExecState* exec, const Identifier& propertyName)
86 return JSObject::deleteProperty(exec, propertyName);
JSActivation.h 60 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
StringObject.h 41 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
JSActivation.cpp 124 bool JSActivation::deleteProperty(ExecState* exec, const Identifier& propertyName)
129 return Base::deleteProperty(exec, propertyName);
JSObject.cpp 201 bool JSObject::deleteProperty(ExecState* exec, const Identifier& propertyName)
227 bool JSObject::deleteProperty(ExecState* exec, unsigned propertyName)
229 return deleteProperty(exec, Identifier::from(exec, propertyName));
606 deleteProperty(exec, propertyName);
619 deleteProperty(exec, propertyName);
647 deleteProperty(exec, propertyName);
676 deleteProperty(exec, propertyName);
JSFunction.cpp 233 bool JSFunction::deleteProperty(ExecState* exec, const Identifier& propertyName)
236 return Base::deleteProperty(exec, propertyName);
239 return Base::deleteProperty(exec, propertyName);
Arguments.cpp 260 bool Arguments::deleteProperty(ExecState* exec, unsigned i)
273 return JSObject::deleteProperty(exec, Identifier(exec, UString::from(i)));
276 bool Arguments::deleteProperty(ExecState* exec, const Identifier& propertyName)
301 return JSObject::deleteProperty(exec, propertyName);
JSFunction.h 87 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
  /external/webkit/WebCore/bridge/
runtime_array.h 45 virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName);
46 virtual bool deleteProperty(ExecState *exec, unsigned propertyName);
runtime_object.h 42 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
runtime_array.cpp 151 bool RuntimeArray::deleteProperty(ExecState*, const Identifier&)
156 bool RuntimeArray::deleteProperty(ExecState*, unsigned)
  /external/webkit/JavaScriptCore/API/
JSCallbackObject.h 68 virtual bool deleteProperty(ExecState*, const Identifier&);
69 virtual bool deleteProperty(ExecState*, unsigned);
JSClassRef.h 101 JSObjectDeletePropertyCallback deleteProperty;
JSCallbackObjectFunctions.h 249 bool JSCallbackObject<Base>::deleteProperty(ExecState* exec, const Identifier& propertyName)
256 if (JSObjectDeletePropertyCallback deleteProperty = jsClass->deleteProperty) {
263 result = deleteProperty(ctx, thisRef, propertyNameRef.get(), &exception);
288 return Base::deleteProperty(exec, propertyName);
292 bool JSCallbackObject<Base>::deleteProperty(ExecState* exec, unsigned propertyName)
294 return deleteProperty(exec, Identifier::from(exec, propertyName));
  /external/webkit/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/WebCore/bindings/js/
JSDOMWindowShell.cpp 112 bool JSDOMWindowShell::deleteProperty(ExecState* exec, const Identifier& propertyName)
114 return m_window->deleteProperty(exec, propertyName);
JSStorageCustom.cpp 50 bool JSStorage::deleteProperty(ExecState* exec, const Identifier& propertyName)
JSDOMWindowShell.h 77 virtual bool deleteProperty(JSC::ExecState*, const JSC::Identifier& propertyName);

Completed in 234 milliseconds

1 2