Home
last modified time | relevance | path

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

/external/rust/crates/grpcio-sys/grpc/src/core/ext/xds/
Dxds_api.h205 RE2* regex_matcher() const { return regex_matcher_.get(); } in regex_matcher()
210 std::unique_ptr<RE2> regex_matcher_; variable
Dxds_api.cc437 regex_matcher_ = absl::make_unique<RE2>(matcher); in StringMatcher()
447 regex_matcher_ = absl::make_unique<RE2>(other.regex_matcher_->pattern()); in StringMatcher()
459 regex_matcher_ = absl::make_unique<RE2>(other.regex_matcher_->pattern()); in operator =()
472 return regex_matcher_->pattern() == other.regex_matcher_->pattern(); in operator ==()
496 return RE2::FullMatch(std::string(value), *regex_matcher_); in Match()
518 regex_matcher_->pattern()); in ToString()