Home
last modified time | relevance | path

Searched refs:ContiguousCommonView (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.zip/
H A Drange.concept.compile.pass.cpp28 std::ranges::zip_view v{ContiguousCommonView{buffer1}, ContiguousCommonView{buffer2}}; in testConceptPair()
55 std::ranges::zip_view v{SizedRandomAccessView{buffer1}, ContiguousCommonView{buffer2}}; in testConceptPair()
169 std::ranges::zip_view v{ContiguousCommonView{buffer1}, ContiguousCommonView{buffer2}, in testConceptTuple()
170 ContiguousCommonView{buffer3}}; in testConceptTuple()
199 std::ranges::zip_view v{SizedRandomAccessView{buffer1}, ContiguousCommonView{buffer2}, in testConceptTuple()
200 ContiguousCommonView{buffer3}}; in testConceptTuple()
H A Dctor.views.pass.cpp89 constructorTest<ContiguousCommonView, ContiguousCommonView>(buffer, buffer2); in test()
H A Dtypes.h289 using ContiguousCommonView = BasicView<int*>; variable
290 static_assert(std::ranges::contiguous_range<ContiguousCommonView>);
291 static_assert(std::ranges::common_range<ContiguousCommonView>);
292 static_assert(std::ranges::sized_range<ContiguousCommonView>);
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.zip/iterator/
H A Dsubscript.pass.cpp36 std::ranges::zip_view v(ContiguousCommonView{buffer}, ContiguousCommonView{buffer}); in test()