Home
last modified time | relevance | path

Searched refs:getCaseLocale (Results 1 – 12 of 12) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCaseMap.java31 private static int getCaseLocale(Locale locale) { in getCaseLocale() method in CaseMap
35 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
115 return CaseMapImpl.toLower(getCaseLocale(locale), internalOptions, src, dest, edits); in apply()
161 return CaseMapImpl.toUpper(getCaseLocale(locale), internalOptions, src, dest, edits); in apply()
267 getCaseLocale(locale), internalOptions, iter, src, dest, edits); in apply()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCaseMap.java32 private static int getCaseLocale(Locale locale) { in getCaseLocale() method in CaseMap
36 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
108 return CaseMapImpl.toLower(getCaseLocale(locale), internalOptions, src, dest, edits); in apply()
151 return CaseMapImpl.toUpper(getCaseLocale(locale), internalOptions, src, dest, edits); in apply()
252 getCaseLocale(locale), internalOptions, iter, src, dest, edits); in apply()
DUppercaseTransliterator.java56 caseLocale = UCaseProps.getCaseLocale(locale); in UppercaseTransliterator()
DLowercaseTransliterator.java60 caseLocale = UCaseProps.getCaseLocale(locale); in LowercaseTransliterator()
DTitlecaseTransliterator.java59 caseLocale = UCaseProps.getCaseLocale(locale); in TitlecaseTransliterator()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUCaseProps.java617 public static final int getCaseLocale(Locale locale) { in getCaseLocale() method in UCaseProps
618 return getCaseLocale(locale.getLanguage()); in getCaseLocale()
620 public static final int getCaseLocale(ULocale locale) { in getCaseLocale() method in UCaseProps
621 return getCaseLocale(locale.getLanguage()); in getCaseLocale()
624 private static final int getCaseLocale(String language) { in getCaseLocale() method in UCaseProps
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUCaseProps.java621 public static final int getCaseLocale(Locale locale) { in getCaseLocale() method in UCaseProps
622 return getCaseLocale(locale.getLanguage()); in getCaseLocale()
624 public static final int getCaseLocale(ULocale locale) { in getCaseLocale() method in UCaseProps
625 return getCaseLocale(locale.getLanguage()); in getCaseLocale()
628 private static final int getCaseLocale(String language) { in getCaseLocale() method in UCaseProps
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DUCharacter.java4917 return UCaseProps.getCaseLocale(Locale.getDefault()); in getDefaultCaseLocale()
4920 private static int getCaseLocale(Locale locale) { in getCaseLocale() method in UCharacter
4924 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
4927 private static int getCaseLocale(ULocale locale) { in getCaseLocale() method in UCharacter
4931 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
5013 return toUpperCase(getCaseLocale(locale), str); in toUpperCase()
5025 return toUpperCase(getCaseLocale(locale), str); in toUpperCase()
5038 return toLowerCase(getCaseLocale(locale), str); in toLowerCase()
5050 return toLowerCase(getCaseLocale(locale), str); in toLowerCase()
5133 return toTitleCase(getCaseLocale(locale), options, titleIter, str); in toTitleCase()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DUCharacter.java4316 return UCaseProps.getCaseLocale(Locale.getDefault()); in getDefaultCaseLocale()
4319 private static int getCaseLocale(Locale locale) { in getCaseLocale() method in UCharacter
4323 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
4326 private static int getCaseLocale(ULocale locale) { in getCaseLocale() method in UCharacter
4330 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
4411 return toUpperCase(getCaseLocale(locale), str); in toUpperCase()
4422 return toUpperCase(getCaseLocale(locale), str); in toUpperCase()
4434 return toLowerCase(getCaseLocale(locale), str); in toLowerCase()
4445 return toLowerCase(getCaseLocale(locale), str); in toLowerCase()
4525 return toTitleCase(getCaseLocale(locale), options, titleIter, str); in toTitleCase()
[all …]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DLowercaseTransliterator.java59 caseLocale = UCaseProps.getCaseLocale(locale); in LowercaseTransliterator()
DUppercaseTransliterator.java55 caseLocale = UCaseProps.getCaseLocale(locale); in UppercaseTransliterator()
DTitlecaseTransliterator.java58 caseLocale = UCaseProps.getCaseLocale(locale); in TitlecaseTransliterator()