Home
last modified time | relevance | path

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

/ohos5.0/base/global/i18n/frameworks/intl/entity_recognition/phone_number_recognition/src/
H A Dphone_number_matched.cpp143 icu::RegexMatcher* shortMatch = shortPattern->matcher(message, status); in FindShortNumbers() local
144 if (shortMatch == nullptr) { in FindShortNumbers()
149 while (shortMatch->find(status)) { in FindShortNumbers()
150 icu::UnicodeString numberToParse = shortMatch->group(status); in FindShortNumbers()
163 matcher.SetBegin(shortMatch->start(status)); in FindShortNumbers()
164 matcher.SetEnd(shortMatch->end(status)); in FindShortNumbers()
165 icu::UnicodeString stringShort = shortMatch->group(status); in FindShortNumbers()
170 delete shortMatch; in FindShortNumbers()