Lines Matching refs:Collator
656 , collator(NULL)
674 , collator(NULL)
692 , collator(NULL)
709 , collator(NULL)
727 , collator(NULL)
742 , collator(NULL)
802 , collator(NULL)
1201 if (!enabled && collator) {
1202 delete collator;
1203 collator = NULL;
1501 delete collator;
1503 collator = NULL;
1520 * Returns the collator to use for lenient parsing. The collator is lazily created:
1522 * @return The collator to use for lenient parsing, or null if lenient parsing
1525 Collator*
1533 // lazy-evaulate the collator
1534 if (collator == NULL && lenient) {
1535 // create a default collator based on the formatter's locale,
1536 // then pull out that collator's rules, append any additional
1538 // collator based on the combinaiton of those rules
1542 Collator* temp = Collator::createInstance(locale, status);
1560 ((RuleBasedNumberFormat*)this)->collator = newCollator;
1571 return collator;