Searched defs:StrView (Results 1 – 5 of 5) 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() argument68 constexpr bool operator==(const StrView& rhs) const { return buffer_ == rhs.buffer_; } in operator ==() argument
102 std::string_view StrView; in StringFind() local
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