Lines Matching refs:affix
418 EAffix affix, in applyCurrencySpacingAffix() argument
424 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix()
428 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
429 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix, status); in applyCurrencySpacingAffix()
433 int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
434 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix, status); in applyCurrencySpacingAffix()
438 UnicodeString spacingString = getInsertString(symbols, affix, status); in applyCurrencySpacingAffix()
451 EAffix affix, UErrorCode &status) { in getUnicodeSet() argument
460 affix == SUFFIX, in getUnicodeSet()
472 CurrencySpacingEnabledModifier::getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, in getInsertString() argument
474 return symbols.getPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, affix == SUFFIX, status); in getInsertString()