/llvm-project/libcxx/test/std/iterators/iterator.primitives/range.iter.ops/range.iter.ops.distance/ |
H A D | iterator_sentinel.pass.cpp | 30 auto last = Sent(It(a)); in test_unsized() local 39 auto last = Sent(It(a + 3)); test_unsized() local 68 auto last = Sent(It(a)); test_sized() local 91 auto last = Sent(It(a)); test_sized() local 100 auto last = Sent(It(a + 3)); test_sized() local 146 StrideCounter last(a+3, nullptr); test_stride_counting() local 155 SizedStrideCounter last(a+3, nullptr); test_stride_counting() local 209 Sent last = Sent(It(a + 3)); test() local [all...] |
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.sort/stable.sort/ |
H A D | ranges.stable.sort.pass.cpp | 150 auto last = std::ranges::stable_sort(in.begin(), in.end()); in test() local 157 auto last = std::ranges::stable_sort(in); in test() local 180 auto last = std::ranges::stable_sort(in.begin(), in.end(), std::greater{}); in test() local 187 auto last = std::ranges::stable_sort(in, std::greater{}); in test() local 201 auto last = std::ranges::stable_sort(in.begin(), in.end(), {}, &A::a); in test() local 208 auto last = std::ranges::stable_sort(in, {}, &A::a); in test() local 227 auto last = std::ranges::stable_sort(in.begin(), in.end(), &S::comparator, &S::projection); in test() local 234 auto last = std::ranges::stable_sort(in, &S::comparator, &S::projection); in test() local
|
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.sort/sort/ |
H A D | ranges.sort.pass.cpp | 126 auto last = std::ranges::sort(in.begin(), in.end(), std::ranges::greater{}); in test() local 133 auto last = std::ranges::sort(in, std::ranges::greater{}); in test() local 147 auto last = std::ranges::sort(in.begin(), in.end(), {}, &A::a); in test() local 154 auto last = std::ranges::sort(in, {}, &A::a); in test() local 173 auto last = std::ranges::sort(in.begin(), in.end(), &S::comparator, &S::projection); in test() local 180 auto last = std::ranges::sort(in, &S::comparator, &S::projection); in test() local
|
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/pop.heap/ |
H A D | ranges_pop_heap.pass.cpp | 61 verify_heap(const std::array<T,N> & heapified,Iter last,std::array<T,N> expected) verify_heap() argument 130 auto last = std::ranges::pop_heap(in.begin(), in.end(), comp); test() local 138 auto last = std::ranges::pop_heap(in, comp); test() local 155 auto last = std::ranges::pop_heap(in.begin(), in.end(), {}, &A::a); test() local 161 auto last = std::ranges::pop_heap(in, {}, &A::a); test() local 181 auto last = std::ranges::pop_heap(in.begin(), in.end(), &A::comparator, &A::projection); test() local 187 auto last = std::ranges::pop_heap(in, &A::comparator, &A::projection); test() local [all...] |
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/push.heap/ |
H A D | ranges_push_heap.pass.cpp | 61 verify_heap(const std::array<T,N> & heapified,Iter last,std::array<T,N> expected) verify_heap() argument 135 auto last = std::ranges::push_heap(in.begin(), in.end(), std::ranges::greater{}); test() local 142 auto last = std::ranges::push_heap(in, std::ranges::greater{}); test() local 158 auto last = std::ranges::push_heap(in.begin(), in.end(), {}, &A::a); test() local 164 auto last = std::ranges::push_heap(in, {}, &A::a); test() local 184 auto last = std::ranges::push_heap(in.begin(), in.end(), &A::comparator, &A::projection); test() local 190 auto last = std::ranges::push_heap(in, &A::comparator, &A::projection); test() local [all...] |
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/make.heap/ |
H A D | ranges_make_heap.pass.cpp | 61 verify_heap(const std::array<T,N> & heapified,Iter last,std::array<T,N> expected) verify_heap() argument 133 auto last = std::ranges::make_heap(in.begin(), in.end(), std::ranges::greater{}); test() local 140 auto last = std::ranges::make_heap(in, std::ranges::greater{}); test() local 156 auto last = std::ranges::make_heap(in.begin(), in.end(), {}, &A::a); test() local 162 auto last = std::ranges::make_heap(in, {}, &A::a); test() local 182 auto last = std::ranges::make_heap(in.begin(), in.end(), &A::comparator, &A::projection); test() local 188 auto last = std::ranges::make_heap(in, &A::comparator, &A::projection); test() local [all...] |
/llvm-project/libcxx/test/libcxx/algorithms/alg.modifying.operations/ |
H A D | copy_move_unwrap_reverse.pass.cpp | 67 test_one<InIter, SentWrapper, OutIter, W1, W2>([](auto first, auto last, auto out, std::size_t) { in test_copy_and_move() argument 70 test_one<InIter, SentWrapper, OutIter, W1, W2>([](auto first, auto last, auto out, std::size_t n) { in test_copy_and_move() argument 76 test_one<InIter, SentWrapper, OutIter, W1, W2>([](auto first, auto last, auto out, std::size_t) { in test_copy_and_move() argument 79 test_one<InIter, SentWrapper, OutIter, W1, W2>([](auto first, auto last, auto out, std::size_t n) { in test_copy_and_move() argument 85 test_one<InIter, SentWrapper, OutIter, W1, W2>([](auto first, auto last, auto out, std::size_t) { in test_copy_and_move() argument 88 __anona350e1d30802(auto first, auto last, auto out, std::size_t n) test_copy_and_move() argument 94 __anona350e1d30a02(auto first, auto last, auto out, std::size_t) test_copy_and_move() argument 97 __anona350e1d30b02(auto first, auto last, auto out, std::size_t n) test_copy_and_move() argument [all...] |
H A D | copy_move_trivial.pass.cpp | 165 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t) { in test_copy_and_move() 168 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t n) { in test_copy_and_move() 174 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t) { in test_copy_and_move() 177 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t n) { in test_copy_and_move() 183 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t) { in test_copy_and_move() 186 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t n) { in test_copy_and_move() 192 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t) { in test_copy_and_move() 195 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t n) { in test_copy_and_move() 261 check([](auto first, auto last, auto out, std::size_t) { in test_different_signedness() 264 check([](auto first, auto last, auto out, std::size_t n) { in test_different_signedness() [all …]
|
H A D | copy_move_nontrivial.pass.cpp | 211 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t) { in test_copy() 214 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t n) { in test_copy() 223 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t) { in test_copy() 226 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t n) { in test_copy() 237 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t) { in test_move() 240 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t n) { in test_move() 246 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t) { in test_move() 249 test_one<InIter, SentWrapper, OutIter>([](auto first, auto last, auto out, std::size_t n) { in test_move()
|
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.nth.element/ |
H A D | ranges_nth_element.pass.cpp | 67 …fy_nth(const std::array<T, N>& partially_sorted, std::size_t nth_index, Iter last, T expected_nth)… in verify_nth() 195 auto last = std::ranges::nth_element(in.begin(), in.begin() + 1, in.end(), comp); in test() local 202 auto last = std::ranges::nth_element(in, in.begin() + 1, comp); in test() local 218 auto last = std::ranges::nth_element(in.begin(), in.begin() + 1, in.end(), {}, &A::a); in test() local 225 auto last = std::ranges::nth_element(in, in.begin() + 1, {}, &A::a); in test() local 246 …auto last = std::ranges::nth_element(in.begin(), in.begin() + 1, in.end(), &S::comparator, &S::pro… in test() local 253 auto last = std::ranges::nth_element(in, in.begin() + 1, &S::comparator, &S::projection); in test() local
|
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/sort.heap/ |
H A D | ranges_sort_heap.pass.cpp | 62 verify_sorted(const std::array<T,N> & sorted,Iter last,std::array<T,N> expected) verify_sorted() argument 131 auto last = std::ranges::sort_heap(in.begin(), in.end(), comp); test() local 138 auto last = std::ranges::sort_heap(in, comp); test() local 154 auto last = std::ranges::sort_heap(in.begin(), in.end(), {}, &A::a); test() local 160 auto last = std::ranges::sort_heap(in, {}, &A::a); test() local 180 auto last = std::ranges::sort_heap(in.begin(), in.end(), &A::comparator, &A::projection); test() local 186 auto last = std::ranges::sort_heap(in, &A::comparator, &A::projection); test() local 237 auto last = v.begin() + n; test_complexity() local [all...] |
/llvm-project/lld/test/ELF/ |
H A D | ppc64-toc-restore.s | 59 .global last symbol 60 last: label
|
/llvm-project/clang/test/SemaObjCXX/ |
H A D | flexible-array.mm | 17 int last; // expected-note {{next instance variable declaration is here}} field 35 int last; // expected-note {{next instance variable declaration is here}} field
|
/llvm-project/libcxx/test/std/iterators/iterator.primitives/range.iter.ops/range.iter.ops.next/ |
H A D | iterator_sentinel.pass.cpp | 23 constexpr void check_assignable(int* first, int* last, int* expected) { in check_assignable() 31 constexpr void check_sized_sentinel(int* first, int* last, int* expected) { in check_sized_sentinel() 41 constexpr void check_sentinel(int* first, int* last, int* expected) { in check_sentinel()
|
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.sort/partial.sort/ |
H A D | ranges_partial_sort.pass.cpp | 154 auto last = std::ranges::partial_sort(b, m, in.end(), std::ranges::greater{}); in test() local 164 auto last = std::ranges::partial_sort(in, m, std::ranges::greater{}); in test() local 183 auto last = std::ranges::partial_sort(b, m, in.end(), {}, &A::a); in test() local 195 auto last = std::ranges::partial_sort(in, m, {}, &A::a); in test() local
|
/llvm-project/libcxx/test/std/iterators/iterator.primitives/range.iter.ops/range.iter.ops.advance/ |
H A D | iterator_sentinel.pass.cpp | 23 check_assignable(int * first,int * last,int * expected) check_assignable() argument 43 check_sized_sentinel(int * first,int * last,int * expected) check_sized_sentinel() argument 68 check_sentinel(int * first,int * last,int * expected) check_sentinel() argument [all...] |
/llvm-project/libc/src/__support/CPP/ |
H A D | algorithm.h | 29 find_if_not(InputIt first,InputIt last,UnaryPred q) find_if_not() argument 39 all_of(InputIt first,InputIt last,UnaryPred p) all_of() argument
|
/llvm-project/pstl/test/std/numerics/numeric.ops/ |
H A D | scan.pass.cpp | 25 exclusive_scan_serial(InputIterator first, InputIterator last, OutputIterator result, T init) in exclusive_scan_serial() 37 exclusive_scan_serial(InputIterator first, InputIterator last, OutputIterator result, T init, Binar… in exclusive_scan_serial() 50 inclusive_scan_serial(InputIterator first, InputIterator last, OutputIterator result, BinaryOperati… in inclusive_scan_serial() 62 inclusive_scan_serial(InputIterator first, InputIterator last, OutputIterator result, BinaryOperati… in inclusive_scan_serial() 78 inclusive_scan_serial(InputIterator first, InputIterator last, OutputIterator result) in inclusive_scan_serial()
|
/llvm-project/libcxx/test/std/containers/views/views.span/span.iterators/ |
H A D | rbegin.pass.cpp | 32 const typename Span::size_type last = s.size() - 1; in testConstexprSpan() local 50 const typename Span::size_type last = s.size() - 1; in testRuntimeSpan() local
|
H A D | end.pass.cpp | 32 typename Span::const_pointer last = &*(s.begin() + s.size() - 1); in testConstexprSpan() local 51 typename Span::const_pointer last = &*(s.begin() + s.size() - 1); in testRuntimeSpan() local
|
/llvm-project/libcxx/test/support/ |
H A D | charconv_test_helpers.h | 140 char* last; in fromchars_impl() local 153 char* last; in fromchars_impl() local 167 char* last; in fromchars128_impl() local 189 char* last; fromchars128_impl() local [all...] |
/llvm-project/libcxx/test/std/containers/sequences/deque/deque.modifiers/ |
H A D | erase_iter_iter.invalidation.pass.cpp | 28 typename C::iterator last = first + num; in del_at_start() local 48 typename C::iterator last = c.end(); in del_at_end() local
|
/llvm-project/libcxx/test/std/strings/basic.string/string.cons/ |
H A D | iter_alloc.pass.cpp | 27 TEST_CONSTEXPR_CXX20 void test(It first, It last) { in test() 45 TEST_CONSTEXPR_CXX20 void test(It first, It last, const Alloc& a) { in test()
|
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.min.max/ |
H A D | min_element_comp.pass.cpp | 28 test(Iter first, Iter last) in test() 65 void test_eq0(Iter first, Iter last, Pred p) in test_eq0()
|
H A D | max_element_comp.pass.cpp | 28 test(Iter first, Iter last) in test() 65 void test_eq0(Iter first, Iter last, Pred p) in test_eq0()
|