Lines Matching refs:subspan
33 LIBCPP_ASSERT((noexcept(sp.template subspan<Offset, Count>()))); in testConstexprSpan()
34 LIBCPP_ASSERT((noexcept(sp.subspan(Offset, Count)))); in testConstexprSpan()
35 auto s1 = sp.template subspan<Offset, Count>(); in testConstexprSpan()
36 auto s2 = sp.subspan(Offset, Count); in testConstexprSpan()
52 LIBCPP_ASSERT((noexcept(sp.template subspan<Offset>()))); in testConstexprSpan()
53 LIBCPP_ASSERT((noexcept(sp.subspan(Offset)))); in testConstexprSpan()
54 auto s1 = sp.template subspan<Offset>(); in testConstexprSpan()
55 auto s2 = sp.subspan(Offset); in testConstexprSpan()
72 LIBCPP_ASSERT((noexcept(sp.template subspan<Offset, Count>()))); in testRuntimeSpan()
73 LIBCPP_ASSERT((noexcept(sp.subspan(Offset, Count)))); in testRuntimeSpan()
74 auto s1 = sp.template subspan<Offset, Count>(); in testRuntimeSpan()
75 auto s2 = sp.subspan(Offset, Count); in testRuntimeSpan()
91 LIBCPP_ASSERT((noexcept(sp.template subspan<Offset>()))); in testRuntimeSpan()
92 LIBCPP_ASSERT((noexcept(sp.subspan(Offset)))); in testRuntimeSpan()
93 auto s1 = sp.template subspan<Offset>(); in testRuntimeSpan()
94 auto s2 = sp.subspan(Offset); in testRuntimeSpan()