Home
last modified time | relevance | path

Searched refs:regex_matcher (Results 1 – 4 of 4) sorted by relevance

/external/libtextclassifier/native/utils/grammar/parsing/
Dparser.cc149 std::unique_ptr<UniLib::RegexMatcher> regex_matcher = in SortedSymbolsForInput() local
153 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()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/xds/
Dxds_api.cc122 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() local
1135 GPR_ASSERT(regex_matcher != nullptr); in RoutePathMatchParse()
1137 envoy_type_matcher_v3_RegexMatcher_regex(regex_matcher)); in RoutePathMatchParse()
[all …]
Dxds_api.h80 std::unique_ptr<RE2> regex_matcher; member
205 RE2* regex_matcher() const { return regex_matcher_.get(); } in regex_matcher() function
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/resolver/xds/
Dxds_resolver.cc378 return RE2::FullMatch(path.data(), *path_matcher.regex_matcher); in PathMatch()