Home
last modified time | relevance | path

Searched refs:CASE_FIRST (Results 1 – 9 of 9) sorted by relevance

/external/icu/icu4c/source/i18n/
Dcollationsettings.h75 static const int32_t CASE_FIRST = 0x200; member
80 static const int32_t CASE_FIRST_AND_UPPER_MASK = CASE_FIRST | UPPER_FIRST;
168 (option == CASE_FIRST) ? UCOL_LOWER_FIRST : UCOL_UPPER_FIRST; in getCaseFirst()
188 return (options & (CASE_LEVEL | CASE_FIRST)) == CASE_FIRST; in isTertiaryWithCaseBits()
Dcollationsettings.cpp320 options = noCaseFirst | CASE_FIRST; in setCaseFirst()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationSettings.java65 public static final int CASE_FIRST = 0x200; field in CollationSettings
70 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; in setCaseFirst()
412 return (options & (CASE_LEVEL | CASE_FIRST)) == CASE_FIRST; in isTertiaryWithCaseBits()
DCollationRuleParser.java600 value = CollationSettings.CASE_FIRST; // UCOL_LOWER_FIRST in parseSetting()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationSettings.java67 public static final int CASE_FIRST = 0x200; field in CollationSettings
72 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; in setCaseFirst()
414 return (options & (CASE_LEVEL | CASE_FIRST)) == CASE_FIRST; in isTertiaryWithCaseBits()
DCollationRuleParser.java604 value = CollationSettings.CASE_FIRST; // UCOL_LOWER_FIRST in parseSetting()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DRuleBasedCollator.java446 ownedSettings.setCaseFirst(lowerfirst ? CollationSettings.CASE_FIRST : 0); in setLowerCaseFirst()
1295 return (settings.readOnly().getCaseFirst() == CollationSettings.CASE_FIRST); in isLowerCaseFirst()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRuleBasedCollator.java437 ownedSettings.setCaseFirst(lowerfirst ? CollationSettings.CASE_FIRST : 0); in setLowerCaseFirst()
1266 return (settings.readOnly().getCaseFirst() == CollationSettings.CASE_FIRST); in isLowerCaseFirst()
/external/cldr/tools/java/org/unicode/cldr/icu/
DLDMLConstants.java188 public static final String CASE_FIRST = "caseFirst"; field in LDMLConstants