Home
last modified time | relevance | path

Searched refs:GetValueAt (Results 1 – 25 of 32) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_plainarray.h42 static JSTaggedValue GetValueAt(EcmaRuntimeCallInfo *argv);
Dcontainers_lightweightset.h29 static JSTaggedValue GetValueAt(EcmaRuntimeCallInfo *argv);
Dcontainers_lightweightmap.h46 static JSTaggedValue GetValueAt(EcmaRuntimeCallInfo *argv);
Dcontainers_plainarray.cpp485 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()
Dcontainers_lightweightset.cpp130 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()
Dcontainers_lightweightmap.cpp597 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()
Dcontainers_private.cpp390 …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/
Djsnapi_sample.cpp527 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/
Darrayref_fuzzer.cpp49 … [[maybe_unused]]Local<JSValueRef> value = property->GetValueAt(vm, globalObject, (uint32_t)size); in ArrayRefGetValueAtFuzzerTest()
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetgetvalueat_fuzzer/
Dcontainerslightweightsetgetvalueat_fuzzer.cpp102 ContainersLightWeightSet::GetValueAt(callInfo); in ContainersLightWeightSetFuzzTest()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_lightweightset.h53 JSTaggedValue GetValueAt(int32_t index);
Djs_api_plain_array.h53 JSTaggedValue GetValueAt(JSThread *thread, int32_t index);
Djs_api_lightweightset.cpp138 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()
Djs_api_lightweightmap.h78 …static JSTaggedValue GetValueAt(JSThread *thread, const JSHandle<JSAPILightWeightMap> &lightWeight…
Djs_api_plain_array.cpp306 valueHandle.Update(plainarray->GetValueAt(thread, k)); in ToString()
392 JSTaggedValue JSAPIPlainArray::GetValueAt(JSThread *thread, int32_t index) in GetValueAt() function in panda::ecmascript::JSAPIPlainArray
Djs_api_lightweightmap.cpp224 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/
Djs_api_lightweightset_test.cpp275 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()
Djs_api_lightweightmap_test.cpp192 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()
Djs_api_plain_array_test.cpp271 taggedValue = array->GetValueAt(thread, lvalue); in HWTEST_F_L0()
/arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapat_fuzzer/
Dcontainerslightweightmapat_fuzzer.cpp123 ContainersLightWeightMap::GetValueAt(callInfo); in ContainersLightWeightMapAtFuzzTest()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_lightweightset_test.cpp530 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()
Dcontainers_plainarray_test.cpp528 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersPlainArray, GetValueAt); in HWTEST_F_L0()
557 CONTAINERS_API_EXCEPTION_TEST(ContainersPlainArray, GetValueAt, callInfo); in HWTEST_F_L0()
Dcontainers_lightweightmap_test.cpp617 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/
Druntime_call_id.h874 V(LightWeightMap, GetValueAt) \
880 V(LightWeightSet, GetValueAt) \
914 V(PlainArray, GetValueAt) \
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp805 reinterpret_cast<uintptr_t>(LightWeightMap::GetValueAt),
812 reinterpret_cast<uintptr_t>(LightWeightSet::GetValueAt),
936 reinterpret_cast<uintptr_t>(PlainArray::GetValueAt),

12