• Home
  • Raw
  • Download

Lines Matching refs:affixPattern

160 AffixUtils::unescape(const UnicodeString &affixPattern, NumberStringBuilder &output, int32_t positi…  in unescape()  argument
164 while (hasNext(tag, affixPattern)) { in unescape()
165 tag = nextToken(tag, affixPattern, status); in unescape()
180 int32_t AffixUtils::unescapedCodePointCount(const UnicodeString &affixPattern, in unescapedCodePointCount() argument
184 while (hasNext(tag, affixPattern)) { in unescapedCodePointCount()
185 tag = nextToken(tag, affixPattern, status); in unescapedCodePointCount()
199 AffixUtils::containsType(const UnicodeString &affixPattern, AffixPatternType type, UErrorCode &stat… in containsType() argument
200 if (affixPattern.length() == 0) { in containsType()
204 while (hasNext(tag, affixPattern)) { in containsType()
205 tag = nextToken(tag, affixPattern, status); in containsType()
214 bool AffixUtils::hasCurrencySymbols(const UnicodeString &affixPattern, UErrorCode &status) { in hasCurrencySymbols() argument
215 if (affixPattern.length() == 0) { in hasCurrencySymbols()
219 while (hasNext(tag, affixPattern)) { in hasCurrencySymbols()
220 tag = nextToken(tag, affixPattern, status); in hasCurrencySymbols()
229 UnicodeString AffixUtils::replaceType(const UnicodeString &affixPattern, AffixPatternType type, in replaceType() argument
231 UnicodeString output(affixPattern); // copy in replaceType()
232 if (affixPattern.length() == 0) { in replaceType()
236 while (hasNext(tag, affixPattern)) { in replaceType()
237 tag = nextToken(tag, affixPattern, status); in replaceType()
246 bool AffixUtils::containsOnlySymbolsAndIgnorables(const UnicodeString& affixPattern, in containsOnlySymbolsAndIgnorables() argument
248 if (affixPattern.length() == 0) { in containsOnlySymbolsAndIgnorables()
252 while (hasNext(tag, affixPattern)) { in containsOnlySymbolsAndIgnorables()
253 tag = nextToken(tag, affixPattern, status); in containsOnlySymbolsAndIgnorables()
262 void AffixUtils::iterateWithConsumer(const UnicodeString& affixPattern, TokenConsumer& consumer, in iterateWithConsumer() argument
264 if (affixPattern.length() == 0) { in iterateWithConsumer()
268 while (hasNext(tag, affixPattern)) { in iterateWithConsumer()
269 tag = nextToken(tag, affixPattern, status); in iterateWithConsumer()