Home
last modified time | relevance | path

Searched defs:element (Results 1 – 25 of 53) sorted by relevance

123

/arkcompiler/runtime_core/libpandabase/tests/
Dring_buffer_test.cpp53 for (const auto &element : buffer) { in TEST() local
69 for (const auto &element : buffer) { in TEST() local
122 for (const auto &element : buffer) { in TEST() local
/arkcompiler/runtime_core/runtime/
Dcompiler_queue_counter_priority.h95 auto element = queue_.back(); in GetTask() local
118 auto element = allocator_->New<CompilationQueueElement>(ctx); variable
139 virtual bool UpdateCounterAndCheck(CompilationQueueElement *element) in UpdateCounterAndCheck()
177 auto element = *it; in UpdateQueue() local
Dcompiler_queue_aged_counter_priority.h45 bool UpdateCounterAndCheck(CompilationQueueElement *element) override in UpdateCounterAndCheck()
/arkcompiler/ets_frontend/merge_abc/src/
DannotationProto.cpp22 for (const auto &element : anno.GetElements()) { in Serialize() local
32 …panda::pandasm::AnnotationElement &element = AnnotationElement::Deserialize(protoElement, allocato… in Deserialize() local
37 void AnnotationElement::Serialize(const panda::pandasm::AnnotationElement &element, in Serialize()
57 auto *element = allocator->New<panda::pandasm::AnnotationElement>(protoElement.name(), in Deserialize() local
62 auto *element = allocator->New<panda::pandasm::AnnotationElement>(protoElement.name(), in Deserialize() local
/arkcompiler/ets_frontend/es2panda/compiler/base/
Ddestructuring.cpp83 for (const auto *element : array->Elements()) { in GenArray() local
127 const ir::Expression *element, VReg value) in GenObjectProperty()
181 auto *element = properties[0]; in GenObjectWithRest() local
192 for (const auto *element : properties) { in GenObjectWithRest() local
238 for (const auto *element : properties) { in GenObject() local
Dliterals.cpp45 for (const auto *element : templateLit->Quasis()) { in GetTemplateObject() local
/arkcompiler/runtime_core/runtime/include/
Dhistogram-inl.h46 void SimpleHistogram<Value>::AddValue(const Value &element, size_t number) in AddValue()
89 void Histogram<Value>::AddValue(const Value &element, size_t number) in AddValue()
/arkcompiler/ets_runtime/ecmascript/
Dtagged_list.cpp145 int TaggedList<Derived>::FindIndexByElement(const JSTaggedValue &element) in FindIndexByElement()
163 int TaggedList<Derived>::FindLastIndexByElement(const JSTaggedValue &element) in FindLastIndexByElement()
247 int TaggedList<Derived>::FindPrevNodeByValue(const JSTaggedValue &element) in FindPrevNodeByValue()
341 bool TaggedSingleList::Has(const JSTaggedValue &element) in Has()
362 int TaggedSingleList::GetIndexOf(const JSTaggedValue &element) in GetIndexOf()
367 int TaggedSingleList::GetLastIndexOf(const JSTaggedValue &element) in GetLastIndexOf()
522 JSTaggedValue TaggedSingleList::Remove(JSThread *thread, const JSTaggedValue &element) in Remove()
585 bool TaggedDoubleList::Has(const JSTaggedValue &element) in Has()
624 int TaggedDoubleList::GetIndexOf(const JSTaggedValue &element) in GetIndexOf()
629 int TaggedDoubleList::GetLastIndexOf(const JSTaggedValue &element) in GetLastIndexOf()
[all …]
Dtemplate_string.cpp33 int32_t element = templateMap->FindEntry(rawStringsTag.GetTaggedValue()); in GetTemplateObject() local
Dtagged_list.h78 inline void SetElement(const JSThread *thread, int index, const JSTaggedValue &element) in SetElement()
Dlinked_hash_table.h93 JSTaggedValue element = GetKey(entry.GetInt()); in FindElement() local
256 inline void SetElement(const JSThread *thread, int index, JSTaggedValue element) in SetElement()
/arkcompiler/runtime_core/runtime/mem/gc/
Dgc_adaptive_stack.cpp80 void GCAdaptiveStack::PushToStack(const ObjectHeader *element) in PushToStack()
125 const ObjectHeader *element = stack_src_->top(); in PopFromStack() local
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_linked_list.cpp107 JSTaggedValue JSAPILinkedList::Remove(JSThread *thread, const JSTaggedValue &element) in Remove()
118 const JSTaggedValue &element) in RemoveFirstFound()
130 const JSTaggedValue &element) in RemoveLastFound()
191 bool JSAPILinkedList::Has(const JSTaggedValue &element) in Has()
207 JSTaggedValue JSAPILinkedList::GetIndexOf(const JSTaggedValue &element) in GetIndexOf()
213 JSTaggedValue JSAPILinkedList::GetLastIndexOf(const JSTaggedValue &element) in GetLastIndexOf()
Djs_api_list.cpp90 bool JSAPIList::Has(const JSTaggedValue &element) in Has()
111 JSTaggedValue JSAPIList::GetIndexOf(const JSTaggedValue &element) in GetIndexOf()
117 JSTaggedValue JSAPIList::GetLastIndexOf(const JSTaggedValue &element) in GetLastIndexOf()
146 JSTaggedValue JSAPIList::Remove(JSThread *thread, const JSTaggedValue &element) in Remove()
/arkcompiler/runtime_core/runtime/tests/
Dhistogram_test.cpp51 int element; member
98 for (auto element : simple_vector) { in TEST_F() local
114 for (auto element : simple_vector) { in TEST_F() local
/arkcompiler/ets_frontend/es2panda/util/
Ddumper.cpp32 std::visit([](auto&& element) { in DumpLiterals()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_linked_list.cpp254 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in Has() local
303 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in GetIndexOf() local
324 JSHandle<JSTaggedValue> element(GetCallArg(argv, 0)); in GetLastIndexOf() local
375 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in Remove() local
418 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in RemoveFirstFound() local
464 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in RemoveLastFound() local
488 JSHandle<JSTaggedValue> element = GetCallArg(argv, 1); in Set() local
Dcontainers_vector.cpp216 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in GetIndexOf() local
238 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in GetIndexFrom() local
306 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in GetLastIndexOf() local
328 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in GetLastIndexFrom() local
357 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in Remove() local
432 JSHandle<JSTaggedValue> element = GetCallArg(argv, 1); in Set() local
Dcontainers_list.cpp165 JSHandle<JSTaggedValue> element= GetCallArg(argv, 0); in Has() local
234 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in GetIndexOf() local
255 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in GetLastIndexOf() local
276 JSHandle<JSTaggedValue> element = GetCallArg(argv, 1); in Set() local
409 JSHandle<JSTaggedValue> element = GetCallArg(argv, 0); in Remove() local
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DtaggedTemplateExpression.cpp70 for (const auto *element : quasi_->Expressions()) { in Compile() local
DtemplateLiteral.cpp66 const ir::Expression *element = *expressionIt; in Compile() local
/arkcompiler/runtime_core/assembler/
Dannotation.cpp251 void AnnotationData::SetOrAddElementByIndex(size_t ele_idx, AnnotationElement &&element) in SetOrAddElementByIndex()
Dmeta.h211 …void SetOrAddAnnotationElementByIndex(size_t anno_idx, size_t ele_idx, AnnotationElement &&element) in SetOrAddAnnotationElementByIndex()
369 void AddElement(AnnotationElement &&element) in AddElement()
/arkcompiler/runtime_core/libpandabase/mem/
Dmmap_mem_pool-inl.h34 auto element = free_pools_.lower_bound(size); in PopFreePool() local
433 auto element = non_object_mmaped_pools_.find(pool_addr); in RemoveFromNonObjectPoolsMap() local
440 auto element = non_object_mmaped_pools_.lower_bound(addr); in FindAddrInNonObjectPoolsMap() local
/arkcompiler/runtime_core/libpandabase/utils/
Dtype_converter.cpp87 std::ostream &operator<<(std::ostream &os, const ValueUnit &element) in operator <<()

123