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.cpp64 EXPECT_DEATH(env_->GetObjectArrayElement(nullptr, -1), ""); in TEST_F()
65 EXPECT_DEATH(env_->GetObjectArrayElement(nullptr, 1), ""); in TEST_F()
Darray_native_test_2.cpp464 env_->GetObjectArrayElement(array, -1); in TEST_F()
472 env_->GetObjectArrayElement(array, 5_I); in TEST_F()
480 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.h381 ets_object (*GetObjectArrayElement)(EtsEnv *env, ets_objectArray array, ets_size index); member
1342 ets_object GetObjectArrayElement(ets_objectArray array, ets_size index) in GetObjectArrayElement() function
1344 return native_interface->GetObjectArrayElement(this, array, index); in GetObjectArrayElement()
Dets_napi_native_interface.cpp2103 NO_UB_SANITIZE static ets_object GetObjectArrayElement(EtsEnv *env, ets_objectArray array, ets_size… in GetObjectArrayElement() function
3040 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()