Lines Matching refs:affixPattern

159 AffixUtils::unescape(const UnicodeString &affixPattern, FormattedStringBuilder &output, int32_t pos…  in unescape()  argument
163 while (hasNext(tag, affixPattern)) { in unescape()
164 tag = nextToken(tag, affixPattern, status); in unescape()
183 int32_t AffixUtils::unescapedCodePointCount(const UnicodeString &affixPattern, in unescapedCodePointCount() argument
187 while (hasNext(tag, affixPattern)) { in unescapedCodePointCount()
188 tag = nextToken(tag, affixPattern, status); in unescapedCodePointCount()
202 AffixUtils::containsType(const UnicodeString &affixPattern, AffixPatternType type, UErrorCode &stat… in containsType() argument
203 if (affixPattern.length() == 0) { in containsType()
207 while (hasNext(tag, affixPattern)) { in containsType()
208 tag = nextToken(tag, affixPattern, status); in containsType()
217 bool AffixUtils::hasCurrencySymbols(const UnicodeString &affixPattern, UErrorCode &status) { in hasCurrencySymbols() argument
218 if (affixPattern.length() == 0) { in hasCurrencySymbols()
222 while (hasNext(tag, affixPattern)) { in hasCurrencySymbols()
223 tag = nextToken(tag, affixPattern, status); in hasCurrencySymbols()
232 UnicodeString AffixUtils::replaceType(const UnicodeString &affixPattern, AffixPatternType type, in replaceType() argument
234 UnicodeString output(affixPattern); // copy in replaceType()
235 if (affixPattern.length() == 0) { in replaceType()
239 while (hasNext(tag, affixPattern)) { in replaceType()
240 tag = nextToken(tag, affixPattern, status); in replaceType()
249 bool AffixUtils::containsOnlySymbolsAndIgnorables(const UnicodeString& affixPattern, in containsOnlySymbolsAndIgnorables() argument
251 if (affixPattern.length() == 0) { in containsOnlySymbolsAndIgnorables()
255 while (hasNext(tag, affixPattern)) { in containsOnlySymbolsAndIgnorables()
256 tag = nextToken(tag, affixPattern, status); in containsOnlySymbolsAndIgnorables()
265 void AffixUtils::iterateWithConsumer(const UnicodeString& affixPattern, TokenConsumer& consumer, in iterateWithConsumer() argument
267 if (affixPattern.length() == 0) { in iterateWithConsumer()
271 while (hasNext(tag, affixPattern)) { in iterateWithConsumer()
272 tag = nextToken(tag, affixPattern, status); in iterateWithConsumer()