Lines Matching refs:affix
128 const DigitAffix &affix,
1263 DigitAffix affix; in TestDigitAffix() local
1265 affix.append("foo"); in TestDigitAffix()
1266 affix.append("--", UNUM_SIGN_FIELD); in TestDigitAffix()
1267 affix.append("%", UNUM_PERCENT_FIELD); in TestDigitAffix()
1272 verifyAffix("foo--%", affix, expectedAttributes); in TestDigitAffix()
1275 affix.remove(); in TestDigitAffix()
1276 affix.append("USD", UNUM_CURRENCY_FIELD); in TestDigitAffix()
1277 affix.append(" "); in TestDigitAffix()
1281 verifyAffix("USD ", affix, expectedAttributes); in TestDigitAffix()
1284 affix.setTo("%%", UNUM_PERCENT_FIELD); in TestDigitAffix()
1288 verifyAffix("%%", affix, expectedAttributes); in TestDigitAffix()
1501 PluralAffix affix; in TestAffixPatternParser() local
1509 affix, in TestAffixPatternParser()
1535 assertTrue("", affix.hasMultipleVariants()); in TestAffixPatternParser()
1548 affix.getByCategory("other"), in TestAffixPatternParser()
1563 affix.getByCategory("one"), in TestAffixPatternParser()
1566 affix.remove(); in TestAffixPatternParser()
1572 affix, in TestAffixPatternParser()
1578 assertFalse("", affix.hasMultipleVariants()); in TestAffixPatternParser()
1586 affix.getByCategory("other"), in TestAffixPatternParser()
1602 affix.remove(); in TestAffixPatternParser()
1606 affix, in TestAffixPatternParser()
1612 assertFalse("", affix.hasMultipleVariants()); in TestAffixPatternParser()
1626 affix.getOtherVariant(), in TestAffixPatternParser()
2867 const DigitAffix &affix, in verifyAffix() argument
2874 affix.format(handler, appendTo)); in verifyAffix()