Home
last modified time | relevance | path

Searched defs:rend (Results 1 – 25 of 47) sorted by relevance

12

/llvm-project/libcxx/include/__iterator/
H A Dreverse_access.h32 _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 DRangeAdapterTest.cpp30 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 Drend.pass.cpp44 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 DEnumeratedArray.h76 reverse_iterator rend() { return reverse_iterator(begin()); } in rend() function
77 const_reverse_iterator rend() const { in rend() function
H A DTinyPtrVector.h207 reverse_iterator rend() { return reverse_iterator(begin()); } in rend() function
213 const_reverse_iterator rend() const { in rend() function
H A DMapVector.h76 reverse_iterator rend() { return Vector.rend(); } in rend() function
77 const_reverse_iterator rend() const { return Vector.rend(); } in rend() function
H A DSetVector.h133 reverse_iterator rend() { in rend() function
138 const_reverse_iterator rend() const { in rend() function
H A Dsimple_ilist.h133 reverse_iterator rend() { return reverse_iterator(Sentinel); } in rend() function
134 const_reverse_iterator rend() const { in rend() function
H A DAllocatorList.h166 reverse_iterator rend() { return reverse_iterator(List.rend()); } in rend() function
170 const_reverse_iterator rend() const { in rend() function
H A DArrayRef.h157 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 Dbegin-end.adl.pass.cpp32 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 Dloop-convert-reverse.cpp69 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 Duse-ranges.cpp63 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 DTrace.h92 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 Darray.h67 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 Dcontainers.h126 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 DBumpVector.h109 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 Dfixedvector.h89 LIBC_INLINE constexpr reverse_iterator rend() { return store.rend(); } rend() function
/llvm-project/libcxx/test/support/
H A Dnasty_containers.h64 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 DDWARFDie.h475 inline std::reverse_iterator<DWARFDie::iterator> DWARFDie::rend() const { rend() function
/llvm-project/lld/MachO/
H A DSymbols.cpp71 for (auto it = isec->symbols.rbegin(), rend = isec->symbols.rend(); in Defined() local
/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyUtil.h168 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 DBasicBlock.h456 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 DASTVector.h105 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 DArgList.h195 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

12