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

12

  /external/webkit/WebCore/bridge/objc/
objc_runtime.h 116 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
objc_runtime.mm 260 bool ObjcFallbackObjectImp::deleteProperty(ExecState*, const Identifier&)
  /external/webkit/JavaScriptCore/API/
JSClassRef.cpp 66 , deleteProperty(definition->deleteProperty)
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...]
JSObjectRef.cpp 331 bool result = jsObject->deleteProperty(exec, propertyName->identifier(&exec->globalData()));
  /external/webkit/JavaScriptCore/runtime/
Arguments.h 102 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
103 virtual bool deleteProperty(ExecState*, unsigned propertyName);
JSArray.h 99 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
100 virtual bool deleteProperty(ExecState*, unsigned propertyName);
JSCell.h 106 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
107 virtual bool deleteProperty(ExecState*, unsigned propertyName);
JSVariableObject.h 51 virtual bool deleteProperty(ExecState*, const Identifier&);
ArrayPrototype.cpp 329 thisObj->deleteProperty(exec, length - 1);
366 thisObj->deleteProperty(exec, k);
371 thisObj->deleteProperty(exec, lk1);
391 thisObj->deleteProperty(exec, k - 1);
393 thisObj->deleteProperty(exec, length - 1);
537 thisObj->deleteProperty(exec, k + additionalArgs);
540 thisObj->deleteProperty(exec, k - 1);
546 thisObj->deleteProperty(exec, k + additionalArgs - 1);
569 thisObj->deleteProperty(exec, k + nrArgs - 1);
    [all...]
JSArray.cpp 422 bool JSArray::deleteProperty(ExecState* exec, const Identifier& propertyName)
427 return deleteProperty(exec, i);
432 return JSObject::deleteProperty(exec, propertyName);
435 bool JSArray::deleteProperty(ExecState* exec, unsigned i)
467 return deleteProperty(exec, Identifier::from(exec, i));
    [all...]
JSONObject.cpp 724 array->deleteProperty(m_exec, indexStack.last());
795 object->deleteProperty(m_exec, prop);
JSObject.h 118 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
119 virtual bool deleteProperty(ExecState*, unsigned propertyName);
  /external/webkit/WebCore/bindings/js/
JSHistoryCustom.cpp 149 bool JSHistory::deleteProperty(ExecState* exec, const Identifier& propertyName)
154 return Base::deleteProperty(exec, propertyName);
JSLocationCustom.cpp 164 bool JSLocation::deleteProperty(ExecState* exec, const Identifier& propertyName)
169 return Base::deleteProperty(exec, propertyName);
ScriptObject.cpp 203 scriptState->lexicalGlobalObject()->deleteProperty(scriptState, Identifier(scriptState, name));
JSDOMWindowCustom.cpp 391 bool JSDOMWindow::deleteProperty(ExecState* exec, const Identifier& propertyName)
396 return Base::deleteProperty(exec, propertyName);
    [all...]
  /external/webkit/WebCore/bridge/
NP_jsobject.cpp 320 obj->imp->deleteProperty(exec, identifierFromNPIdentifier(i->string()));
322 obj->imp->deleteProperty(exec, i->number());
runtime_object.cpp 240 bool RuntimeObjectImp::deleteProperty(ExecState*, const Identifier&)
  /external/webkit/WebCore/bindings/objc/
WebScriptObject.mm 420 [self _imp]->deleteProperty(exec, Identifier(exec, String(key)));
  /external/webkit/WebCore/bridge/jni/
jni_jsobject.mm 382 _imp->deleteProperty(exec, Identifier(exec, JavaString(memberName)));
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm     [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 263 milliseconds

12