/external/icu4c/test/cintltst/ |
cdetst.h | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 36 /* perform test with strength TERTIARY */
|
cestst.h | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 37 /* perform test with strength TERTIARY */
|
cfintst.h | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 37 /* perform test with strength TERTIARY */
|
cfrtst.h | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 38 /*perform test with strength TERTIARY*/
|
cjaptst.h | 19 * specific primary, secondary and tertiary rules. For example, the ignorable 37 /*perform test with strength TERTIARY*/
|
cturtst.h | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 35 /* perform test with strength TERTIARY */
|
encoll.h | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 38 /* perform test with strength TERTIARY */
|
cfintst.c | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 85 log_verbose("Testing Finnish Collation with Tertiary strength\n"); 103 log_verbose("Testing Finnish Collation with Tertiary strength\n");
|
cestst.c | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 95 log_verbose("Testing Spanish Collation with Tertiary strength\n");
|
cturtst.c | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 102 log_verbose("Testing Turkish Collation with Tertiary strength\n");
|
cdetst.c | 16 * specific primary, secondary and tertiary rules. For example, the ignorable 71 /* Primary*/ /* Tertiary*/ 110 log_verbose("Testing German Collation with Tertiary strength\n");
|
/external/icu4c/test/testdata/ |
ssearch.xml | 13 strength (PRIMARY | SECONDARY | TERTIARY | QUATERNARY | IDENTICAL) "TERTIARY" 87 <test-case id="test10" strength="TERTIARY"> 102 <test-case id="test12" strength="TERTIARY"> 166 <test-case id="test24" strength="TERTIARY" locale="en"> 198 <test-case id="test27" strength="TERTIARY" locale="en"> 203 <test-case id="test28" strength="TERTIARY" locale="en"> 229 <test-case id="test32" strength="TERTIARY" norm="ON"> 235 <test-case id="test32a" strength="TERTIARY" norm="OFF"> 245 <test-case id="test40" strength="TERTIARY"> [all...] |
/external/icu4c/test/intltest/ |
decoll.h | 9 * specific primary, secondary and tertiary rules. For example, o-umlaut 37 // perform tests with strength TERTIARY
|
encoll.h | 9 * specific primary, secondary and tertiary rules. For example, the ignorable 39 // perform test with strength TERTIARY
|
escoll.h | 9 * specific primary and tertiary rules. This Spanish sort uses the traditional 36 // prforms test with strength TERTIARY
|
ficoll.h | 9 * specific primary and tertiary rules. For example, a-ring sorts after z 35 // perform test with strength TERTIARY
|
frcoll.h | 9 * specific tertiary rules. For example, the French secondary sorting on 34 // perform tests with strength TERTIARY
|
trcoll.h | 9 * specific primary and tertiary rules. For example, the dotless-i and dotted-I 35 // perform tests for turkish locale with strength TERTIARY
|
mnkytst.cpp | 92 myCollator->setStrength(Collator::TERTIARY); 95 int32_t result = collationKey1.compareTo(collationKey2); // Tertiary 96 int32_t revResult = collationKey2.compareTo(collationKey1); // Tertiary 164 myCollator->setStrength(Collator::TERTIARY); 165 int32_t result = myCollator->compare(subs, subt); // Tertiary 166 int32_t revResult = myCollator->compare(subt, subs); // Tertiary
|
allcoll.h | 39 // perform test with strength tertiary
|
jacoll.h | 9 * specific tertiary rules. For example, the term 'A-' (/u3041/u30fc) is
|
lcukocol.cpp | 67 myCollation->setStrength(Collator::TERTIARY);
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
CollatorTest.java | 52 assertTrue("a) Failed on tertiary difference", c.compare(o, o2) < 0); 62 c.setStrength(Collator.TERTIARY); 71 assertTrue("b) Failed on tertiary difference", c.compare(o, o2) < 0); 88 assertEquals("c) Failed on tertiary difference", 0, c.compare(o, o2)); 105 assertEquals("d) Failed on tertiary difference", 0, c.compare(o, o2)); 143 assertTrue("a) Failed on tertiary difference", !c.equals("e", "E")); 147 c.setStrength(Collator.TERTIARY); 151 assertTrue("b) Failed on tertiary difference", !c.equals("e", "E")); 159 assertTrue("c) Failed on tertiary difference", c.equals("e", "E")); 166 assertTrue("d) Failed on tertiary difference", c.equals("e", "E")) [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
CollatorTest.java | 34 collator.setStrength(Collator.TERTIARY); 35 assertEquals(Collator.TERTIARY, collator.getStrength()); 94 assertEquals(Collator.TERTIARY, coll.getStrength()); 102 coll.setStrength(Collator.TERTIARY);
|
/libcore/luni/src/main/java/java/text/ |
Collator.java | 45 * <li>TERTIARY strength: Upper and lower case differences in characters are 46 * distinguished at tertiary strength (for example, "ao" < "Ao" < 48 * on the tertiary strength (such as "A" and "Ⓐ"). Another example is the 49 * difference between large and small Kana. A tertiary difference is ignored 141 public static final int TERTIARY = 2; 297 * @return the strength value, either PRIMARY, SECONDARY, TERTIARY or 326 * the strength value, either PRIMARY, SECONDARY, TERTIARY, or 364 case Collator.TERTIARY: 382 javaValue = Collator.TERTIARY;
|