Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationSettings.java70 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.java604 value = CollationSettings.CASE_FIRST_AND_UPPER_MASK; // UCOL_UPPER_FIRST in parseSetting()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationSettings.java68 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.java600 value = CollationSettings.CASE_FIRST_AND_UPPER_MASK; // UCOL_UPPER_FIRST in parseSetting()
/external/icu/icu4c/source/i18n/
Dcollationsettings.h78 static const int32_t CASE_FIRST_AND_UPPER_MASK = CASE_FIRST | UPPER_FIRST; member
164 int32_t option = options & CASE_FIRST_AND_UPPER_MASK; in getCaseFirst()
197 return (options & (CASE_LEVEL | CASE_FIRST_AND_UPPER_MASK)) == CASE_FIRST_AND_UPPER_MASK; in sortsTertiaryUpperCaseFirst()
Dcollationsettings.cpp312 int32_t noCaseFirst = options & ~CASE_FIRST_AND_UPPER_MASK; in setCaseFirst()
321 options = noCaseFirst | CASE_FIRST_AND_UPPER_MASK; in setCaseFirst()
324 options = noCaseFirst | (defaultOptions & CASE_FIRST_AND_UPPER_MASK); in setCaseFirst()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRuleBasedCollator.java414 ownedSettings.setCaseFirst(upperfirst ? CollationSettings.CASE_FIRST_AND_UPPER_MASK : 0); in setUpperCaseFirst()
1247 return (settings.readOnly().getCaseFirst() == CollationSettings.CASE_FIRST_AND_UPPER_MASK); in isUpperCaseFirst()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DRuleBasedCollator.java422 ownedSettings.setCaseFirst(upperfirst ? CollationSettings.CASE_FIRST_AND_UPPER_MASK : 0); in setUpperCaseFirst()
1277 return (settings.readOnly().getCaseFirst() == CollationSettings.CASE_FIRST_AND_UPPER_MASK); in isUpperCaseFirst()