/llvm-project/libcxx/include/__iterator/ |
H A D | reverse_access.h | 32 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 reverse_iterator<_Tp*> rend(_Tp (&__array)[_Np]) { rend() function 42 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 reverse_iterator<const _Ep*> rend(initializer_list<_Ep> __il) { rend() function [all...] |
/llvm-project/llvm/unittests/ADT/ |
H A D | RangeAdapterTest.cpp | 30 reverse_iterator rend() { return Vec.rend(); } in rend() function in __anonb4afe4b50111::ReverseOnlyVector 32 const_reverse_iterator rend() const { return Vec.rend(); } in rend() function in __anonb4afe4b50111::ReverseOnlyVector 50 reverse_iterator rend() const { return Vec.rend(); } in rend() function in __anonb4afe4b50111::BidirectionalVector 71 reverse_iterator rend() { return Vec.rend(); } in rend() function in __anonb4afe4b50111::BidirectionalVectorConsts 73 const_reverse_iterator rend() const { return Vec.rend(); } in rend() function in __anonb4afe4b50111::BidirectionalVectorConsts 117 reverse_iterator rend() const { return reverse_iterator(V.begin()); } in rend() function in __anonb4afe4b50111::CustomIteratorVector
|
/llvm-project/libcxx/test/std/ranges/range.access/ |
H A D | rend.pass.cpp | 44 constexpr const int* rend() const { return &x; } in rend() function 129 constexpr int* rend() { return &x; } in rend() function 138 constexpr int* rend() const { return &globalBuff[0]; } in rend() function 147 constexpr const int* rend() const { return &x; } in rend() function 161 constexpr const Empty* rend() const { return &x; } in rend() function 191 friend constexpr const int* rend(REndFunction const& bf) { return &bf.x; } in rend() function 234 friend constexpr int* rend(REndFunctionByValue) { return &globalBuff[1]; } in rend() function 240 friend constexpr int* rend(REndFunctionEnabledBorrowing) { return &globalBuff[2]; } in rend() function 248 friend constexpr const Empty* rend(REndFunctionReturnsEmptyPtr const& bf) { return &bf.x; } in rend() function 253 int rend; member [all …]
|
/llvm-project/llvm/include/llvm/ADT/ |
H A D | EnumeratedArray.h | 76 reverse_iterator rend() { return reverse_iterator(begin()); } in rend() function 77 const_reverse_iterator rend() const { in rend() function
|
H A D | TinyPtrVector.h | 207 reverse_iterator rend() { return reverse_iterator(begin()); } in rend() function 213 const_reverse_iterator rend() const { in rend() function
|
H A D | MapVector.h | 76 reverse_iterator rend() { return Vector.rend(); } in rend() function 77 const_reverse_iterator rend() const { return Vector.rend(); } in rend() function
|
H A D | SetVector.h | 133 reverse_iterator rend() { in rend() function 138 const_reverse_iterator rend() const { in rend() function
|
H A D | simple_ilist.h | 133 reverse_iterator rend() { return reverse_iterator(Sentinel); } in rend() function 134 const_reverse_iterator rend() const { in rend() function
|
H A D | AllocatorList.h | 166 reverse_iterator rend() { return reverse_iterator(List.rend()); } in rend() function 170 const_reverse_iterator rend() const { in rend() function
|
H A D | ArrayRef.h | 157 reverse_iterator rend() const { return reverse_iterator(begin()); } rend() function 360 reverse_iterator rend() const { return reverse_iterator(begin()); } rend() function
|
/llvm-project/libcxx/test/std/iterators/iterator.range/ |
H A D | begin-end.adl.pass.cpp | 32 constexpr int* rend() const { return a_ + 3; } in rend() function 42 friend constexpr int rend(ContainerHijacker&) { return 42; } in rend() function 44 friend constexpr int rend(const ContainerHijacker&) { return 42; } in rend() function
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
H A D | loop-convert-reverse.cpp | 69 constexpr auto rend(C& c) -> decltype(c.rend()) { return c.rend(); } in rend() function 73 constexpr auto rend(const C& c) -> decltype(c.rend()) { return c.rend(); } in rend() function
|
H A D | use-ranges.cpp | 63 template <typename Container> constexpr auto rend(const Container &Cont) { rend() function 67 template <typename Container> constexpr auto rend(Container &Cont) { rend() function
|
/llvm-project/llvm/include/llvm/Analysis/ |
H A D | Trace.h | 92 reverse_iterator rend () { return BasicBlocks.rend(); } in rend() function 93 const_reverse_iterator rend () const { return BasicBlocks.rend(); } in rend() function
|
/llvm-project/libc/src/__support/CPP/ |
H A D | array.h | 67 LIBC_INLINE constexpr reverse_iterator rend() { rend() function 70 LIBC_INLINE constexpr const_reverse_iterator rend() const { rend() function
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/use-auto/ |
H A D | containers.h | 126 reverse_iterator rend() { return _rend; } in rend() function 129 const_reverse_iterator rend() const { return _rend; } in rend() function
|
/llvm-project/clang/include/clang/Analysis/Support/ |
H A D | BumpVector.h | 109 reverse_iterator rend() { return reverse_iterator(begin()); } in rend() function 110 const_reverse_iterator rend() const { in rend() function
|
/llvm-project/libc/src/__support/ |
H A D | fixedvector.h | 89 LIBC_INLINE constexpr reverse_iterator rend() { return store.rend(); } rend() function
|
/llvm-project/libcxx/test/support/ |
H A D | nasty_containers.h | 64 reverse_iterator rend() TEST_NOEXCEPT { return v_.rend(); } in rend() function 65 const_reverse_iterator rend() const TEST_NOEXCEPT { return v_.rend(); } in rend() function 203 reverse_iterator rend() TEST_NOEXCEPT { return l_.rend(); } in rend() function 204 const_reverse_iterator rend() const TEST_NOEXCEPT { return l_.rend(); } in rend() function
|
/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDie.h | 475 inline std::reverse_iterator<DWARFDie::iterator> DWARFDie::rend() const { rend() function
|
/llvm-project/lld/MachO/ |
H A D | Symbols.cpp | 71 for (auto it = isec->symbols.rbegin(), rend = isec->symbols.rend(); in Defined() local
|
/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyUtil.h | 168 reverse_iterator rend() { return reverse_iterator(begin()); } in rend() function 174 const_reverse_iterator rend() const { in rend() function
|
/llvm-project/llvm/include/llvm/IR/ |
H A D | BasicBlock.h | 456 inline reverse_iterator rend () { return InstList.rend(); } rend() function 457 inline const_reverse_iterator rend () const { return InstList.rend(); } rend() function
|
/llvm-project/clang/include/clang/AST/ |
H A D | ASTVector.h | 105 reverse_iterator rend() { return reverse_iterator(begin()); } in rend() function 106 const_reverse_iterator rend() const { return const_reverse_iterator(begin());} in rend() function
|
/llvm-project/llvm/include/llvm/Option/ |
H A D | ArgList.h | 195 reverse_iterator rend() { return {Args.rend(), Args.rend()}; } in rend() function 201 const_reverse_iterator rend() const { return {Args.rend(), Args.rend()}; } in rend() function
|