/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_object.h | 37 V("defineProperty", DefineProperty, 3, INVALID) \ 111 static JSTaggedValue DefineProperty(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_reflect.cpp | 105 BUILTINS_API_TRACE(argv->GetThread(), Reflect, DefineProperty); in ReflectDefineProperty()
|
H A D | builtins_object.cpp | 285 JSTaggedValue BuiltinsObject::DefineProperty(EcmaRuntimeCallInfo *argv) in DefineProperty() function in panda::ecmascript::builtins::BuiltinsObject 289 BUILTINS_API_TRACE(thread, Object, DefineProperty); in DefineProperty() 296 THROW_TYPE_ERROR_AND_RETURN(thread, "DefineProperty: O is not Object", JSTaggedValue::Exception()); in DefineProperty()
|
/arkcompiler/ets_runtime/test/fuzztest/objectref_fuzzer/ |
H A D | objectref_fuzzer.cpp | 62 object->DefineProperty(vm, key, attribute); in DefinePropertyFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | debugger_api.cpp | 667 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in InitializeExportVariables() 718 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in GetLocalExportVariables() 760 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in GetIndirectExportVariables() 802 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in GetImportVariables() 810 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in GetImportVariables()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_first_tests.cpp | 527 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0() 537 * @tc.name: DefineProperty 542 HWTEST_F_L0(JSNApiTests, DefineProperty) in HWTEST_F_L0() 550 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0() 563 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0() 575 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0() 1995 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0()
|
H A D | jsnapi_third_tests.cpp | 1120 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0() 1146 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0() 1210 obj->DefineProperty(vm_, toPrimitiveKey, attribute); in HWTEST_F_L0()
|
H A D | jsnapi_sample.cpp | 506 b = object->DefineProperty(vm, StringRef::NewFromUtf8(vm, "AttributeKey1"), attribute1); in ObjectRefSet() 508 b = object->DefineProperty(vm, StringRef::NewFromUtf8(vm, "Test2"), attribute2); in ObjectRefSet() 514 b = object->DefineProperty(vm, StringRef::NewFromUtf8(vm, "AttributeKey3"), attribute3); in ObjectRefSet() 677 b = object->DefineProperty(vm, StringRef::NewFromUtf8(vm, "Freeze"), attribute); in FreezeAndSeal()
|
H A D | jsnapi_second_tests.cpp | 620 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | debugger_impl.cpp | 1860 // otherwise after DefineProperty, corresponding varName in GetClosureScopeChains() 1867 closureScopeObj->DefineProperty(vm_, varName, descriptor); in GetClosureScopeChains() 1956 localObj->DefineProperty(vm_, name, descriptor); in GetLocalVariables() 2005 localObj->DefineProperty(vm_, name, descriptor); in UpdateScopeObject()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 650 V(Object, DefineProperty) \ 723 V(Reflect, DefineProperty) \
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_object_test.cpp | 267 HWTEST_F_L0(BuiltinsObjectTest, DefineProperty) in HWTEST_F_L0() 298 JSTaggedValue result = BuiltinsObject::DefineProperty(objCallInfo); in HWTEST_F_L0()
|
H A D | builtins_shared_array_test.cpp | 1520 HWTEST_F_L0(BuiltinsSharedArrayTest, DefineProperty) in HWTEST_F_L0() 1544 JSTaggedValue result = BuiltinsObject::DefineProperty(objCallInfo); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 276 reinterpret_cast<uintptr_t>(Object::DefineProperty),
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | jsnapi_expo.h | 813 bool DefineProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute attribute);
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 2833 bool ObjectRef::DefineProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute attribute) in DefineProperty() function in panda::ObjectRef
|