Lines Matching refs:affix
426 EAffix affix, in applyCurrencySpacingAffix() argument
432 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix()
436 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
437 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix, status); in applyCurrencySpacingAffix()
441 int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
442 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix, status); in applyCurrencySpacingAffix()
446 UnicodeString spacingString = getInsertString(symbols, affix, status); in applyCurrencySpacingAffix()
459 EAffix affix, UErrorCode &status) { in getUnicodeSet() argument
468 affix == SUFFIX, in getUnicodeSet()
480 CurrencySpacingEnabledModifier::getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, in getInsertString() argument
482 return symbols.getPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, affix == SUFFIX, status); in getInsertString()