Home
last modified time | relevance | path

Searched defs:view (Results 1 – 25 of 112) sorted by relevance

12345

/llvm-project/libcxx/test/std/ranges/range.adaptors/range.reverse/
H A Dadaptor.pass.cpp29 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 Dbase.pass.cpp41 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 Drobust_against_nonbool.compile.pass.cpp21 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 Dhas_device_addr.cpp9 struct view { struct
29 view a; in main() argument
H A Dis_device_ptr.cpp7 struct view { struct
27 view a; in main() argument
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.common.view/
H A Dend.pass.cpp28 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 Dbase.pass.cpp22 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 Dbegin.pass.cpp41 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 Dadaptor.pass.cpp30 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 Dctor.view.pass.cpp25 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 Dsize.pass.cpp32 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 Ddecrement.pass.cpp55 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 Dincrement.pass.cpp43 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 Dcompare.pass.cpp35 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 Dincrement.pass.cpp44 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 Ddecrement.pass.cpp48 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 Dcompare.pass.cpp35 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 Dbegin.pass.cpp58 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 Dend.pass.cpp50 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 Dadaptor.pass.cpp59 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 Dadaptor.pass.cpp60 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 Dbegin.pass.cpp53 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 Dctad.pass.cpp47 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 Dend.pass.cpp59 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 DVsix.cs

12345