Searched refs:arrayHandle (Results 1 – 10 of 10) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | huge_object_test.cpp | 82 JSHandle<TaggedArray> arrayHandle(thread, array); in HWTEST_F_L0() local 84 arrayHandle->Set(thread, 0, newObj.GetTaggedValue()); in HWTEST_F_L0() 86 EXPECT_EQ(*arrayHandle, reinterpret_cast<TaggedObject *>(array)); in HWTEST_F_L0() 90 EXPECT_EQ(*arrayHandle, reinterpret_cast<TaggedObject *>(array)); in HWTEST_F_L0()
|
D | tagged_dictionary_test.cpp | 182 JSHandle<JSTaggedValue> arrayHandle(thread, in HWTEST_F_L0() local 184 int entry = dictHandle->FindEntry(arrayHandle.GetTaggedValue()); in HWTEST_F_L0() 334 JSHandle<JSTaggedValue> arrayHandle(thread, JSTaggedValue(9)); in HWTEST_F_L0() local 335 int entry = dictHandle->FindEntry(arrayHandle.GetTaggedValue()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
D | array_helper_test.cpp | 125 JSHandle<JSTaggedValue> arrayHandle(thread, handleArr); in HWTEST_F_L0() local 126 EXPECT_EQ(ArrayHelper::GetLength(thread, arrayHandle), 10U); in HWTEST_F_L0() 159 JSHandle<JSTaggedValue> arrayHandle(thread, handleArr); in HWTEST_F_L0() local 160 EXPECT_EQ(ArrayHelper::GetLength(thread, arrayHandle), 0U); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | ntype_hcr_lowering.cpp | 155 JSHandle<JSArray> arrayHandle(thread, arr); in LowerNTypedCreateArrayWithBuffer() local 156 JSHandle<JSHClass> oldHClass(thread, arrayHandle->GetClass()); in LowerNTypedCreateArrayWithBuffer() 161 JSHandle<TaggedArray> elements(thread, arrayHandle->GetElements()); in LowerNTypedCreateArrayWithBuffer()
|
D | ntype_mcr_lowering.cpp | 109 JSHandle<JSArray> arrayHandle(thread, arr); in LowerCreateArrayWithBuffer() local 110 TaggedArray *arrayLiteral = TaggedArray::Cast(arrayHandle->GetElements()); in LowerCreateArrayWithBuffer()
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
D | containers_plainarray_test.cpp | 161 JSHandle<JSAPIPlainArray> arrayHandle(thread, result); in HWTEST_F_L0() local 162 JSTaggedValue resultProto = JSObject::GetPrototype(JSHandle<JSObject>::Cast(arrayHandle)); in HWTEST_F_L0() 165 int size = arrayHandle->GetSize(); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
D | ic_runtime_stub-inl.h | 306 auto arrayHandle = JSHandle<TaggedArray>(thread, array); in StoreWithTransition() local 307 properties = factory->CopyArray(arrayHandle, capacity, in StoreWithTransition()
|
/arkcompiler/ets_runtime/ecmascript/ts_types/ |
D | ts_manager.cpp | 1322 JSHandle<TaggedArray> arrayHandle(thread_, classLiteral->GetArray()); in FillSnapshotConstantPoolList() local 1332 CollectLiteralInfo(arrayHandle, data.index, newCP, bcInfoCollector, ihc, chc); in FillSnapshotConstantPoolList()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs.cpp | 265 …JSHandle<TaggedArray> arrayHandle = GetHArg<TaggedArray>(argv, argc, 2); // 2: means the second … in DEF_RUNTIME_STUBS() local 276 …properties = factory->CopyArray(arrayHandle, capacity, JSObject::ComputePropertyCapacity(capacity)… in DEF_RUNTIME_STUBS()
|
D | runtime_stubs-inl.h | 860 JSHandle<TaggedArray> arrayHandle(thread, classLiteral->GetArray()); in RuntimeCreateClassWithBuffer() 862 ClassInfoExtractor::BuildClassInfoExtractorFromLiteral(thread, extractor, arrayHandle); in RuntimeCreateClassWithBuffer()
|