/arkcompiler/ets_runtime/ecmascript/containers/ |
D | containers_plainarray.h | 42 static JSTaggedValue GetValueAt(EcmaRuntimeCallInfo *argv);
|
D | containers_lightweightset.h | 29 static JSTaggedValue GetValueAt(EcmaRuntimeCallInfo *argv);
|
D | containers_lightweightmap.h | 46 static JSTaggedValue GetValueAt(EcmaRuntimeCallInfo *argv);
|
D | containers_plainarray.cpp | 485 JSTaggedValue ContainersPlainArray::GetValueAt(EcmaRuntimeCallInfo *argv) in GetValueAt() function in panda::ecmascript::containers::ContainersPlainArray 489 BUILTINS_API_TRACE(thread, PlainArray, GetValueAt); in GetValueAt() 512 JSTaggedValue value = array->GetValueAt(thread, index); in GetValueAt()
|
D | containers_lightweightset.cpp | 130 JSTaggedValue ContainersLightWeightSet::GetValueAt(EcmaRuntimeCallInfo *argv) in GetValueAt() function in panda::ecmascript::containers::ContainersLightWeightSet 134 BUILTINS_API_TRACE(thread, LightWeightSet, GetValueAt); in GetValueAt() 157 return set->GetValueAt(index); in GetValueAt()
|
D | containers_lightweightmap.cpp | 597 JSTaggedValue ContainersLightWeightMap::GetValueAt(EcmaRuntimeCallInfo *argv) in GetValueAt() function in panda::ecmascript::containers::ContainersLightWeightMap 601 BUILTINS_API_TRACE(thread, LightWeightMap, GetValueAt); in GetValueAt() 624 return JSAPILightWeightMap::GetValueAt(thread, JSHandle<JSAPILightWeightMap>::Cast(self), in GetValueAt()
|
D | containers_private.cpp | 390 …SetFrozenFunction(thread, funcPrototype, "getValueAt", ContainersLightWeightMap::GetValueAt, FuncL… in InitializeLightWeightMap() 442 …SetFrozenFunction(thread, funcPrototype, "getValueAt", ContainersLightWeightSet::GetValueAt, FuncL… in InitializeLightWeightSet() 681 … SetFrozenFunction(thread, plainArrayFuncPrototype, "getValueAt", ContainersPlainArray::GetValueAt, in InitializePlainArray()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
D | jsnapi_sample.cpp | 527 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in GetProperty() 601 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in GetOwnEnumerablePropertyNames() 618 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in GetAllPropertyNames() 630 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in GetAllPropertyNames() 642 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in GetAllPropertyNames() 654 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in GetAllPropertyNames() 1721 Local<IntegerRef> resultInt = ArrayRef::GetValueAt(vm_, arrayObject, index); in HWTEST_F_L0() 1731 Local<IntegerRef> resultChangedInt = ArrayRef::GetValueAt(vm_, arrayObject, index); in HWTEST_F_L0() 1734 Local<IntegerRef> printInt = ArrayRef::GetValueAt(vm_, arrayObject, i); in HWTEST_F_L0() 1752 Local<BooleanRef> resultBool = ArrayRef::GetValueAt(vm_, arrayObject, index); in HWTEST_F_L0() [all …]
|
/arkcompiler/ets_runtime/test/fuzztest/arrayref_fuzzer/ |
D | arrayref_fuzzer.cpp | 49 … [[maybe_unused]]Local<JSValueRef> value = property->GetValueAt(vm, globalObject, (uint32_t)size); in ArrayRefGetValueAtFuzzerTest()
|
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetgetvalueat_fuzzer/ |
D | containerslightweightsetgetvalueat_fuzzer.cpp | 102 ContainersLightWeightSet::GetValueAt(callInfo); in ContainersLightWeightSetFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_lightweightset.h | 53 JSTaggedValue GetValueAt(int32_t index);
|
D | js_api_plain_array.h | 53 JSTaggedValue GetValueAt(JSThread *thread, int32_t index);
|
D | js_api_lightweightset.cpp | 138 element.Update(srcLightWeightSet->GetValueAt(i)); in AddAll() 177 JSTaggedValue JSAPILightWeightSet::GetValueAt(int32_t index) in GetValueAt() function in panda::ecmascript::JSAPILightWeightSet 328 JSTaggedValue kValue = lightweightset->GetValueAt(k); in ForEach()
|
D | js_api_lightweightmap.h | 78 …static JSTaggedValue GetValueAt(JSThread *thread, const JSHandle<JSAPILightWeightMap> &lightWeight…
|
D | js_api_plain_array.cpp | 306 valueHandle.Update(plainarray->GetValueAt(thread, k)); in ToString() 392 JSTaggedValue JSAPIPlainArray::GetValueAt(JSThread *thread, int32_t index) in GetValueAt() function in panda::ecmascript::JSAPIPlainArray
|
D | js_api_lightweightmap.cpp | 224 JSTaggedValue JSAPILightWeightMap::GetValueAt(JSThread *thread, const JSHandle<JSAPILightWeightMap>… in GetValueAt() function in panda::ecmascript::JSAPILightWeightMap 363 valueHandle.Update(lightWeightMap->GetValueAt(thread, lightWeightMap, k)); in ToString()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_api_lightweightset_test.cpp | 275 JSTaggedValue jsValue = lws->GetValueAt(5); // 5 means the value in HWTEST_F_L0() 352 JSTaggedValue result1 = lws->GetValueAt(-1); in HWTEST_F_L0() 354 JSTaggedValue result2 = lws->GetValueAt(static_cast<int32_t>(NODE_NUMBERS * 2)); in HWTEST_F_L0()
|
D | js_api_lightweightmap_test.cpp | 192 JSHandle<JSTaggedValue>(thread, JSAPILightWeightMap::GetValueAt(thread, lwm, 0)); in HWTEST_F_L0() 194 result = JSHandle<JSTaggedValue>(thread, JSAPILightWeightMap::GetValueAt(thread, lwm, 1)); in HWTEST_F_L0() 196 result = JSHandle<JSTaggedValue>(thread, JSAPILightWeightMap::GetValueAt(thread, lwm, 2)); in HWTEST_F_L0()
|
D | js_api_plain_array_test.cpp | 271 taggedValue = array->GetValueAt(thread, lvalue); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapat_fuzzer/ |
D | containerslightweightmapat_fuzzer.cpp | 123 ContainersLightWeightMap::GetValueAt(callInfo); in ContainersLightWeightMapAtFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
D | containers_lightweightset_test.cpp | 530 JSTaggedValue result = ContainersLightWeightSet::GetValueAt(callInfo); in HWTEST_F_L0() 581 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersLightWeightSet, GetValueAt); in HWTEST_F_L0() 600 CONTAINERS_API_EXCEPTION_TEST(ContainersLightWeightSet, GetValueAt, callInfo); in HWTEST_F_L0()
|
D | containers_plainarray_test.cpp | 528 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersPlainArray, GetValueAt); in HWTEST_F_L0() 557 CONTAINERS_API_EXCEPTION_TEST(ContainersPlainArray, GetValueAt, callInfo); in HWTEST_F_L0()
|
D | containers_lightweightmap_test.cpp | 617 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersLightWeightMap, GetValueAt); in HWTEST_F_L0() 650 CONTAINERS_API_EXCEPTION_TEST(ContainersLightWeightMap, GetValueAt, callInfo); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | runtime_call_id.h | 874 V(LightWeightMap, GetValueAt) \ 880 V(LightWeightSet, GetValueAt) \ 914 V(PlainArray, GetValueAt) \
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 805 reinterpret_cast<uintptr_t>(LightWeightMap::GetValueAt), 812 reinterpret_cast<uintptr_t>(LightWeightSet::GetValueAt), 936 reinterpret_cast<uintptr_t>(PlainArray::GetValueAt),
|