Lines Matching refs:Collator
33 myCollation = Collator::createInstance(Locale::getCanadaFrench(), status); in CollationFrenchTest()
79 const Collator::EComparisonResult CollationFrenchTest::results[] =
81 Collator::LESS,
82 Collator::LESS,
83 Collator::LESS, /*Collator::GREATER,*/
84 Collator::LESS,
85 Collator::GREATER,
86 Collator::GREATER,
87 Collator::LESS,
88 Collator::GREATER,
89 Collator::LESS, /*Collator::GREATER,*/
90 Collator::GREATER,
91 Collator::LESS,
92 Collator::LESS
144 myCollation->setStrength(Collator::TERTIARY); in TestTertiary()
164 Collator::EComparisonResult expected; in TestSecondary()
167 myCollation->setStrength(Collator::SECONDARY); in TestSecondary()
178 expected = Collator::LESS; in TestSecondary()
180 expected = Collator::EQUAL; in TestSecondary()
182 expected = Collator::GREATER; in TestSecondary()
192 myCollation->setStrength(Collator::TERTIARY); in TestExtra()
197 doTest(myCollation, testBugs[i], testBugs[j], Collator::LESS); in TestExtra()