Home
last modified time | relevance | path

Searched refs:DefineProperty (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_object.h42 static JSTaggedValue DefineProperty(EcmaRuntimeCallInfo *argv);
Dbuiltins_reflect.cpp90 BUILTINS_API_TRACE(argv->GetThread(), Reflect, DefineProperty); in ReflectDefineProperty()
Dbuiltins_object.cpp252 JSTaggedValue BuiltinsObject::DefineProperty(EcmaRuntimeCallInfo *argv) in DefineProperty() function in panda::ecmascript::builtins::BuiltinsObject
256 BUILTINS_API_TRACE(thread, Object, DefineProperty); in DefineProperty()
Dbuiltins.cpp541 SetFunction(env, objFunc, "defineProperty", Object::DefineProperty, FunctionLength::THREE); in InitializeObject()
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp595 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in InitializeExportVariables()
646 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in GetLocalExportVariables()
687 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in GetIndirectExportVariables()
728 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in GetImportVariables()
736 moduleObj->DefineProperty(ecmaVm, variableName, descriptor); in GetImportVariables()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp341 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0()
349 HWTEST_F_L0(JSNApiTests, DefineProperty) in HWTEST_F_L0() argument
357 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0()
370 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0()
382 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0()
1451 ASSERT_TRUE(object->DefineProperty(vm_, key, attribute)); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp1270 localObj->DefineProperty(vm_, name, descriptor); in GetLocalVariables()
1314 localObj->DefineProperty(vm_, name, descriptor); in GetClosureVariables()
1363 localObj->DefineProperty(vm_, name, descriptor); in UpdateScopeObject()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_object_test.cpp291 HWTEST_F_L0(BuiltinsObjectTest, DefineProperty) in HWTEST_F_L0() argument
322 JSTaggedValue result = BuiltinsObject::DefineProperty(objCallInfo); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h553 V(Object, DefineProperty) \
625 V(Reflect, DefineProperty) \
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h720 bool DefineProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute attribute);
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp302 reinterpret_cast<uintptr_t>(Object::DefineProperty),
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp1530 bool ObjectRef::DefineProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute attribute) in DefineProperty() function in panda::ObjectRef