Searched refs:regex_matcher (Results 1 – 4 of 4) sorted by relevance
149 std::unique_ptr<UniLib::RegexMatcher> regex_matcher = in SortedSymbolsForInput() local153 while (regex_matcher->Find(&status) && in SortedSymbolsForInput()155 const CodepointSpan span{regex_matcher->Start(0, &status) + context_start, in SortedSymbolsForInput()156 regex_matcher->End(0, &status) + context_start}; in SortedSymbolsForInput()
122 regex_matcher = in PathMatcher()123 absl::make_unique<RE2>(other.regex_matcher->pattern(), options); in PathMatcher()136 regex_matcher = in operator =()137 absl::make_unique<RE2>(other.regex_matcher->pattern(), options); in operator =()150 if (regex_matcher == nullptr || other.regex_matcher == nullptr) { in operator ==()153 return regex_matcher->pattern() == other.regex_matcher->pattern(); in operator ==()175 ? regex_matcher->pattern() in ToString()1133 const envoy_type_matcher_v3_RegexMatcher* regex_matcher = in RoutePathMatchParse() local1135 GPR_ASSERT(regex_matcher != nullptr); in RoutePathMatchParse()1137 envoy_type_matcher_v3_RegexMatcher_regex(regex_matcher)); in RoutePathMatchParse()[all …]
80 std::unique_ptr<RE2> regex_matcher; member205 RE2* regex_matcher() const { return regex_matcher_.get(); } in regex_matcher() function
378 return RE2::FullMatch(path.data(), *path_matcher.regex_matcher); in PathMatch()