Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DMutablePatternModifier.java58 StringBuilder currentAffix; field in MutablePatternModifier
304 int result = AffixUtils.unescapedCount(currentAffix, true, this); // prefix length in getPrefixLength()
312 int result = AffixUtils.unescapedCount(currentAffix, false, this); // prefix length in getCodePointCount()
314 result += AffixUtils.unescapedCount(currentAffix, false, this); // suffix length in getCodePointCount()
346 int length = AffixUtils.unescape(currentAffix, sb, position, this); in insertPrefix()
352 int length = AffixUtils.unescape(currentAffix, sb, position, this); in insertSuffix()
364 if (currentAffix == null) { in prepareAffix()
365 currentAffix = new StringBuilder(); in prepareAffix()
373 currentAffix); in prepareAffix()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DMutablePatternModifier.java60 StringBuilder currentAffix; field in MutablePatternModifier
309 int result = AffixUtils.unescapedCount(currentAffix, true, this); // prefix length in getPrefixLength()
317 int result = AffixUtils.unescapedCount(currentAffix, false, this); // prefix length in getCodePointCount()
319 result += AffixUtils.unescapedCount(currentAffix, false, this); // suffix length in getCodePointCount()
351 int length = AffixUtils.unescape(currentAffix, sb, position, this); in insertPrefix()
357 int length = AffixUtils.unescape(currentAffix, sb, position, this); in insertSuffix()
369 if (currentAffix == null) { in prepareAffix()
370 currentAffix = new StringBuilder(); in prepareAffix()
378 currentAffix); in prepareAffix()
/external/icu/icu4c/source/i18n/
Dnumber_patternmodifier.cpp214 int result = AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // prefix length in getPrefixLength()
226 int result = AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // prefix length in getCodePointCount()
228 result += AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // suffix length in getCodePointCount()
258 int length = AffixUtils::unescape(currentAffix, sb, position, *this, status); in insertPrefix()
264 int length = AffixUtils::unescape(currentAffix, sb, position, *this, status); in insertSuffix()
271 … *fPatternInfo, isPrefix, fSignum, fSignDisplay, fPlural, perMilleReplacesPercent, currentAffix); in prepareAffix()
Dnumber_patternmodifier.h225 UnicodeString currentAffix; variable