Home
last modified time | relevance | path

Searched refs:BigType (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.factories/range.single.view/
H A Dctor.value.pass.cpp22 struct BigType { char buffer[64] = {10}; }; struct
26 BigType bt; in test()
27 std::ranges::single_view<BigType> sv(bt); in test()
32 const BigType bt; in test()
33 const std::ranges::single_view<BigType> sv(bt); in test()
39 BigType bt; in test()
40 std::ranges::single_view<BigType> sv(std::move(bt)); in test()
45 const BigType bt; in test()
46 const std::ranges::single_view<BigType> sv(std::move(bt)); in test()
H A Ddata.pass.cpp21 struct BigType { char buffer[64] = {10}; }; struct
53 auto sv = std::ranges::single_view<BigType>(BigType()); in test()
56 ASSERT_SAME_TYPE(decltype(sv.data()), BigType*); in test()
59 const auto sv = std::ranges::single_view<BigType>(BigType()); in test()
62 ASSERT_SAME_TYPE(decltype(sv.data()), const BigType*); in test()
H A Dbegin.pass.cpp21 struct BigType { char buffer[64] = {10}; }; struct
53 auto sv = std::ranges::single_view<BigType>(BigType()); in test()
56 ASSERT_SAME_TYPE(decltype(sv.begin()), BigType*); in test()
59 const auto sv = std::ranges::single_view<BigType>(BigType()); in test()
62 ASSERT_SAME_TYPE(decltype(sv.begin()), const BigType*); in test()
H A Dend.pass.cpp21 struct BigType { char buffer[64] = {10}; }; argument
53 auto sv = std::ranges::single_view<BigType>(BigType()); in test()
56 ASSERT_SAME_TYPE(decltype(sv.end()), BigType*); in test()
59 const auto sv = std::ranges::single_view<BigType>(BigType()); in test()
62 ASSERT_SAME_TYPE(decltype(sv.end()), const BigType*); in test()
H A Dctor.default.pass.cpp19 struct BigType { char buffer[64] = {10}; }; argument
31 std::ranges::single_view<BigType> sv; in test()
36 const std::ranges::single_view<BigType> sv; in test()
/llvm-project-15.0.7/libcxx/test/std/ranges/range.factories/range.iota.view/iterator/
H A Dmember_typedefs.compile.pass.cpp41 struct BigType { struct
46 auto operator<=>(const BigType&) const = default; argument
48 constexpr BigType& operator++();
49 constexpr BigType operator++(int);
148 const std::ranges::iota_view<BigType> io; in test()
152 static_assert(std::same_as<Iter::value_type, BigType>); in test()
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.empty/
H A Dviews.empty.pass.cpp30 struct BigType { struct
41 testType<BigType>(); in test() argument
H A Dempty_view.pass.cpp42 struct BigType { char buff[8]; }; argument
57 testType<BigType>(); in test()