Home
last modified time | relevance | path

Searched refs:rbegin (Results 101 - 125 of 595) sorted by relevance

12345678910>>...24

/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dfixed_array.h306 // FixedArray::rbegin()
309 reverse_iterator rbegin() { return reverse_iterator(end()); } in rbegin() function in absl::FixedArray
311 // Overload of FixedArray::rbegin() to return a const reverse iterator from
313 const_reverse_iterator rbegin() const { in rbegin() function in absl::FixedArray
320 const_reverse_iterator crbegin() const { return rbegin(); } in crbegin()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_height_offset_calculator.h38 endIndex_ = itemPosition.rbegin()->first; in ListHeightOffsetCalculator()
39 float itemsSize = itemPosition.rbegin()->second.endPos - itemPosition.begin()->second.startPos + space; in ListHeightOffsetCalculator()
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/
H A Dref_uri.h295 for (auto it = segments_.rbegin(); it != segments_.rend(); ++it) { in ToString()
415 BASE_NS::vector<Node> rev { segments_.rbegin(), segments_.rend() }; in ParsePath()
/third_party/mesa3d/src/amd/compiler/
H A Daco_util.h103 constexpr reverse_iterator rbegin() noexcept { return reverse_iterator(end()); }
108 constexpr const_reverse_iterator rbegin() const noexcept
127 * \return rbegin()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr.h176 reverse_iterator rbegin() { return m_instructions.rbegin(); } in rbegin() function in r600::Block
/third_party/node/src/
H A Dnode_sockaddr-inl.h207 auto it = list_.rbegin(); in CheckExpired()
212 it = list_.rbegin(); in CheckExpired()
/third_party/node/deps/v8/src/compiler/
H A Dschedule.h110 reverse_iterator rbegin() { return nodes_.rbegin(); } in rbegin() function in v8::internal::compiler::final
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DLivePhysRegs.cpp249 for (const MachineInstr &MI : make_range(MBB.rbegin(), MBB.rend())) in computeLiveIns()
285 for (MachineInstr &MI : make_range(MBB.rbegin(), MBB.rend())) { in recomputeLivenessFlags()
/third_party/skia/third_party/externals/spirv-tools/source/
H A Dcfa.h192 for (auto b = postorder.rbegin() + 1; b != postorder.rend(); ++b) { in CalculateDominators()
320 std::vector<BB*> reversed_blocks(ordered_blocks.rbegin(), in ComputeAugmentedCFG()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Dcfa.h192 for (auto b = postorder.rbegin() + 1; b != postorder.rend(); ++b) { in CalculateDominators()
320 std::vector<BB*> reversed_blocks(ordered_blocks.rbegin(), in ComputeAugmentedCFG()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDie.h281 std::reverse_iterator<iterator> rbegin() const;
432 assert(!Die.isNULL() && "Decrementing rbegin"); in operator --()
463 inline std::reverse_iterator<DWARFDie::iterator> DWARFDie::rbegin() const { in rbegin() function in llvm::DWARFDie
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp307 for (BasicBlock::reverse_iterator RBI = Pred0->rbegin(), RBE = Pred0->rend(); in mergeStores()
339 RBI = Pred0->rbegin(); in mergeStores()
/third_party/spirv-tools/source/opt/
H A Dcode_sink.cpp41 for (auto inst = bb->rbegin(); inst != bb->rend(); ++inst) { in SinkInstructionsInBB()
43 inst = bb->rbegin(); in SinkInstructionsInBB()
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeFilePath.cpp129 *this = join(std::vector<std::string>(reverseNormalizedComponents.rbegin(), reverseNormalizedComponents.rend())); in normalize()
290 for (std::vector<std::string>::const_reverse_iterator parentIter = createPaths.rbegin(); parentIter != createPaths.rend(); parentIter++) in createDirectoryAndParents()
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dlazy_for_each_builder.cpp77 if (!cachedItems_.empty() && index <= static_cast<size_t>(cachedItems_.rbegin()->first)) { in OnDataAdded()
96 if (!cachedItems_.empty() && index <= static_cast<size_t>(cachedItems_.rbegin()->first)) { in OnDataBulkAdded()
119 if (index <= static_cast<size_t>(cachedItems_.rbegin()->first)) { in OnDataDeleted()
152 if (index <= static_cast<size_t>(cachedItems_.rbegin()->first)) { in OnDataBulkDeleted()
199 if (static_cast<size_t>(cachedItems_.rbegin()->first) < index) { in OnDataBulkChanged()
485 for (int32_t i = indexChangedMap.rbegin()->first + 1; i < index; i++) { in CollectIndexChangedCount()
/third_party/gn/src/base/containers/
H A Dflat_tree.h200 reverse_iterator rbegin();
201 const_reverse_iterator rbegin() const;
643 auto flat_tree<Key, Value, GetKeyFromValue, KeyCompare>::rbegin()
645 return impl_.body_.rbegin();
649 auto flat_tree<Key, Value, GetKeyFromValue, KeyCompare>::rbegin() const
651 return impl_.body_.rbegin();
/foundation/arkui/ace_engine/frameworks/core/components_v2/grid/
H A Drender_grid_scroll.cpp1137 auto lastRow = gridMatrix_.rbegin()->second; in CalculateWholeSize()
1139 currentItemCount = lastRow.rbegin()->second; in CalculateWholeSize()
1433 itemMain = gridMatrix_.rbegin()->first; in BuildItemsBackwardByRange()
1434 itemCross = gridMatrix_.rbegin()->second.rbegin()->first; in BuildItemsBackwardByRange()
1444 int32_t lastCross = gridMatrix_.rbegin()->second.rbegin()->first; in BuildItemsBackwardByRange()
1458 itemMain = gridMatrix_.rbegin()->first; in BuildItemsBackwardByRange()
1650 auto currentEndItemCount = *showItem_.rbegin(); in OnPaintFinish()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/
H A Dswiper_layout_algorithm.cpp231 int32_t endIndex = std::min(GetLoopIndex(itemPositionInAnimation_.rbegin()->first), realTotalCount_ - 1); in Measure()
286 auto lastWrapper = layoutWrapper->GetOrCreateChildByIndex(GetLoopIndex(itemPosition_.rbegin()->first)); in CaptureMeasure()
459 endPos = itemPosition_.rbegin()->second.endPos; in MeasureSwiper()
487 for (auto it = prevItemPosition_.rbegin(); it != prevItemPosition_.rend(); ++it) { in MeasureSwiper()
615 measureIndex == GetLoopIndex(itemPosition_.rbegin()->first)) { in LayoutBackwardItem()
792 for (auto pos = itemPosition_.rbegin(); pos != itemPosition_.rend(); ++pos) { in SetInactive()
812 for (auto pos = itemPosition_.rbegin(); pos != itemPosition_.rend(); ++pos) { in SetInactiveOnBackward()
1052 auto rightPosition = itemPosition_.rbegin()->second.endPos + spaceWidth_; in CaptureLayout()
1068 rightPosition = contentMainSize_ - itemPosition_.rbegin()->second.endPos - spaceWidth_ - leftCaptureSize; in CaptureLayout()
/foundation/arkui/ace_engine/frameworks/core/components/text_span/
H A Drosen_render_text_span.cpp115 touchRegions.try_emplace(int32_t(touchRegions.rbegin()->first + spanData.length()), markersMap); in UpdateTouchRegions()
/foundation/arkui/ace_engine/frameworks/core/common/
H A Dcontainer_scope.cpp44 return *containerSet_.rbegin(); in DefaultId()
/foundation/graphic/graphic_3d/lume/metaobject/src/loaders/
H A Dcsv_parser.cpp49 sv.remove_suffix(std::distance(std::find_if(sv.rbegin(), sv.rend(), nspace).base(), sv.end())); in Trimmed()
/foundation/graphic/graphic_3d/lume/LumeRender/src/util/
H A Dstring_util.h63 size_t(std::distance(std::find_if(string.rbegin(), string.rend(), NotSpace).base(), string.end())); in RTrim()
/foundation/multimedia/audio_framework/frameworks/native/audioutils/src/
H A Dvolume_ramp.cpp123 auto highPoint = curvePoints_.rbegin(); in FindRampVolume()
/foundation/graphic/graphic_3d/lume/LumeEngine/src/util/
H A Dstring_util.h64 size_t(std::distance(std::find_if(string.rbegin(), string.rend(), NotSpace).base(), string.end())); in RTrim()
/foundation/graphic/graphic_2d/rosen/modules/frame_analyzer/export/
H A Dring_queue.h166 RevertIter rbegin() in rbegin() function in OHOS::Rosen::RingQueue

Completed in 20 milliseconds

12345678910>>...24