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

1 2

  /libcore/luni/src/main/java/java/text/
Collator.java 39 * <li>SECONDARY strength: Accents in the characters are considered secondary
41 * between letters can also be considered secondary differences, depending on
42 * the language. A secondary difference is ignored when there is a primary
49 * when there is a primary or secondary difference anywhere in the strings.
135 public static final int SECONDARY = 1;
301 * @return the strength value, either PRIMARY, SECONDARY, TERTIARY or
330 * the strength value, either PRIMARY, SECONDARY, TERTIARY, or
366 case Collator.SECONDARY:
367 return com.ibm.icu4jni.text.Collator.SECONDARY;
    [all...]
  /libcore/luni/src/main/java/com/ibm/icu4jni/text/
Collator.java 27 * Accents in the characters are considered secondary differences.
28 * Other differences between letters can also be considered secondary
35 public final static int SECONDARY = CollationAttribute.VALUE_SECONDARY;
164 * E.g. with strength == SECONDARY, the tertiary difference is ignored
167 * E.g. with strength == PRIMARY, the secondary and tertiary difference
172 * @see #SECONDARY
200 * @see #SECONDARY
  /libcore/luni/src/test/java/libcore/java/text/
CollatorTest.java 32 collator.setStrength(Collator.SECONDARY);
33 assertEquals(Collator.SECONDARY, collator.getStrength());
  /external/chromium/third_party/icu/public/i18n/unicode/
tblcoll.h 652 * <p>E.g. with strength == SECONDARY, the tertiary difference is ignored
653 * <p>E.g. with strength == PRIMARY, the secondary and tertiary difference
684 /* secondary strength increment */
690 /* mask off anything but secondary order */
698 /* use only the primary and secondary difference */
702 /* secondary order shift */
    [all...]
coll.h 123 * Five strengths are provided: <code>PRIMARY</code>, <code>SECONDARY</code>,
127 * while "e" and "\u00EA" are secondary differences, "e" and "E" are tertiary
165 * and the way in which secondary and tertiary differences are taken into
184 * PRIMARY to ignore secondary and tertiary differences.<br>
188 * Diacritical differences on the same base letter represent a secondary
189 * difference. Set comparison level to SECONDARY to ignore tertiary
191 * Example of secondary difference, "&auml;" >> "a".
210 SECONDARY = 1,
571 * <p>E.g. with strength == SECONDARY, the tertiary difference is ignored
572 * <p>E.g. with strength == PRIMARY, the secondary and tertiary differenc
    [all...]
  /external/icu4c/i18n/unicode/
tblcoll.h 652 * <p>E.g. with strength == SECONDARY, the tertiary difference is ignored
653 * <p>E.g. with strength == PRIMARY, the secondary and tertiary difference
684 /* secondary strength increment */
690 /* mask off anything but secondary order */
698 /* use only the primary and secondary difference */
702 /* secondary order shift */
    [all...]
coll.h 123 * Five strengths are provided: <code>PRIMARY</code>, <code>SECONDARY</code>,
127 * while "e" and "\u00EA" are secondary differences, "e" and "E" are tertiary
165 * and the way in which secondary and tertiary differences are taken into
184 * PRIMARY to ignore secondary and tertiary differences.<br>
188 * Diacritical differences on the same base letter represent a secondary
189 * difference. Set comparison level to SECONDARY to ignore tertiary
191 * Example of secondary difference, "&auml;" >> "a".
210 SECONDARY = 1,
571 * <p>E.g. with strength == SECONDARY, the tertiary difference is ignored
572 * <p>E.g. with strength == PRIMARY, the secondary and tertiary differenc
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
allcoll.cpp 77 /* test secondary > 26 */
123 myCollation->setStrength(Collator::SECONDARY);
167 /* result is 1, secondary differences only for ignorable space characters*/
170 errln("Comparing two strings with only secondary differences in C failed.\n");
mnkytst.cpp 99 myCollator->setStrength(Collator::SECONDARY);
102 result = collationKey1.compareTo(collationKey2); // Secondary
103 revResult = collationKey2.compareTo(collationKey1); // Secondary
169 myCollator->setStrength(Collator::SECONDARY);
170 result = myCollator->compare(subs, subt); // Secondary
171 revResult = myCollator->compare(subt, subs); // Secondary
frcoll.cpp 164 myCollation->setStrength(Collator::SECONDARY);
jacoll.cpp 131 myCollation->setStrength(Collator::SECONDARY);
regcoll.cpp 207 c->setStrength(Collator::SECONDARY);
347 String[] secondary = {
352 static const UChar secondary[][CollationRegressionTest::MAX_TOKEN_LEN] = local
359 compareArray(*c, secondary, ARRAY_LENGTH(secondary));
366 // Secondary/Tertiary comparison incorrect in French Secondary
383 c->setStrength(Collator::SECONDARY);
447 // French secondary collation checking at the end of compare iteration fails
463 c->setStrength(Collator::SECONDARY);
    [all...]
apicoll.cpp 166 col->setStrength(Collator::SECONDARY);
167 doAssert((col->getStrength() != Collator::TERTIARY), "collation object's strength is secondary difference");
169 doAssert((col->getStrength() == Collator::SECONDARY), "collation object has the wrong strength");
209 doAssert((col->getStrength() != Collator::SECONDARY), "collation object's strength is secondary difference");
636 col->setStrength(Collator::SECONDARY);
721 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should be the same");
739 /* NO! Secondary orders of two CEs are not related, especially in the case of '_' vs 'I' */
742 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should not be the same");
776 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should be the same")
    [all...]
itercoll.cpp 565 coll->setStrength(Collator::SECONDARY);
567 errln("Strength order for a secondary strength collator should be the third byte");
encoll.cpp 180 /* test secondary > 43 */
293 myCollation->setStrength(Collator::SECONDARY);
  /external/icu4c/test/intltest/
allcoll.cpp 77 /* test secondary > 26 */
123 myCollation->setStrength(Collator::SECONDARY);
167 /* result is 1, secondary differences only for ignorable space characters*/
170 errln("Comparing two strings with only secondary differences in C failed.\n");
mnkytst.cpp 99 myCollator->setStrength(Collator::SECONDARY);
102 result = collationKey1.compareTo(collationKey2); // Secondary
103 revResult = collationKey2.compareTo(collationKey1); // Secondary
169 myCollator->setStrength(Collator::SECONDARY);
170 result = myCollator->compare(subs, subt); // Secondary
171 revResult = myCollator->compare(subt, subs); // Secondary
frcoll.cpp 164 myCollation->setStrength(Collator::SECONDARY);
jacoll.cpp 131 myCollation->setStrength(Collator::SECONDARY);
regcoll.cpp 209 c->setStrength(Collator::SECONDARY);
349 String[] secondary = {
354 static const UChar secondary[][CollationRegressionTest::MAX_TOKEN_LEN] = local
361 compareArray(*c, secondary, ARRAY_LENGTH(secondary));
368 // Secondary/Tertiary comparison incorrect in French Secondary
385 c->setStrength(Collator::SECONDARY);
449 // French secondary collation checking at the end of compare iteration fails
465 c->setStrength(Collator::SECONDARY);
    [all...]
apicoll.cpp 172 col->setStrength(Collator::SECONDARY);
173 doAssert((col->getStrength() != Collator::TERTIARY), "collation object's strength is secondary difference");
175 doAssert((col->getStrength() == Collator::SECONDARY), "collation object has the wrong strength");
223 doAssert((col->getStrength() != Collator::SECONDARY), "collation object's strength is secondary difference");
636 col->setStrength(Collator::SECONDARY);
721 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should be the same");
739 /* NO! Secondary orders of two CEs are not related, especially in the case of '_' vs 'I' */
742 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should not be the same");
776 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should be the same")
    [all...]
itercoll.cpp 565 coll->setStrength(Collator::SECONDARY);
567 errln("Strength order for a secondary strength collator should be the third byte");
  /external/v8/src/
compiler.h 46 // the secondary compiler for split compilation and has to handle
50 SECONDARY
53 // A description of the compilation state at a bailout to the secondary
full-codegen.h 68 SECONDARY
  /external/v8/src/mips/
codegen-mips.h 99 // the secondary compiler for split compilation and has to handle
103 SECONDARY

Completed in 589 milliseconds

1 2