Searched defs:StrView (Results 1 – 4 of 4) sorted by relevance
75 struct StrView : std::ranges::view_base { struct77 constexpr explicit StrView() = default; argument78 constexpr StrView(const char* ptr) : buffer_(ptr) {} in StrView() function83 constexpr StrView(R&& r) : buffer_(r.begin(), r.end()) {} in StrView() argument86 constexpr bool operator==(const StrView& rhs) const { return buffer_ == rhs.buffer_; } in operator ==() argument
94 std::string_view StrView; in StringFind() local
130 using StrView = std::basic_string_view<CharT>; in doAppendSourceAllocTest() typedef240 using StrView = std::basic_string_view<CharT>; in doAppendSourceTest() typedef
92 using StrView = std::basic_string_view<CharT>; in doConcatSourceAllocTest() typedef184 using StrView = std::basic_string_view<CharT>; in doConcatSourceTest() typedef