/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_arguments.cpp | 72 bool JSArguments::DeleteProperty(JSThread *thread, const JSHandle<JSArguments> &args, in DeleteProperty() function in panda::ecmascript::JSArguments 77 bool result = JSTaggedValue::DeleteProperty(thread, JSHandle<JSTaggedValue>(args), key); in DeleteProperty()
|
H A D | js_arguments.h | 58 static bool DeleteProperty(JSThread *thread, const JSHandle<JSArguments> &args, const JSHandle<JSTaggedValue> &key);
|
H A D | js_proxy.h | 65 static bool DeleteProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTaggedValue> &key);
|
H A D | js_typed_array.h | 79 static bool DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray,
|
H A D | js_tagged_value.cpp | 1121 bool JSTaggedValue::DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, in DeleteProperty() function in panda::ecmascript::JSTaggedValue 1125 return JSProxy::DeleteProperty(thread, JSHandle<JSProxy>(obj), key); in DeleteProperty() 1129 return ModuleNamespace::DeleteProperty(thread, obj, key); in DeleteProperty() 1133 return JSTypedArray::DeleteProperty(thread, obj, key); in DeleteProperty() 1140 return JSObject::DeleteProperty(thread, JSHandle<JSObject>(obj), key); in DeleteProperty() 1153 bool success = DeleteProperty(thread, obj, key); in DeletePropertyOrThrow()
|
H A D | js_typed_array.cpp | 265 bool JSTypedArray::DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in DeleteProperty() function in panda::ecmascript::JSTypedArray 285 return JSObject::DeleteProperty(thread, JSHandle<JSObject>(typedarray), key); in DeleteProperty()
|
H A D | js_proxy.cpp | 656 bool JSProxy::DeleteProperty(JSThread *thread, const JSHandle<JSProxy> &proxy, const JSHandle<JSTaggedValue> &key) in DeleteProperty() function in panda::ecmascript::JSProxy 664 THROW_TYPE_ERROR_AND_RETURN(thread, "JSProxy::DeleteProperty: handler is Null", false); in DeleteProperty() 673 return JSTaggedValue::DeleteProperty(thread, targetHandle, key); in DeleteProperty() 701 THROW_TYPE_ERROR_AND_RETURN(thread, "JSProxy::DeleteProperty: targetDesc is not Configurable", false); in DeleteProperty() 704 THROW_TYPE_ERROR_AND_RETURN(thread, "JSProxy::DeleteProperty: targetHandle is not Extensible", false); in DeleteProperty()
|
H A D | js_tagged_value.h | 441 static bool DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj,
|
H A D | js_object.h | 569 static bool DeleteProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JSTaggedValue> &key,
|
H A D | runtime_call_id.h | 724 V(Reflect, DeleteProperty) \
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_function_test.cpp | 119 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 121 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() 328 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 330 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 360 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 362 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0()
|
H A D | builtins_shared_function_test.cpp | 136 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 138 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 173 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 175 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 287 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 289 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 317 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0() 319 JSObject::DeleteProperty(thread, (thisArg), in HWTEST_F_L0()
|
H A D | builtins_reflect_test.cpp | 104 JSObject::DeleteProperty(thread, (thisArgument), in HWTEST_F_L0() 106 JSObject::DeleteProperty(thread, (thisArgument), in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | js_module_namespace.h | 54 static bool DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj,
|
H A D | js_module_namespace.cpp | 330 bool ModuleNamespace::DeleteProperty(JSThread *thread, const JSHandle<JSTaggedValue> &obj, in DeleteProperty() function in panda::ecmascript::ModuleNamespace 339 return JSObject::DeleteProperty(thread, JSHandle<JSObject>(obj), key); in DeleteProperty()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | object_operator_third_test.cpp | 139 JSObject::DeleteProperty(thread, (handleObject), handleKey); in HWTEST_F_L0() 173 JSObject::DeleteProperty(thread, (handleObject), handleKey); // Delete key2 in HWTEST_F_L0() 264 JSObject::DeleteProperty(thread, (handleObject), handleKey); in HWTEST_F_L0() 303 JSObject::DeleteProperty(thread, (handleObject2), handleKey1); in HWTEST_F_L0() 325 JSObject::DeleteProperty(thread, handleGlobalObject, handleKey); in HWTEST_F_L0() 408 JSObject::DeleteProperty(thread, handleObject, handleKey2); in HWTEST_F_L0()
|
H A D | js_arguments_test.cpp | 81 HWTEST_F_L0(JsArgumentsTest, DeleteProperty) in HWTEST_F_L0() 96 bool result = JSArguments::DeleteProperty(thread, JSHandle<JSArguments>(jsarg), key); in HWTEST_F_L0()
|
H A D | object_operator_second_test.cpp | 181 JSObject::DeleteProperty(thread, handleObject, handleKey2); in HWTEST_F_L0() 256 JSObject::DeleteProperty(thread, handleObject, handleKey2); in HWTEST_F_L0()
|
H A D | js_array_test.cpp | 104 EXPECT_TRUE(JSArray::DeleteProperty(thread, JSHandle<JSObject>(obj), indexx)); in HWTEST_F_L0() 145 JSObject::DeleteProperty(thread, JSHandle<JSObject>(array), key); in HWTEST_F_L0()
|
H A D | js_proxy_test.cpp | 248 HWTEST_F_L0(JSProxyTest, DeleteProperty) in HWTEST_F_L0() 262 EXPECT_TRUE(JSProxy::DeleteProperty(thread, proxyHandle, key)); in HWTEST_F_L0() 279 EXPECT_FALSE(JSProxy::DeleteProperty(thread, proxyHandle2, key)); in HWTEST_F_L0()
|
H A D | js_object_test.cpp | 94 HWTEST_F_L0(JSObjectTest, DeleteProperty) in HWTEST_F_L0() 105 JSObject::DeleteProperty(thread, (obj), key); in HWTEST_F_L0() 116 JSObject::DeleteProperty(thread, (obj), key); in HWTEST_F_L0() 214 JSObject::DeleteProperty(thread, (obj1), key2); in HWTEST_F_L0() 215 JSObject::DeleteProperty(thread, (obj2), key2); in HWTEST_F_L0() 341 JSObject::DeleteProperty(thread, (obj), key); in HWTEST_F_L0() 877 JSObject::DeleteProperty(thread, (obj1), key5); in HWTEST_F_L0() 936 JSObject::DeleteProperty(thread, (obj4), key1); in HWTEST_F_L0()
|
H A D | object_operator_first_test.cpp | 366 JSObject::DeleteProperty(thread, (handleObject), handleKey); in HWTEST_F_L0() 429 JSObject::DeleteProperty(thread, (handleObject), handleKey); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_reflect.cpp | 129 BUILTINS_API_TRACE(argv->GetThread(), Reflect, DeleteProperty); in ReflectDeleteProperty() 141 return GetTaggedBoolean(JSTaggedValue::DeleteProperty(thread, target, key)); in ReflectDeleteProperty()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | json_parser.cpp | 1388 changeResult = JSObject::DeleteProperty(thread, holder, name, sCheckMode);
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | stub_builder.h | 684 GateRef DeleteProperty(GateRef glue, GateRef obj, GateRef value);
|