Home
last modified time | relevance | path

Searched refs:string_matcher_ (Results 1 – 2 of 2) sorted by relevance

/third_party/grpc/src/core/lib/security/authorization/
Dmatchers.cc50 : type_(type), string_matcher_(matcher), case_sensitive_(case_sensitive) {} in StringMatcher()
66 string_matcher_ = other.string_matcher_; in StringMatcher()
78 string_matcher_ = other.string_matcher_; in operator =()
89 string_matcher_ = std::move(other.string_matcher_); in StringMatcher()
98 string_matcher_ = std::move(other.string_matcher_); in operator =()
111 return string_matcher_ == other.string_matcher_; in operator ==()
118 return case_sensitive_ ? value == string_matcher_ in Match()
119 : absl::EqualsIgnoreCase(value, string_matcher_); in Match()
122 ? absl::StartsWith(value, string_matcher_) in Match()
123 : absl::StartsWithIgnoreCase(value, string_matcher_); in Match()
[all …]
Dmatchers.h60 const std::string& string_matcher() const { return string_matcher_; } in string_matcher()
72 std::string string_matcher_; variable