Home
last modified time | relevance | path

Searched refs:GetElement (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dtagged_list.cpp55 value.Update(GetElement(i)); in CopyArray()
101 dataIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in Clear()
147 int nextDataIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in FindIndexByElement()
151 JSTaggedValue data = GetElement(dataIndex); in FindIndexByElement()
152 nextDataIndex = GetElement(nextDataIndex + NEXT_PTR_OFFSET).GetInt(); in FindIndexByElement()
165 int nextIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in FindLastIndexByElement()
170 JSTaggedValue data = GetElement(dataIndex); in FindLastIndexByElement()
174 nextIndex = GetElement(nextIndex + NEXT_PTR_OFFSET).GetInt(); in FindLastIndexByElement()
184 int nextIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in FindDataIndexByNodeIndex()
191 nextIndex = GetElement(nextIndex + NEXT_PTR_OFFSET).GetInt(); in FindDataIndexByNodeIndex()
[all …]
Dtagged_list.h63 int firstDataIndex = GetElement(ELEMENTS_START_INDEX + NEXT_PTR_OFFSET).GetInt(); in GetFirst()
64 return GetElement(firstDataIndex); in GetFirst()
69 int lastDataIndex = GetElement(TAIL_TABLE_INDEX).GetInt(); in GetLast()
70 return GetElement(lastDataIndex); in GetLast()
86 inline JSTaggedValue GetElement(int index) const in GetElement() function
116 dataIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in GetNextDataIndex()
Dlinked_hash_table.h91 for (JSTaggedValue entry = GetElement(BucketToIndex(bucket)); !entry.IsHole(); in FindElement()
162 return GetElement(index); in GetKey()
168 return GetElement(index); in GetValue()
227 JSTaggedValue key = GetElement(fromIndex); in Rehash()
244 newTable->SetElement(thread, desIndex + j, GetElement(fromIndex + j)); in Rehash()
253 inline JSTaggedValue GetElement(int index) const in GetElement() function
280 return GetElement(index); in GetNextEntry()
308 JSTaggedValue previousEntry = GetElement(bucketIndex); in InsertNewEntry()
Dtagged_tree.h83 return GetElement(index); in GetKey()
89 return GetElement(index); in GetValue()
98 JSTaggedValue color = GetElement(index); in GetColor()
214 JSTaggedValue parent = GetElement(index); in GetParent()
257 inline JSTaggedValue GetElement(int index) const in GetElement() function
Ddump.cpp1367 GetElement(5).D(); in Dump()
1370 GetElement(6).D(); in Dump()
1373 int next = GetElement(5).GetInt(); in Dump()
1376 GetElement(next).DumpTaggedValue(os); in Dump()
1379 GetElement(next + 1).D(); in Dump()
1382 GetElement(next + 2).D(); in Dump()
1384 next = GetElement(next + 1).GetInt(); in Dump()
1395 GetElement(5).D(); in Dump()
1398 int next = GetElement(5).GetInt(); in Dump()
1401 GetElement(next).DumpTaggedValue(os); in Dump()
[all …]
Dobject_factory.h336 dataIndex = list->GetElement(dataIndex + Derived::NEXT_PTR_OFFSET).GetInt(); in ConvertListToArray()
337 dstElements->Set(thread, i, list->GetElement(dataIndex)); in ConvertListToArray()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dvn.cpp83 if (GetElement(i) != obj->GetElement(i)) { in Compare()
Dvn.h50 uint64_t GetElement(uint32_t index) const in GetElement() function
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.cpp53 panda_file::AnnotationDataAccessor::Elem adae = ada.GetElement(i); in Initialize()
62 panda_file::AnnotationDataAccessor::Elem adae = ada.GetElement(i); in Initialize()
Dtype_literal_extractor.cpp52 panda_file::AnnotationDataAccessor::Elem adae = ada.GetElement(i); in GetMethodAnnoOffset()
/arkcompiler/runtime_core/libpandafile/
Dannotation_data_accessor.cpp36 AnnotationDataAccessor::Elem AnnotationDataAccessor::GetElement(size_t i) const in GetElement() function in panda::panda_file::AnnotationDataAccessor
Dannotation_data_accessor.h92 Elem GetElement(size_t i) const;
Dmethod_data_accessor-inl.h344 AnnotationDataAccessor::Elem adae = ada.GetElement(i); in GetNumericalAnnotation()
Dfile_reader.cpp211 AnnotationDataAccessor::Elem ann_elem = ann_acc.GetElement(i); in CreateAnnotationItem()
/arkcompiler/runtime_core/compiler/tests/
Dcompiler_optimizations_test.cpp63 EXPECT_EQ(vn_obj.GetElement(0), 1);
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp1033 currentValue.Update(doubleList->GetElement(valueNode)); in GetLinkedListValue()
1053 currentValue.Update(singleList->GetElement(valueNode)); in GetListValue()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_list.cpp334 JSTaggedValue value = singleList->GetElement(valueNode); in ForEach()
Dcontainers_linked_list.cpp565 JSTaggedValue value = doubleList->GetElement(valueNode); in ForEach()