Home
last modified time | relevance | path

Searched refs:InputCommonView (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.zip/
H A Drange.concept.compile.pass.cpp136 std::ranges::zip_view v{InputCommonView{buffer1}, ForwardSizedView{buffer2}}; in testConceptPair()
145 std::ranges::zip_view v{InputCommonView{buffer1}, InputCommonView{buffer2}}; in testConceptPair()
154 std::ranges::zip_view v{InputNonCommonView{buffer1}, InputCommonView{buffer2}}; in testConceptPair()
283 …std::ranges::zip_view v{InputCommonView{buffer1}, ForwardSizedView{buffer2}, ForwardSizedView{buff… in testConceptTuple()
292 …std::ranges::zip_view v{InputCommonView{buffer1}, InputCommonView{buffer2}, InputCommonView{buffer… in testConceptTuple()
301 …std::ranges::zip_view v{InputNonCommonView{buffer1}, InputCommonView{buffer2}, InputCommonView{buf… in testConceptTuple()
H A Dtypes.h327 using InputCommonView = BasicView<common_input_iterator<>>; variable
328 static_assert(std::ranges::input_range<InputCommonView>);
329 static_assert(!std::ranges::forward_range<InputCommonView>);
330 static_assert(std::ranges::common_range<InputCommonView>);
331 LIBCPP_STATIC_ASSERT(std::ranges::__simple_view<InputCommonView>);
H A Dsize.pass.cpp88 std::ranges::zip_view v(InputCommonView{buffer}); in test()
H A Dctor.views.pass.cpp79 constructorTest<InputCommonView, ForwardSizedView>(buffer, buffer2); in test()
H A Dend.pass.cpp144 std::ranges::zip_view v{InputCommonView(buffer1)}; in test()
151 std::ranges::zip_view v{InputCommonView(buffer1), InputCommonView(buffer2)}; in test()
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.zip/iterator/
H A Dcompare.pass.cpp183 std::ranges::zip_view v{InputCommonView(buffer1), InputCommonView(buffer2)}; in test()
H A Darithmetic.pass.cpp130 std::ranges::zip_view v(a, b, InputCommonView{buffer1}); in test()