Home
last modified time | relevance | path

Searched refs:DefaultConstructibleView (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.zip/
H A Dctor.default.pass.cpp22 struct DefaultConstructibleView : std::ranges::view_base { struct
23 constexpr DefaultConstructibleView() : begin_(buff), end_(buff + 3) {} in DefaultConstructibleView() function
41 static_assert(std::is_default_constructible_v<std::ranges::zip_view<DefaultConstructibleView>>); argument
43 …::is_default_constructible_v<std::ranges::zip_view<DefaultConstructibleView, DefaultConstructibleV…
44 static_assert(!std::is_default_constructible_v<std::ranges::zip_view<DefaultConstructibleView, NoDe…
50 using View = std::ranges::zip_view<DefaultConstructibleView, DefaultConstructibleView>; in test()
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.filter/
H A Dctor.default.pass.cpp22 struct DefaultConstructibleView : std::ranges::view_base { struct
23 constexpr DefaultConstructibleView() : begin_(buff), end_(buff + 8) { } in DefaultConstructibleView() argument
60 using View = std::ranges::filter_view<DefaultConstructibleView, DefaultConstructiblePredicate>; in test()
71 using View = std::ranges::filter_view<DefaultConstructibleView, DefaultConstructiblePredicate>; in test()
84 …ssert(!std::is_default_constructible_v<std::ranges::filter_view<DefaultConstructibleView, NoDefaul… in test()
91 … using View = std::ranges::filter_view<DefaultConstructibleView, DefaultConstructiblePredicate>; in test()
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.transform/
H A Dctor.default.pass.cpp22 struct DefaultConstructibleView : std::ranges::view_base { struct
23 constexpr DefaultConstructibleView() : begin_(buff), end_(buff + 3) { } in DefaultConstructibleView() argument
50 std::ranges::transform_view<DefaultConstructibleView, DefaultConstructibleFunction> view; in test() argument
58 std::ranges::transform_view<DefaultConstructibleView, DefaultConstructibleFunction> view = {}; in test()
66 …rt(!std::is_default_constructible_v<std::ranges::transform_view<DefaultConstructibleView, NoDefaul… in test()
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.common.view/
H A Dtypes.h16 struct DefaultConstructibleView : std::ranges::view_base { struct
19 explicit DefaultConstructibleView() = default; argument
23 static_assert(std::ranges::view<DefaultConstructibleView>); argument
24 static_assert(std::default_initializable<DefaultConstructibleView>);
H A Dctor.default.pass.cpp24 static_assert( std::default_initializable<std::ranges::common_view<DefaultConstructibleView>>); in main()
26 std::ranges::common_view<DefaultConstructibleView> common; in main()