Searched defs:CASE_FIRST (Results 1 - 2 of 2) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcollationsettings.h70 * When CASE_FIRST is off, UPPER_FIRST must be off too, corresponding to
73 static const int32_t CASE_FIRST = 0x200; member in struct:CollationSettings
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;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationSettings.java60 * When CASE_FIRST is off, UPPER_FIRST must be off too, corresponding to
63 public static final int CASE_FIRST = 0x200; field in class:CollationSettings
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;

Completed in 943 milliseconds