Home | History | Annotate | Download | only in i18n

Lines Matching refs:DigitAffix

22 #include "digitaffix.h"
38 template class U_I18N_API PluralMap<DigitAffix>;
45 * PluralAffix is essentially a map of DigitAffix objects keyed by plural
48 * is not set always returns the DigitAffix stored in the 'other' category.
83 PluralAffix(const DigitAffix &otherVariant) : affixes(otherVariant) { }
131 * Get the DigitAffix for a paricular category such as "zero", "one", ...
135 const DigitAffix &getByCategory(const char *category) const;
138 * Get the DigitAffix for a paricular category such as "zero", "one", ...
142 const DigitAffix &getByCategory(const UnicodeString &category) const;
145 * Get the DigitAffix for the other category which is always set.
147 const DigitAffix &getOtherVariant() const {
165 PluralMap<DigitAffix> affixes;
167 static UBool eq(const DigitAffix &x, const DigitAffix &y) {