reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
921 decltype(std::begin(std::declval<RangeTs &>()))...>;
include/llvm/Analysis/LoopIterator.h136 RPOIterator beginRPO() const { 140 RPOIterator endRPO() const { return PostBlocks.rend(); } 185 LoopBlocksDFS::RPOIterator begin() const { return DFS.beginRPO(); } 186 LoopBlocksDFS::RPOIterator end() const { return DFS.endRPO(); }lib/Transforms/Utils/LoopUnroll.cpp
574 LoopBlocksDFS::RPOIterator BlockBegin = DFS.beginRPO(); 575 LoopBlocksDFS::RPOIterator BlockEnd = DFS.endRPO(); 606 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {lib/Transforms/Utils/LoopUnrollAndJam.cpp
295 LoopBlocksDFS::RPOIterator BlockBegin = DFS.beginRPO(); 296 LoopBlocksDFS::RPOIterator BlockEnd = DFS.endRPO(); 318 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {lib/Transforms/Utils/LoopUnrollPeel.cpp
479 LoopBlocksDFS::RPOIterator BlockBegin = LoopBlocks.beginRPO(); 480 LoopBlocksDFS::RPOIterator BlockEnd = LoopBlocks.endRPO(); 485 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {lib/Transforms/Utils/LoopUnrollRuntime.cpp
309 LoopBlocksDFS::RPOIterator BlockBegin = LoopBlocks.beginRPO(); 310 LoopBlocksDFS::RPOIterator BlockEnd = LoopBlocks.endRPO(); 319 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {usr/include/c++/7.4.0/bits/range_access.h
48 begin(_Container& __cont) -> decltype(__cont.begin()) 58 begin(const _Container& __cont) -> decltype(__cont.begin()) 68 end(_Container& __cont) -> decltype(__cont.end()) 78 end(const _Container& __cont) -> decltype(__cont.end())