/external/webkit/Source/JavaScriptCore/runtime/ |
StrictEvalActivation.cpp | 36 bool StrictEvalActivation::deleteProperty(ExecState*, const Identifier&)
|
JSVariableObject.cpp | 37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName) 42 return JSObject::deleteProperty(exec, propertyName);
|
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);
|
StringObject.cpp | 81 bool StringObject::deleteProperty(ExecState* exec, const Identifier& propertyName) 89 return JSObject::deleteProperty(exec, propertyName);
|
JSNotAnObject.cpp | 105 bool JSNotAnObject::deleteProperty(ExecState* exec, const Identifier&) 111 bool JSNotAnObject::deleteProperty(ExecState* exec, unsigned)
|
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);
|
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);
|
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; }
|
JSActivation.cpp | 187 bool JSActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) 192 return Base::deleteProperty(exec, propertyName);
|
JSFunction.cpp | 305 bool JSFunction::deleteProperty(ExecState* exec, const Identifier& propertyName) 308 return Base::deleteProperty(exec, propertyName); 311 return Base::deleteProperty(exec, 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);
|
/external/webkit/Source/JavaScriptCore/debugger/ |
DebuggerActivation.cpp | 69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) 71 return m_activation->deleteProperty(exec, propertyName);
|
/external/webkit/Source/WebCore/bindings/js/ |
JSDOMStringMapCustom.cpp | 58 bool JSDOMStringMap::deleteProperty(ExecState* exec, const Identifier& propertyName)
|
JSHistoryCustom.cpp | 148 bool JSHistory::deleteProperty(ExecState* exec, const Identifier& propertyName) 153 return Base::deleteProperty(exec, propertyName);
|
JSStorageCustom.cpp | 50 bool JSStorage::deleteProperty(ExecState* exec, const Identifier& propertyName)
|
JSDOMWindowShell.cpp | 113 bool JSDOMWindowShell::deleteProperty(ExecState* exec, const Identifier& propertyName) 115 return m_window->deleteProperty(exec, propertyName);
|
JSLocationCustom.cpp | 155 bool JSLocation::deleteProperty(ExecState* exec, const Identifier& propertyName) 160 return Base::deleteProperty(exec, propertyName);
|
JSDOMWindowCustom.cpp | 370 bool JSDOMWindow::deleteProperty(ExecState* exec, const Identifier& propertyName) 375 return Base::deleteProperty(exec, propertyName);
|
/external/webkit/Source/WebCore/bridge/ |
runtime_array.cpp | 157 bool RuntimeArray::deleteProperty(ExecState*, const Identifier&) 162 bool RuntimeArray::deleteProperty(ExecState*, unsigned)
|
runtime_object.cpp | 228 bool RuntimeObject::deleteProperty(ExecState*, const Identifier&)
|
/external/webkit/Source/JavaScriptCore/API/ |
JSClassRef.h | 106 JSObjectDeletePropertyCallback deleteProperty;
|
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));
|
JSObjectRef.h | 175 @discussion If you named your function DeleteProperty, you would declare it like this: 177 bool DeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception); 324 @field deleteProperty The callback invoked when deleting a property. 358 JSObjectDeletePropertyCallback deleteProperty; [all...] |
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptvalue_p.h | 142 inline void deleteProperty(quint32 property, JSValueRef* exception); 143 inline void deleteProperty(JSStringRef property, JSValueRef* exception); [all...] |