/llvm-project/libcxx/test/std/ranges/range.adaptors/range.reverse/ |
H A D | adaptor.pass.cpp | 29 BidirRange view(buf, buf + 3); in test() local 37 BidirRange view(buf, buf + 3); in test() local 54 BidirRange view(buf, buf + 3); in test() local 62 BidirRange view(buf, buf + 3); in test() local 70 BidirRange view(buf, buf + 3); in test() local 88 BidirRange view(buf, buf + 3); in test() local 96 BidirRange view(buf, buf + 3); in test() local 104 BidirRange view(buf, buf + 3); in test() local 114 BidirRange view(buf, buf + 3); in test() local 124 BidirRange view(buf, buf + 3); in test() local [all …]
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.as.rvalue/ |
H A D | base.pass.cpp | 41 const std::ranges::as_rvalue_view<SimpleView> view(SimpleView{{}, 5}); in test() local 47 std::ranges::as_rvalue_view<SimpleView> view(SimpleView{{}, 5}); in test() local 53 std::ranges::as_rvalue_view<SimpleView> view(SimpleView{{}, 5}); in test() local 59 const std::ranges::as_rvalue_view<SimpleView> view(SimpleView{{}, 5}); in test() local 65 std::ranges::as_rvalue_view<MoveOnlyView> view(MoveOnlyView{{}, 5}); in test() local
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/ |
H A D | robust_against_nonbool.compile.pass.cpp | 21 constexpr void use(View view) { in use() 46 auto view = std::views::chunk_by(in, pred2); in f() local 51 auto view = std::views::drop_while(in, pred1); in f() local 55 auto view = std::views::filter(in, pred1); in f() local 59 auto view = std::views::take_while(in, pred1); in f() local
|
/llvm-project/offload/test/mapping/ |
H A D | has_device_addr.cpp | 9 struct view { struct 29 view a; in main() argument
|
H A D | is_device_ptr.cpp | 7 struct view { struct 27 view a; in main() argument
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.common.view/ |
H A D | end.pass.cpp | 28 SizedRandomAccessView view{buf, buf + 8}; in test() local 36 SizedRandomAccessView view{buf, buf + 8}; in test() local 56 SizedForwardView view{buf, buf + 8}; in main() local 62 CopyableView view{buf, buf + 8}; in main() local 70 SizedForwardView view{buf, buf + 8}; in main() local 76 CopyableView view{buf, buf + 8}; in main() local
|
H A D | base.pass.cpp | 22 constexpr bool hasLValueQualifiedBase(auto&& view) { in hasLValueQualifiedBase() 30 CopyableView view{buf, buf + 8}; in test() local 41 MoveOnlyView view{buf, buf + 8}; in test() local 50 CopyableView view{buf, buf + 8}; in test() local
|
H A D | begin.pass.cpp | 41 SizedRandomAccessView view{buf, buf + 8}; in test() local 48 SizedRandomAccessView view{buf, buf + 8}; in test() local 65 SizedForwardView view{buf, buf + 8}; in main() local 75 MoveOnlyView view{buf, buf + 8}; in main() local 83 CopyableView view{buf, buf + 8}; in main() local
|
H A D | adaptor.pass.cpp | 30 CommonView view(buf, buf + 3); in test() local 46 NonCommonView view(buf, buf + 3); in test() local 58 SomeView view(buf, buf + 3); in test() local 66 SomeView view(buf, buf + 3); in test() local 77 SomeView view(buf, buf + 3); in test() local
|
H A D | ctor.view.pass.cpp | 25 MoveOnlyView view{buf, buf + 8}; in test() local 31 CopyableView const view{buf, buf + 8}; in test() local 46 MoveOnlyView view{buf, buf + 8}; in main() local
|
H A D | size.pass.cpp | 32 SizedForwardView view{buf, buf + 8}; in test() local 38 SizedForwardView view{buf, buf + 8}; in test() local
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.chunk.by/range.chunk.by.iter/ |
H A D | decrement.pass.cpp | 55 View view{Iter{arr.data()}, Sent{Iter{arr.data() + arr.size()}}}; in test() local 62 ChunkByView view = make_chunk_by_view(array); in test() local 73 ChunkByView view = make_chunk_by_view(array); in test() local 87 ChunkByView view = make_chunk_by_view(array); in test() local 116 ChunkByView view = make_chunk_by_view(array); in test() local 129 auto view = std::views::chunk_by(std::move(v), [](int& x, int& y) { return x <= y; }); in test() local 142 auto view = std::views::chunk_by(std::move(v), &IntWrapper::lessEqual); in test() local 155 auto view = std::views::chunk_by(std::move(v), TrackingPred(&moved, &copied)); in test() local 167 ChunkByView view = make_chunk_by_view(array); in test() local
|
H A D | increment.pass.cpp | 43 View view{Iterator{arr.data()}, Sentinel{Iterator{arr.data() + arr.size()}}}; in test() local 50 ChunkByView view = make_chunk_by_view(array); in test() local 63 ChunkByView view = make_chunk_by_view(array); in test() local 73 ChunkByView view = make_chunk_by_view(array); in test() local 83 ChunkByView view = make_chunk_by_view(array); in test() local 101 auto view = std::views::chunk_by(std::move(v), [](int& x, int& y) { return x <= y; }); in test() local 114 auto view = std::views::chunk_by(std::move(v), &IntWrapper::lessEqual); in test() local 128 auto view = std::views::chunk_by(std::move(v), TrackingPred(&moved, &copied)); in test() local 140 ChunkByView view = make_chunk_by_view(array); in test() local
|
H A D | compare.pass.cpp | 35 View view{Iter(arr.data()), Sent(Iter(arr.data() + arr.size()))}; in test() local 42 ChunkByView view = make_chunk_by_view(array); in test() local 55 ChunkByView view = make_chunk_by_view(array); in test() local 68 ChunkByView view = make_chunk_by_view(array); in test() local 80 ChunkByView view = make_chunk_by_view(array); in test() local
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.filter/iterator/ |
H A D | increment.pass.cpp | 44 View view{Iterator(begin), Sentinel(Iterator(end))}; in test() local 51 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local 63 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local 73 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local 83 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local 98 auto view = std::ranges::filter_view(std::move(v), pred); in test() local 111 auto view = std::ranges::filter_view(std::move(v), TrackingPred(&moved, &copied)); in test() local 124 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local 138 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local
|
H A D | decrement.pass.cpp | 48 View view{Iter(begin), Sent(Iter(end))}; in test() local 55 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local 68 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local 83 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local 98 FilterView view = make_filter_view(array.data(), array.data() + array.size(), EqualTo{1}); in test() local
|
H A D | compare.pass.cpp | 35 View view{Iterator(begin), Sentinel(Iterator(end))}; in test() local 41 FilterView view = make_filter_view(array.data(), array.data() + array.size(), AlwaysTrue{}); in test() local 53 FilterView view = make_filter_view(array.data(), array.data() + array.size(), AlwaysTrue{}); in test() local
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.filter/ |
H A D | begin.pass.cpp | 58 std::ranges::filter_view view(range, pred); in general_tests() local 67 std::ranges::filter_view view(range, pred); in general_tests() local 78 std::ranges::filter_view view(range, pred); in general_tests() local 85 std::ranges::filter_view view(range, pred); in general_tests() local 97 std::ranges::filter_view view(range, pred); in general_tests() local 104 std::ranges::filter_view view(range, pred); in general_tests() local 111 std::ranges::filter_view view(range, pred); in general_tests() local 123 std::ranges::filter_view view(range, pred); in general_tests() local 130 std::ranges::filter_view view(range, pred); in general_tests() local 142 std::ranges::filter_view view(range, TrackingPred(&moved, &copied)); in general_tests() local [all …]
|
H A D | end.pass.cpp | 50 std::ranges::filter_view view(range, pred); in test() local 59 std::ranges::filter_view view(range, pred); in test() local 68 std::ranges::filter_view view(range, pred); in test() local 78 std::ranges::filter_view view(range, pred); in test() local 89 std::ranges::filter_view view(range, pred); in test() local 100 std::ranges::filter_view view(range, pred); in test() local
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.split/ |
H A D | adaptor.pass.cpp | 59 SomeView view(input); in test() local 69 SomeView view(input); in test() local 79 SomeView view(input); in test() local 89 SomeView view(input); in test() local 101 SomeView view(input); in test() local
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.lazy.split/ |
H A D | adaptor.pass.cpp | 60 SomeView view(input); in test() local 70 SomeView view(input); in test() local 80 SomeView view(input); in test() local 90 SomeView view(input); in test() local 102 SomeView view(input); in test() local
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.chunk.by/ |
H A D | begin.pass.cpp | 53 std::ranges::chunk_by_view view(range, pred); in test() local 62 std::ranges::chunk_by_view view(range, pred); in test() local 72 std::ranges::chunk_by_view view(range, pred); in test() local 82 std::ranges::chunk_by_view view(range, pred); in test() local 94 std::ranges::chunk_by_view view(range, pred); in test() local 104 std::ranges::chunk_by_view view(range, TrackingPred(&moved, &copied)); in test() local 115 std::ranges::chunk_by_view view(range, pred); in test() local 124 std::ranges::chunk_by_view view(range, pred); in test() local 139 std::ranges::chunk_by_view view(range, pred); in test() local
|
H A D | ctad.pass.cpp | 47 std::ranges::chunk_by_view view(v, pred); in test() local 53 std::ranges::chunk_by_view view(r, pred); in test() local 58 std::ranges::chunk_by_view view(Range{}, pred); in test() local
|
H A D | end.pass.cpp | 59 std::ranges::chunk_by_view view(range, pred); in test() local 69 std::ranges::chunk_by_view view(range, pred); in test() local 78 std::ranges::chunk_by_view view(range, pred); in test() local 88 std::ranges::chunk_by_view view(range, pred); in test() local 98 std::ranges::chunk_by_view view(range, pred); in test() local 107 std::ranges::chunk_by_view view(range, std::ranges::less_equal{}); in test() local
|
/llvm-project/clang/tools/clang-format-vs/ClangFormat/ |
H A D | Vsix.cs |
|