HomeSort by relevance Sort by last modified time
    Searched refs:QUATERNARY (Results 1 - 25 of 37) sorted by null

1 2

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationKanaTest.java 152 myCollation.setStrength(Collator.QUATERNARY);
163 myCollation.setStrength(Collator.QUATERNARY);
180 rb.setStrength(Collator.QUATERNARY);
UCAConformanceTest.java 130 coll.setStrength(isAtLeastUCA62 ? Collator.IDENTICAL : Collator.QUATERNARY);
CollationMiscTest.java 527 Object[] val = { new Integer(Collator.QUATERNARY), };
530 Object valShifted[] = { new Integer(Collator.QUATERNARY),
    [all...]
CollationAPITest.java     [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationKanaTest.java 148 myCollation.setStrength(Collator.QUATERNARY);
159 myCollation.setStrength(Collator.QUATERNARY);
176 rb.setStrength(Collator.QUATERNARY);
UCAConformanceTest.java 126 coll.setStrength(isAtLeastUCA62 ? Collator.IDENTICAL : Collator.QUATERNARY);
CollationMiscTest.java 523 Object[] val = { new Integer(Collator.QUATERNARY), };
526 Object valShifted[] = { new Integer(Collator.QUATERNARY),
    [all...]
CollationAPITest.java     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringSearch.java 423 // **** hack to deal w/ how processed CEs encode quaternary ****
425 if ((strength_ < Collator.QUATERNARY && newStrength >= Collator.QUATERNARY)
426 || (strength_ >= Collator.QUATERNARY && newStrength < Collator.QUATERNARY)) {
616 if (strength_ >= Collator.QUATERNARY) {
622 } else if (strength_ >= Collator.QUATERNARY && sourcece == CollationElementIterator.IGNORABLE) {
1655 long primary = 0, secondary = 0, tertiary = 0, quaternary = 0; local
    [all...]
Collator.java 65 * <li>QUATERNARY strength: When punctuation is ignored
72 * difference. The QUATERNARY strength should only be used if ignoring
178 public final static int QUATERNARY = 3;
324 * @see #QUATERNARY
654 "primary", "secondary", "tertiary", "quaternary", "identical");
655 coll.setStrength(strength <= Collator.QUATERNARY ? strength : Collator.IDENTICAL);
    [all...]
  /external/icu/icu4c/source/test/intltest/
jacoll.cpp 157 myCollation->setStrength(Collator::QUATERNARY);
172 myCollation->setStrength(Collator::QUATERNARY);
g7coll.cpp 105 myCollation->setStrength(Collator::QUATERNARY);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
StringSearch.java 438 // **** hack to deal w/ how processed CEs encode quaternary ****
440 if ((strength_ < Collator.QUATERNARY && newStrength >= Collator.QUATERNARY)
441 || (strength_ >= Collator.QUATERNARY && newStrength < Collator.QUATERNARY)) {
633 if (strength_ >= Collator.QUATERNARY) {
639 } else if (strength_ >= Collator.QUATERNARY && sourcece == CollationElementIterator.IGNORABLE) {
1671 long primary = 0, secondary = 0, tertiary = 0, quaternary = 0; local
    [all...]
Collator.java 64 * <li>QUATERNARY strength: When punctuation is ignored
71 * difference. The QUATERNARY strength should only be used if ignoring
182 public final static int QUATERNARY = 3;
343 * @see #QUATERNARY
684 "primary", "secondary", "tertiary", "quaternary", "identical");
685 coll.setStrength(strength <= Collator.QUATERNARY ? strength : Collator.IDENTICAL);
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
Collator.java 46 * <li>QUATERNARY strength: When punctuation is ignored
53 * difference. The QUATERNARY strength should only be used if ignoring
187 public final static int QUATERNARY = java.text.Collator.IDENTICAL;
259 * @see #QUATERNARY
262 * of PRIMARY, SECONDARY, TERTIARY, QUATERNARY or IDENTICAL.
717 * {@icunote} This can return QUATERNARY strength, which is not supported by the
727 * @see #QUATERNARY
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
CollatorTest.java 55 c.setStrength(Collator.QUATERNARY);
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
CollatorICU.java 106 case Collator.QUATERNARY:
107 // Note: No quaternary support in Java..
  /external/icu/icu4c/source/i18n/unicode/
coll.h 120 * <code>TERTIARY</code>, <code>QUATERNARY</code> and <code>IDENTICAL</code>.
198 QUATERNARY = UCOL_QUATERNARY, // 3
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationSettings.java 317 case Collator.QUATERNARY:
CollationBuilder.java 289 // Quaternary CEs are not supported.
290 // Non-zero quaternary weights are possible only on tertiary or stronger CEs.
487 if(strength == Collator.QUATERNARY && ce == 0) {
488 // The CE data structure does not support non-zero quaternary weights
491 "tailoring quaternary after tertiary ignorables not supported");
530 assert(Collator.PRIMARY <= strength && strength <= Collator.QUATERNARY);
565 // Root CEs must have common=zero quaternary weights (for which we never insert any nodes).
    [all...]
CollationRuleParser.java 259 strength = Collator.QUATERNARY;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationSettings.java 315 case Collator.QUATERNARY:
CollationBuilder.java 285 // Quaternary CEs are not supported.
286 // Non-zero quaternary weights are possible only on tertiary or stronger CEs.
483 if(strength == Collator.QUATERNARY && ce == 0) {
484 // The CE data structure does not support non-zero quaternary weights
487 "tailoring quaternary after tertiary ignorables not supported");
526 assert(Collator.PRIMARY <= strength && strength <= Collator.QUATERNARY);
561 // Root CEs must have common=zero quaternary weights (for which we never insert any nodes).
    [all...]
CollationRuleParser.java 255 strength = Collator.QUATERNARY;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/search/
SearchTest.java 18 import static android.icu.text.Collator.QUATERNARY;
    [all...]

Completed in 815 milliseconds

1 2