Lines Matching refs:affix
435 EAffix affix, in applyCurrencySpacingAffix() argument
441 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix()
445 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
446 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix, status); in applyCurrencySpacingAffix()
450 int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
451 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix, status); in applyCurrencySpacingAffix()
455 UnicodeString spacingString = getInsertString(symbols, affix, status); in applyCurrencySpacingAffix()
468 EAffix affix, UErrorCode &status) { in getUnicodeSet() argument
477 affix == SUFFIX, in getUnicodeSet()
489 CurrencySpacingEnabledModifier::getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, in getInsertString() argument
491 return symbols.getPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, affix == SUFFIX, status); in getInsertString()