Searched defs:StrView (Results 1 – 6 of 6) sorted by relevance
72 struct StrView : std::ranges::view_base { struct74 constexpr explicit StrView() = default; argument75 constexpr StrView(const char* ptr) : buffer_(ptr) {} in StrView() function80 constexpr StrView(R&& r) : buffer_(r.begin(), r.end()) {} in StrView() function83 constexpr bool operator==(const StrView& rhs) const { return buffer_ == rhs.buffer_; } in operator ==() argument
61 struct StrView : std::ranges::view_base { struct65 constexpr StrView(R&& r) : buffer_(std::ranges::begin(r), std::ranges::end(r)) {} in StrView() function68 constexpr bool operator==(const StrView& rhs) const { return buffer_ == rhs.buffer_; } in operator ==() argument
91 using StrView = std::basic_string_view<CharT>; in doAppendSourceAllocTest() typedef178 using StrView = std::basic_string_view<CharT>; in doAppendSourceTest() typedef
87 using StrView = std::basic_string_view<CharT>; in doConcatSourceAllocTest() typedef168 using StrView = std::basic_string_view<CharT>; in doConcatSourceTest() typedef
131 using StrView = std::basic_string_view<CharT>; in doAppendSourceAllocTest() typedef241 using StrView = std::basic_string_view<CharT>; in doAppendSourceTest() typedef
93 using StrView = std::basic_string_view<CharT>; in doConcatSourceAllocTest() typedef185 using StrView = std::basic_string_view<CharT>; in doConcatSourceTest() typedef