Lines Matching refs:string_view
60 bool StartsWith(std::string_view s, std::string_view prefix);
61 bool StartsWith(std::string_view s, char prefix);
62 bool StartsWithIgnoreCase(std::string_view s, std::string_view prefix);
65 bool EndsWith(std::string_view s, std::string_view suffix);
66 bool EndsWith(std::string_view s, char suffix);
67 bool EndsWithIgnoreCase(std::string_view s, std::string_view suffix);
70 bool EqualsIgnoreCase(std::string_view lhs, std::string_view rhs);
74 inline bool ConsumePrefix(std::string_view* s, std::string_view prefix) { in ConsumePrefix()
82 inline bool ConsumeSuffix(std::string_view* s, std::string_view suffix) { in ConsumeSuffix()
90 [[nodiscard]] std::string StringReplace(std::string_view s, std::string_view from,
91 std::string_view to, bool all);