Lines Matching refs:affix

130             const DigitAffix &affix,
1265 DigitAffix affix; in TestDigitAffix() local
1267 affix.append("foo"); in TestDigitAffix()
1268 affix.append("--", UNUM_SIGN_FIELD); in TestDigitAffix()
1269 affix.append("%", UNUM_PERCENT_FIELD); in TestDigitAffix()
1274 verifyAffix("foo--%", affix, expectedAttributes); in TestDigitAffix()
1277 affix.remove(); in TestDigitAffix()
1278 affix.append("USD", UNUM_CURRENCY_FIELD); in TestDigitAffix()
1279 affix.append(" "); in TestDigitAffix()
1283 verifyAffix("USD ", affix, expectedAttributes); in TestDigitAffix()
1286 affix.setTo("%%", UNUM_PERCENT_FIELD); in TestDigitAffix()
1290 verifyAffix("%%", affix, expectedAttributes); in TestDigitAffix()
1503 PluralAffix affix; in TestAffixPatternParser() local
1511 affix, in TestAffixPatternParser()
1537 assertTrue("", affix.hasMultipleVariants()); in TestAffixPatternParser()
1550 affix.getByCategory("other"), in TestAffixPatternParser()
1565 affix.getByCategory("one"), in TestAffixPatternParser()
1568 affix.remove(); in TestAffixPatternParser()
1574 affix, in TestAffixPatternParser()
1580 assertFalse("", affix.hasMultipleVariants()); in TestAffixPatternParser()
1588 affix.getByCategory("other"), in TestAffixPatternParser()
1604 affix.remove(); in TestAffixPatternParser()
1608 affix, in TestAffixPatternParser()
1614 assertFalse("", affix.hasMultipleVariants()); in TestAffixPatternParser()
1628 affix.getOtherVariant(), in TestAffixPatternParser()
2869 const DigitAffix &affix, in verifyAffix() argument
2876 affix.format(handler, appendTo)); in verifyAffix()