Home
last modified time | relevance | path

Searched refs:GetObjectArrayElement (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Darray_native_test_3.cpp67 EXPECT_DEATH(env_->GetObjectArrayElement(nullptr, -1), ""); in TEST_F()
68 EXPECT_DEATH(env_->GetObjectArrayElement(nullptr, 1), ""); in TEST_F()
Darray_native_test_2.cpp467 env_->GetObjectArrayElement(array, -1); in TEST_F()
475 env_->GetObjectArrayElement(array, 5_I); in TEST_F()
483 env_->GetObjectArrayElement(array, 15_I); in TEST_F()
Darray_native_test.cpp420 auto str = static_cast<ets_string>(env_->GetObjectArrayElement(array, i)); in TEST_F()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi.h373 ets_object (*GetObjectArrayElement)(EtsEnv *env, ets_objectArray array, ets_size index); member
1310 ets_object GetObjectArrayElement(ets_objectArray array, ets_size index) in GetObjectArrayElement() function
1312 return native_interface->GetObjectArrayElement(this, array, index); in GetObjectArrayElement()
Dets_napi_native_interface.cpp2099 NO_UB_SANITIZE static ets_object GetObjectArrayElement(EtsEnv *env, ets_objectArray array, ets_size… in GetObjectArrayElement() function
2943 GetObjectArrayElement,
/arkcompiler/runtime_core/static_core/plugins/ets/tests/napi/bridges/lib/
DEtsNapiTests.cpp1176 auto s = static_cast<ets_string>(env->GetObjectArrayElement(arr, i)); in ETS_EtsNapiTests_printStringArr()