Home
last modified time | relevance | path

Searched defs:InputView (Results 1 – 6 of 6) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/ranges/range.adaptors/range.lazy.split/
Dtypes.h34 struct InputView : std::ranges::view_base { struct
47 static_assert(std::ranges::input_range<InputView>); argument
Dno_unique_address.compile.pass.cpp44 struct InputView : std::ranges::view_base { struct
45 int x;
/external/cronet/buildtools/third_party/libc++/trunk/test/std/ranges/range.adaptors/range.lazy.split/
Dtypes.h141 struct InputView : std::ranges::view_base { struct
144 constexpr InputView() = default; argument
145 constexpr InputView(const char* s) : InputView(std::string_view(s)) {} in InputView() argument
146 constexpr InputView(std::string_view v) { in InputView() argument
161 friend constexpr bool operator==(const InputView& lhs, const InputView& rhs) { argument
/external/cronet/buildtools/third_party/libc++/trunk/test/std/ranges/range.adaptors/range.transform/
Dtypes.h87 struct InputView : std::ranges::view_base { struct
89 constexpr explicit InputView(int* ptr = globalBuff) : ptr_(ptr) {} in ptr_() argument
93 static_assert( std::ranges::view<InputView>); argument
/external/cronet/buildtools/third_party/libc++/trunk/test/std/ranges/range.adaptors/range.drop/
Dtypes.h78 struct InputView : std::ranges::view_base { struct
79 …nstexpr cpp20_input_iterator<int*> begin() const { return cpp20_input_iterator<int*>(globalBuff); } in begin()
80 constexpr int* end() const { return globalBuff + 8; } in end()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/ranges/range.adaptors/range.join.view/iterator/
Dmember_types.compile.pass.cpp27 struct InputView : std::ranges::view_base { struct