Lines Matching refs:view
29 SizedRandomAccessView view{buf, buf + 8}; in test() local
30 std::ranges::common_view<SizedRandomAccessView> common(view); in test()
37 SizedRandomAccessView view{buf, buf + 8}; in test() local
38 std::ranges::common_view<SizedRandomAccessView> const common(view); in test()
57 SizedForwardView view{buf, buf + 8}; in main() local
58 std::ranges::common_view<SizedForwardView> common(view); in main()
60 assert(end == CommonForwardIter(std::ranges::end(view))); in main()
63 CopyableView view{buf, buf + 8}; in main() local
64 std::ranges::common_view<CopyableView> common(view); in main()
66 assert(end == CommonIntIter(std::ranges::end(view))); in main()
71 SizedForwardView view{buf, buf + 8}; in main() local
72 std::ranges::common_view<SizedForwardView> const common(view); in main()
74 assert(end == CommonForwardIter(std::ranges::end(view))); in main()
77 CopyableView view{buf, buf + 8}; in main() local
78 std::ranges::common_view<CopyableView> const common(view); in main()
80 assert(end == CommonIntIter(std::ranges::end(view))); in main()