HomeSort by relevance Sort by last modified time
    Searched full:case_first (Results 1 - 11 of 11) sorted by null

  /external/icu/icu4c/source/i18n/
collationsettings.h 70 * When CASE_FIRST is off, UPPER_FIRST must be off too, corresponding to
73 static const int32_t CASE_FIRST = 0x200;
78 static const int32_t CASE_FIRST_AND_UPPER_MASK = CASE_FIRST | UPPER_FIRST;
166 (option == CASE_FIRST) ? UCOL_LOWER_FIRST : UCOL_UPPER_FIRST;
186 return (options & (CASE_LEVEL | CASE_FIRST)) == CASE_FIRST;
collationsettings.cpp 318 options = noCaseFirst | CASE_FIRST;
ucol_sit.cpp 281 /* 08 CASE_FIRST */ {caseFirstArg, _processCollatorOption, UCOL_CASE_FIRST }, // case first L, U, X, D
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationSettings.java 62 * When CASE_FIRST is off, UPPER_FIRST must be off too, corresponding to
65 public static final int CASE_FIRST = 0x200;
70 public static final int CASE_FIRST_AND_UPPER_MASK = CASE_FIRST | UPPER_FIRST;
357 assert value == 0 || value == CASE_FIRST || value == CASE_FIRST_AND_UPPER_MASK;
414 return (options & (CASE_LEVEL | CASE_FIRST)) == CASE_FIRST;
CollationRuleParser.java 602 value = CollationSettings.CASE_FIRST; // UCOL_LOWER_FIRST
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationSettings.java 60 * When CASE_FIRST is off, UPPER_FIRST must be off too, corresponding to
63 public static final int CASE_FIRST = 0x200;
68 public static final int CASE_FIRST_AND_UPPER_MASK = CASE_FIRST | UPPER_FIRST;
355 assert value == 0 || value == CASE_FIRST || value == CASE_FIRST_AND_UPPER_MASK;
412 return (options & (CASE_LEVEL | CASE_FIRST)) == CASE_FIRST;
CollationRuleParser.java 598 value = CollationSettings.CASE_FIRST; // UCOL_LOWER_FIRST
    [all...]
  /external/v8/src/
i18n.cc 494 icu::UnicodeString case_first; local
495 if (ExtractStringSetting(isolate, options, "caseFirst", &case_first)) {
496 if (case_first == UNICODE_STRING_SIMPLE("upper")) {
498 } else if (case_first == UNICODE_STRING_SIMPLE("lower")) {
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedCollator.java 435 ownedSettings.setCaseFirst(lowerfirst ? CollationSettings.CASE_FIRST : 0);
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
RuleBasedCollator.java 444 ownedSettings.setCaseFirst(lowerfirst ? CollationSettings.CASE_FIRST : 0);
    [all...]
  /cts/tools/dex-tools/dex/
classes0.out.dex     [all...]

Completed in 682 milliseconds