Home | History | Annotate | Download | only in i18n

Lines Matching refs:fRules

55           fRules(NULL),
82 fRules(NULL),
105 fRules(NULL),
118 if (other.fRules != NULL) {
119 fRules = new PluralRules(*other.fRules);
120 if (fRules == NULL && U_SUCCESS(status)) {
155 if (fRules != NULL && other.fRules != NULL) {
156 *fRules = *other.fRules;
158 delete fRules;
159 fRules = other.fRules;
160 if (fRules != NULL) {
161 fRules = new PluralRules(*fRules);
162 if (fRules == NULL) {
197 && ((fRules == other.fRules) || (
198 (fRules != NULL) && (other.fRules != NULL)
199 && (*fRules == *other.fRules)))
205 delete fRules;
332 fRules,
497 fRules,
513 fRules,
1040 // fRules field is needed to update the fCurrencyAffixInfo field.
1098 if (fRules != newRules) {
1099 delete fRules;
1100 fRules = newRules;
1143 fSymbols->getLocale().getName(), fRules, currency, status);