/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
H A D | g1_pause_tracker.cpp | 81 auto rend = pauses_.crend(); in MinDelayBeforePauseInMicros() local 82 for (auto it = pauses_.crbegin(); it != rend; ++it) { in MinDelayBeforePauseInMicros()
|
/arkcompiler/toolchain/websocket/ |
H A D | string_utils.h | 32 str.erase(std::find_if(str.rbegin(), str.rend(), [](unsigned char ch) { return !std::isspace(ch); }).base(), in TrimRight()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | ring_buffer.h | 297 constexpr reverse_iterator rend() noexcept // NOLINT(readability-identifier-naming) 315 constexpr const_reverse_iterator rend() const noexcept // NOLINT(readability-identifier-naming) 333 return rend();
|
H A D | span.h | 115 ReverseIterator rend() in rend() function in panda::Span 120 ConstReverseIterator rend() const in rend() function in panda::Span
|
H A D | small_vector.h | 380 auto rend() const in rend() function in panda::SmallVector 384 auto rend() in rend() function in panda::SmallVector
|
H A D | list.h | 554 ReverseIterator rend() in rend() function in DList 560 ConstReverseIterator rend() const in rend() function in DList
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | ring_buffer.h | 281 constexpr reverse_iterator rend() noexcept // NOLINT(readability-identifier-naming) 295 constexpr const_reverse_iterator rend() const noexcept // NOLINT(readability-identifier-naming) 309 return rend();
|
H A D | span.h | 114 ReverseIterator rend() in rend() function in ark::Span 119 ConstReverseIterator rend() const in rend() function in ark::Span
|
H A D | small_vector.h | 384 auto rend() const in rend() function in ark::SmallVector 388 auto rend() in rend() function in ark::SmallVector
|
H A D | list.h | 536 ReverseIterator rend() in rend() function in DList 542 ConstReverseIterator rend() const in rend() function in DList
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | list_test.cpp | 197 for (; it3 != list1.rend() && it4 != list2.rend(); it3++, it4++) { in IsEqual() 205 for (; it4 != list2.rend(); ++it3, ++it4) { in IsEqual()
|
H A D | small_vector_test.cpp | 113 auto it = std::find(vector.rbegin(), vector.rend(), 30U); in CheckReverseIteration() 114 ASSERT_NE(it, vector.rend()); in CheckReverseIteration() 117 it = std::find(vector.rbegin(), vector.rend(), 50U); in CheckReverseIteration() 118 ASSERT_EQ(it, vector.rend()); in CheckReverseIteration()
|
H A D | ring_buffer_test.cpp | 72 for (auto it = buffer.rbegin(); it != buffer.rend(); ++it) { in TEST()
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | small_vector_test.cpp | 116 auto it = std::find(vector.rbegin(), vector.rend(), 30); in TestVectorFind() 117 ASSERT_NE(it, vector.rend()); in TestVectorFind() 121 it = std::find(vector.rbegin(), vector.rend(), 50); in TestVectorFind() 122 ASSERT_EQ(it, vector.rend()); in TestVectorFind()
|
H A D | list_test.cpp | 194 for (; it3 != list1.rend(); it3++, it4++) { in IsEqual() 202 for (; it4 != list2.rend(); ++it3, ++it4) { in IsEqual()
|
H A D | ring_buffer_test.cpp | 72 for (auto it = buffer.rbegin(); it != buffer.rend(); ++it) { in TEST()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/utils/ |
H A D | ref_vector.h | 154 reverse_iterator rend() noexcept 156 return reverse_iterator(base.rend()); 159 const_reverse_iterator rend() const noexcept 161 return const_reverse_iterator(base.rend());
|
/arkcompiler/ets_frontend/ets2panda/compiler/debugger/ |
H A D | debuginfoDumper.cpp | 51 for (elem = array.rbegin(); elem != array.rend(); ++elem) { in WrapArray() 54 (std::next(elem) == array.rend()) ? ss_ << "" : ss_ << ","; in WrapArray()
|
/arkcompiler/ets_frontend/es2panda/compiler/debugger/ |
H A D | debuginfoDumper.cpp | 51 for (elem = array.rbegin(); elem != array.rend(); ++elem) { in WrapArray() 54 (std::next(elem) == array.rend()) ? ss_ << "" : ss_ << ","; in WrapArray()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | string_utils.h | 106 return std::equal(end.rbegin(), end.rend(), str.rbegin()); in EndsWith()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | lse.cpp | 317 auto aliveIt = std::find(insts->rbegin(), insts->rend(), alive); in ProcessBackedges() 320 auto it = std::find_if(aliveIt, insts->rend(), [](auto *inst) { return inst->IsStore(); }); in ProcessBackedges() 321 if (it != insts->rend() && (*it)->IsDominate(alive)) { in ProcessBackedges() 380 for (auto loopIt = rpoLoops.rbegin(); loopIt != rpoLoops.rend(); loopIt++) { in FinalizeLoops() 1040 auto blockIter = std::find(rpo.rbegin(), rpo.rend(), alive->GetBasicBlock()); in ApplyHoistToCandidate() 1041 ASSERT(blockIter != rpo.rend()); in ApplyHoistToCandidate()
|
H A D | memory_coalescing.cpp | 347 auto boundIt = std::find(candidates_.rbegin(), candidates_.rend(), bound); in FindUpperInsertAfter() 348 ASSERT(boundIt != candidates_.rend()); in FindUpperInsertAfter() 495 for (auto iter = candidates_.rbegin(); iter != candidates_.rend(); iter++) { in HandleArrayAccessI() 552 for (auto iter = candidates_.rbegin(); iter != candidates_.rend(); iter++) { in HandleArrayAccess() 593 for (auto iter = candidates_.rbegin(); iter != candidates_.rend(); iter++) { in CheckForObjectCandidates() 687 candidates_.insert(std::find_if(candidates_.rbegin(), candidates_.rend(), in InsertPair()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | panda_vm.cpp | 158 for (rit = footprintToClass.rbegin(); rit != footprintToClass.rend(); ++rit) { in GetClassesFootprint()
|
/arkcompiler/ets_frontend/ets2panda/evaluate/debugInfoDeserialization/ |
H A D | inheritanceResolution.cpp | 122 for (auto it = chainEntryList.rbegin(); it != chainEntryList.rend(); ++it) { in ResolveInheritanceChainImpl()
|
/arkcompiler/ets_frontend/ets2panda/evaluate/ |
H A D | scopedDebugInfoPlugin.cpp | 156 auto lastStatementIter = std::find(statementsList.rbegin(), statementsList.rend(), lastStatement); in InsertReturnStatement() 157 ASSERT(lastStatementIter != statementsList.rend()); in InsertReturnStatement()
|