Home
last modified time | relevance | path

Searched defs:StrView (Results 1 – 5 of 5) sorted by relevance

/llvm-project/libcxx/test/std/ranges/range.adaptors/range.lazy.split/
H A Dctor.range.pass.cpp72 struct StrView : std::ranges::view_base { struct
74 constexpr explicit StrView() = default; argument
75 constexpr StrView(const char* ptr) : buffer_(ptr) {} in StrView() function
80 constexpr StrView(R&& r) : buffer_(r.begin(), r.end()) {} in StrView() function
83 constexpr bool operator==(const StrView& rhs) const { return buffer_ == rhs.buffer_; } in operator ==() argument
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.split/
H A Dctor.range.pass.cpp61 struct StrView : std::ranges::view_base { struct
65 constexpr StrView(R&& r) : buffer_(std::ranges::begin(r), std::ranges::end(r)) {} in StrView() argument
68 constexpr bool operator==(const StrView& rhs) const { return buffer_ == rhs.buffer_; } in operator ==() argument
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/performance/
H A Dfaster-string-find.cpp102 std::string_view StrView; in StringFind() local
/llvm-project/libcxx/test/std/input.output/filesystems/class.path/path.member/
H A Dpath.append.pass.cpp131 using StrView = std::basic_string_view<CharT>; in doAppendSourceAllocTest() typedef
241 using StrView = std::basic_string_view<CharT>; in doAppendSourceTest() typedef
H A Dpath.concat.pass.cpp93 using StrView = std::basic_string_view<CharT>; in doConcatSourceAllocTest() typedef
185 using StrView = std::basic_string_view<CharT>; in doConcatSourceTest() typedef