Searched refs:string_matcher_ (Results 1 – 2 of 2) sorted by relevance
439 string_matcher_ = matcher; in StringMatcher()450 string_matcher_ = other.string_matcher_; in StringMatcher()462 string_matcher_ = other.string_matcher_; in operator =()474 return string_matcher_ == other.string_matcher_; in operator ==()481 return ignore_case_ ? absl::EqualsIgnoreCase(value, string_matcher_) in Match()482 : value == string_matcher_; in Match()484 return ignore_case_ ? absl::StartsWithIgnoreCase(value, string_matcher_) in Match()485 : absl::StartsWith(value, string_matcher_); in Match()487 return ignore_case_ ? absl::EndsWithIgnoreCase(value, string_matcher_) in Match()488 : absl::EndsWith(value, string_matcher_); in Match()[all …]
202 const std::string& string_matcher() const { return string_matcher_; } in string_matcher()209 std::string string_matcher_; variable