/arkcompiler/ets_runtime/ecmascript/ |
D | js_arguments.cpp | 74 bool JSArguments::DeleteProperty(JSThread *thread, const JSHandle<JSArguments> &args, in DeleteProperty() function in panda::ecmascript::JSArguments 79 bool result = JSTaggedValue::DeleteProperty(thread, JSHandle<JSTaggedValue>(args), key); in DeleteProperty()
|
D | js_arguments.h | 58 …static bool DeleteProperty(JSThread *thread, const JSHandle<JSArguments> &args, const JSHandle<JST…
|
D | js_proxy.h | 65 …static bool DeleteProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTagg…
|
D | js_typed_array.h | 77 static bool DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray,
|
D | js_tagged_value.cpp | 698 bool JSTaggedValue::DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, in DeleteProperty() function in panda::ecmascript::JSTaggedValue 702 return JSProxy::DeleteProperty(thread, JSHandle<JSProxy>(obj), key); in DeleteProperty() 706 return ModuleNamespace::DeleteProperty(thread, obj, key); in DeleteProperty() 710 return JSTypedArray::DeleteProperty(thread, obj, key); in DeleteProperty() 717 return JSObject::DeleteProperty(thread, JSHandle<JSObject>(obj), key); in DeleteProperty() 730 bool success = DeleteProperty(thread, obj, key); in DeletePropertyOrThrow()
|
D | js_typed_array.cpp | 254 bool JSTypedArray::DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in DeleteProperty() function in panda::ecmascript::JSTypedArray 274 return JSObject::DeleteProperty(thread, JSHandle<JSObject>(typedarray), key); in DeleteProperty()
|
D | js_proxy.cpp | 669 bool JSProxy::DeleteProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTag… in DeleteProperty() function in panda::ecmascript::JSProxy 685 return JSTaggedValue::DeleteProperty(thread, targetHandle, key); in DeleteProperty()
|
D | js_tagged_value.h | 480 static bool DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj,
|
D | js_object.h | 501 …static bool DeleteProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JSTagge…
|
D | runtime_call_id.h | 626 V(Reflect, DeleteProperty) \
|
D | js_object.cpp | 926 bool JSObject::DeleteProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JSTag… in DeleteProperty() function in panda::ecmascript::JSObject
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_function_test.cpp | 113 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 115 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 157 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 159 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 350 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 352 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 389 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 391 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0()
|
D | builtins_reflect_test.cpp | 128 JSObject::DeleteProperty(thread, (thisArgument), in HWTEST_F_L0() 130 JSObject::DeleteProperty(thread, (thisArgument), in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/module/ |
D | js_module_namespace.h | 52 static bool DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj,
|
D | js_module_namespace.cpp | 270 bool ModuleNamespace::DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, in DeleteProperty() function in panda::ecmascript::ModuleNamespace 279 return JSObject::DeleteProperty(thread, JSHandle<JSObject>(obj), key); in DeleteProperty()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_arguments_test.cpp | 104 HWTEST_F_L0(JsArgumentsTest, DeleteProperty) in HWTEST_F_L0() argument 119 bool result = JSArguments::DeleteProperty(thread, JSHandle<JSArguments>(jsarg), key); in HWTEST_F_L0()
|
D | object_operator_test.cpp | 397 JSObject::DeleteProperty(thread, (handleObject), handleKey); in HWTEST_F_L0() 460 JSObject::DeleteProperty(thread, (handleObject), handleKey); in HWTEST_F_L0() 636 JSObject::DeleteProperty(thread, handleObject, handleKey2); in HWTEST_F_L0() 713 JSObject::DeleteProperty(thread, handleObject, handleKey2); in HWTEST_F_L0() 815 JSObject::DeleteProperty(thread, (handleObject), handleKey); in HWTEST_F_L0() 849 JSObject::DeleteProperty(thread, (handleObject), handleKey); // Delete key2 in HWTEST_F_L0() 940 JSObject::DeleteProperty(thread, (handleObject), handleKey); in HWTEST_F_L0() 979 JSObject::DeleteProperty(thread, (handleObject2), handleKey1); in HWTEST_F_L0() 1001 JSObject::DeleteProperty(thread, handleGlobalObject, handleKey); in HWTEST_F_L0() 1084 JSObject::DeleteProperty(thread, handleObject, handleKey2); in HWTEST_F_L0()
|
D | js_array_test.cpp | 127 EXPECT_TRUE(JSArray::DeleteProperty(thread, JSHandle<JSObject>(obj), indexx)); in HWTEST_F_L0() 168 JSObject::DeleteProperty(thread, JSHandle<JSObject>(array), key); in HWTEST_F_L0()
|
D | js_object_test.cpp | 116 HWTEST_F_L0(JSObjectTest, DeleteProperty) in HWTEST_F_L0() argument 127 JSObject::DeleteProperty(thread, (obj), key); in HWTEST_F_L0() 138 JSObject::DeleteProperty(thread, (obj), key); in HWTEST_F_L0() 221 JSObject::DeleteProperty(thread, (obj1), key2); in HWTEST_F_L0() 222 JSObject::DeleteProperty(thread, (obj2), key2); in HWTEST_F_L0() 348 JSObject::DeleteProperty(thread, (obj), key); in HWTEST_F_L0() 913 JSObject::DeleteProperty(thread, (obj1), key5); in HWTEST_F_L0() 972 JSObject::DeleteProperty(thread, (obj4), key1); in HWTEST_F_L0()
|
D | js_proxy_test.cpp | 267 HWTEST_F_L0(JSProxyTest, DeleteProperty) in HWTEST_F_L0() argument 288 EXPECT_TRUE(JSProxy::DeleteProperty(thread, proxyHandle, key)); in HWTEST_F_L0() 305 EXPECT_FALSE(JSProxy::DeleteProperty(thread, proxyHandle2, key)); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
D | json_parser.cpp | 78 changeResult = JSObject::DeleteProperty(thread, holder, name); in RecurseAndApply()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_reflect.cpp | 114 BUILTINS_API_TRACE(argv->GetThread(), Reflect, DeleteProperty); in ReflectDeleteProperty() 126 return GetTaggedBoolean(JSTaggedValue::DeleteProperty(thread, target, key)); in ReflectDeleteProperty()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 1574 bool result = object->DeleteProperty(thread, object, keyValue); in Delete() 1586 bool result = object->DeleteProperty(thread, object, keyHandle); in Delete()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
D | jsnapi_tests.cpp | 374 HWTEST_F_L0(JSNApiTests, DeleteProperty) in HWTEST_F_L0() argument
|