• Home
  • Raw
  • Download

Lines Matching refs:affixPattern

161 AffixUtils::unescape(const UnicodeString &affixPattern, FormattedStringBuilder &output, int32_t pos…  in unescape()  argument
165 while (hasNext(tag, affixPattern)) { in unescape()
166 tag = nextToken(tag, affixPattern, status); in unescape()
185 int32_t AffixUtils::unescapedCodePointCount(const UnicodeString &affixPattern, in unescapedCodePointCount() argument
189 while (hasNext(tag, affixPattern)) { in unescapedCodePointCount()
190 tag = nextToken(tag, affixPattern, status); in unescapedCodePointCount()
204 AffixUtils::containsType(const UnicodeString &affixPattern, AffixPatternType type, UErrorCode &stat… in containsType() argument
205 if (affixPattern.length() == 0) { in containsType()
209 while (hasNext(tag, affixPattern)) { in containsType()
210 tag = nextToken(tag, affixPattern, status); in containsType()
219 bool AffixUtils::hasCurrencySymbols(const UnicodeString &affixPattern, UErrorCode &status) { in hasCurrencySymbols() argument
220 if (affixPattern.length() == 0) { in hasCurrencySymbols()
224 while (hasNext(tag, affixPattern)) { in hasCurrencySymbols()
225 tag = nextToken(tag, affixPattern, status); in hasCurrencySymbols()
234 UnicodeString AffixUtils::replaceType(const UnicodeString &affixPattern, AffixPatternType type, in replaceType() argument
236 UnicodeString output(affixPattern); // copy in replaceType()
237 if (affixPattern.length() == 0) { in replaceType()
241 while (hasNext(tag, affixPattern)) { in replaceType()
242 tag = nextToken(tag, affixPattern, status); in replaceType()
251 bool AffixUtils::containsOnlySymbolsAndIgnorables(const UnicodeString& affixPattern, in containsOnlySymbolsAndIgnorables() argument
253 if (affixPattern.length() == 0) { in containsOnlySymbolsAndIgnorables()
257 while (hasNext(tag, affixPattern)) { in containsOnlySymbolsAndIgnorables()
258 tag = nextToken(tag, affixPattern, status); in containsOnlySymbolsAndIgnorables()
267 void AffixUtils::iterateWithConsumer(const UnicodeString& affixPattern, TokenConsumer& consumer, in iterateWithConsumer() argument
269 if (affixPattern.length() == 0) { in iterateWithConsumer()
273 while (hasNext(tag, affixPattern)) { in iterateWithConsumer()
274 tag = nextToken(tag, affixPattern, status); in iterateWithConsumer()