Home
last modified time | relevance | path

Searched refs:cbegin (Results 1 - 25 of 71) sorted by relevance

123

/arkcompiler/runtime_core/static_core/verification/util/
H A Dset_operations.h40 std::array<IterType, sizeof...(Args)> iters {args.cbegin()...}; in SetIntersection()
77 result.insert(rhs.cbegin(), rhs.cend()); in SetUnion()
114 result.insert(c.cbegin(), c.cend()); in ToSet()
H A Dlazy.h95 return [cend = c.cend(), it = c.cbegin()]() mutable -> std::optional<std::decay_t<decltype(*(c.cbegin()))>> {
117 return [cend = c.cend(), it = c.cbegin()]() mutable -> std::optional<decltype(std::cref(*(c.cbegin())))> {
H A Drange.h103 Iterator cbegin() const // NOLINT(readability-identifier-naming) in cbegin() function in ark::verifier::Range
/arkcompiler/ets_frontend/ets2panda/ir/base/
H A DclassDefinition.cpp38 return std::any_of(body_.cbegin(), body_.cend(), [](auto *element) { in HasPrivateMethod()
45 return std::any_of(body_.cbegin(), body_.cend(), [](auto *element) { in HasComputedInstanceField()
53 return std::any_of(body_.cbegin(), body_.cend(), [&name](auto *element) {
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_map.cpp100 auto it = std::find(codegen_reg_map_.cbegin(), codegen_reg_map_.cend(), codegen_reg); in CodegenToRegallocReg()
102 return std::distance(codegen_reg_map_.cbegin(), it); in CodegenToRegallocReg()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_map.cpp104 auto it = std::find(codegenRegMap_.cbegin(), codegenRegMap_.cend(), codegenReg); in CodegenToRegallocReg()
106 return std::distance(codegenRegMap_.cbegin(), it); in CodegenToRegallocReg()
H A Dreg_alloc_linear_scan.cpp372 auto it = std::max_element(regsUsePositions_.cbegin(), regsUsePositions_.cend()); in GetFreeRegister()
374 return (*it >= currentInterval->GetEnd()) ? std::distance(regsUsePositions_.cbegin(), it) : INVALID_REG; in GetFreeRegister()
421 auto it = std::max_element(regsUsePositions_.cbegin(), regsUsePositions_.cend()); in GetBlockedRegister()
422 auto reg = std::distance(regsUsePositions_.cbegin(), it); in GetBlockedRegister()
/arkcompiler/runtime_core/static_core/verification/cache/
H A Dresults_cache.cpp87 impl_ = new (mem::AllocatorAdapter<Impl>().allocate(1)) Impl {filename, data.cbegin(), data.cend()}; in Initialize()
100 data.insert(data.begin(), set.cbegin(), set.cend()); in Destroy()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dstring_utils.h115 return std::equal(start.cbegin(), start.cend(), str.cbegin()); in StartsWith()
H A Dptr_list_ref.h248 const_iterator cbegin() const in cbegin() function in maple::PtrListRef
474 if (where == this->cbegin() && where == this->rbegin().base()) { in erase()
477 } else if (where == this->cbegin()) { in erase()
/arkcompiler/runtime_core/libpandabase/tests/
H A Darena_allocator_test.cpp318 for (auto it = deq.cbegin(); it != deq.cend(); ++it, ++i) { in HWTEST_F()
347 auto it = deq.cbegin(); in HWTEST_F()
367 for (auto t_it = deq.cbegin(); t_it != deq.cend(); ++t_it, ++i) { in HWTEST_F()
397 for (auto t_it = st.cbegin(); t_it != st.cend(); ++t_it, ++i) { in HWTEST_F()
410 for (auto t_it = st.cbegin(); t_it != st.cend(); ++t_it, ++i) { in HWTEST_F()
419 auto it = st.cbegin(); in HWTEST_F()
436 for (auto t_it = st.cbegin(); t_it != st.cend(); ++t_it, ++i) { in HWTEST_F()
H A Dring_buffer_test.cpp30 ASSERT_EQ(buffer.cbegin(), buffer.cend()); in TEST()
/arkcompiler/runtime_core/static_core/runtime/interpreter/
H A Druntime_interface.cpp37 PandaString pname(name.cbegin(), name.cend()); in CreateObject()
/arkcompiler/runtime_core/tests/fuzztest/span_fuzzer/
H A Dspan_fuzzer.cpp33 spanInstance.cbegin(); in SpanFuzzTest()
/arkcompiler/runtime_core/static_core/libllvmbackend/
H A Dtarget_machine_builder.cpp44 features_ = llvm::join(features.cbegin(), features.cend(), ","); in SetFeatures()
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H A Darena_allocator_test.cpp338 for (auto it = deq.cbegin(); it != deq.cend(); ++it, ++i) { in TEST_F()
367 auto it = deq.cbegin(); in TEST_F()
387 for (auto tIt = deq.cbegin(); tIt != deq.cend(); ++tIt, ++i) { in TEST_F()
439 auto it = st.cbegin(); in TEST_F()
456 for (auto tIt = st.cbegin(); tIt != st.cend(); ++tIt, ++i) { in TEST_F()
/arkcompiler/runtime_core/libpandabase/utils/
H A Dspan.h80 ConstIterator cbegin() const in cbegin() function in panda::Span
127 return ConstReverseIterator(cbegin()); in crend()
/arkcompiler/runtime_core/static_core/assembler/
H A Dassembly-function.h179 return std::any_of(ins.cbegin(), ins.cend(), [](const Ins &insn) { return insn.CanThrow(); }); in CanThrow()
184 return std::any_of(ins.cbegin(), ins.cend(), [](const Ins &insn) { return insn.HasDebugInfo(); }); in HasDebugInfo()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dspan.h79 ConstIterator cbegin() const in cbegin() function in ark::Span
126 return ConstReverseIterator(cbegin()); in crend()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/inline_ir/
H A Dmark_always_inline.cpp86 std::find(EXCLUSIONS.cbegin(), EXCLUSIONS.cend(), calledFunction->getName()) != EXCLUSIONS.cend()) { in InlineCallTree()
/arkcompiler/runtime_core/assembler/
H A Dassembly-function.h206 return std::any_of(ins.cbegin(), ins.cend(), [](const Ins &insn) { return insn.CanThrow(); }); in CanThrow()
211 return std::any_of(ins.cbegin(), ins.cend(), [](const Ins &insn) { return insn.HasDebugInfo(); }); in HasDebugInfo()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Dcg.h102 (void)bitMapWords.insert(bitMapWords.cbegin(), patternWords.cbegin(), patternWords.cend()); in GCTIBKey()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/
H A Dark_inlining.cpp87 if (std::find_if(EXCLUSIONS.cbegin(), EXCLUSIONS.cend(), [demCalleeName](StringRef pat) { in CheckShouldInline()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
H A Dg1_pause_tracker.cpp66 for (auto it = pauses_.cbegin(); it != end; ++it) { in CalculateIntervalPauseInMicros()
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H A DpackageImplicitImport.cpp79 std::any_of(packagePrograms.cbegin(), packagePrograms.cend(), [&stmt](const parser::Program *const prog) { in ValidateImportDeclarationsSourcePath()

Completed in 15 milliseconds

123