Home
last modified time | relevance | path

Searched refs:CASE_FIRST_AND_UPPER_MASK (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationSettings.java70 public static final int CASE_FIRST_AND_UPPER_MASK = CASE_FIRST | UPPER_FIRST; field in CollationSettings
355 assert value == 0 || value == CASE_FIRST || value == CASE_FIRST_AND_UPPER_MASK; in setCaseFirst() local
356 int noCaseFirst = options & ~CASE_FIRST_AND_UPPER_MASK; in setCaseFirst()
361 int noCaseFirst = options & ~CASE_FIRST_AND_UPPER_MASK; in setCaseFirstDefault()
362 options = noCaseFirst | (defaultOptions & CASE_FIRST_AND_UPPER_MASK); in setCaseFirstDefault()
366 return options & CASE_FIRST_AND_UPPER_MASK; in getCaseFirst()
423 return (options & (CASE_LEVEL | CASE_FIRST_AND_UPPER_MASK)) == CASE_FIRST_AND_UPPER_MASK; in sortsTertiaryUpperCaseFirst()
DCollationRuleParser.java602 value = CollationSettings.CASE_FIRST_AND_UPPER_MASK; // UCOL_UPPER_FIRST in parseSetting()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationSettings.java72 public static final int CASE_FIRST_AND_UPPER_MASK = CASE_FIRST | UPPER_FIRST; field in CollationSettings
357 assert value == 0 || value == CASE_FIRST || value == CASE_FIRST_AND_UPPER_MASK; in setCaseFirst() local
358 int noCaseFirst = options & ~CASE_FIRST_AND_UPPER_MASK; in setCaseFirst()
363 int noCaseFirst = options & ~CASE_FIRST_AND_UPPER_MASK; in setCaseFirstDefault()
364 options = noCaseFirst | (defaultOptions & CASE_FIRST_AND_UPPER_MASK); in setCaseFirstDefault()
368 return options & CASE_FIRST_AND_UPPER_MASK; in getCaseFirst()
425 return (options & (CASE_LEVEL | CASE_FIRST_AND_UPPER_MASK)) == CASE_FIRST_AND_UPPER_MASK; in sortsTertiaryUpperCaseFirst()
DCollationRuleParser.java606 value = CollationSettings.CASE_FIRST_AND_UPPER_MASK; // UCOL_UPPER_FIRST in parseSetting()
/external/icu/icu4c/source/i18n/
Dcollationsettings.h80 static const int32_t CASE_FIRST_AND_UPPER_MASK = CASE_FIRST | UPPER_FIRST; member
166 int32_t option = options & CASE_FIRST_AND_UPPER_MASK; in getCaseFirst()
199 return (options & (CASE_LEVEL | CASE_FIRST_AND_UPPER_MASK)) == CASE_FIRST_AND_UPPER_MASK; in sortsTertiaryUpperCaseFirst()
Dcollationsettings.cpp314 int32_t noCaseFirst = options & ~CASE_FIRST_AND_UPPER_MASK; in setCaseFirst()
323 options = noCaseFirst | CASE_FIRST_AND_UPPER_MASK; in setCaseFirst()
326 options = noCaseFirst | (defaultOptions & CASE_FIRST_AND_UPPER_MASK); in setCaseFirst()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DRuleBasedCollator.java424 ownedSettings.setCaseFirst(upperfirst ? CollationSettings.CASE_FIRST_AND_UPPER_MASK : 0); in setUpperCaseFirst()
1280 return (settings.readOnly().getCaseFirst() == CollationSettings.CASE_FIRST_AND_UPPER_MASK); in isUpperCaseFirst()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRuleBasedCollator.java416 ownedSettings.setCaseFirst(upperfirst ? CollationSettings.CASE_FIRST_AND_UPPER_MASK : 0); in setUpperCaseFirst()
1252 return (settings.readOnly().getCaseFirst() == CollationSettings.CASE_FIRST_AND_UPPER_MASK); in isUpperCaseFirst()