Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DStringUtils.java204 return s.toUpperCase(getLocaleUsedForToTitleCase(locale)); in capitalizeFirstCodePoint()
209 return s.substring(0, cutoff).toUpperCase(getLocaleUsedForToTitleCase(locale)) in capitalizeFirstCodePoint()
217 return s.toUpperCase(getLocaleUsedForToTitleCase(locale)); in capitalizeFirstAndDowncaseRest()
227 return s.substring(0, cutoff).toUpperCase(getLocaleUsedForToTitleCase(locale)) in capitalizeFirstAndDowncaseRest()
591 private static Locale getLocaleUsedForToTitleCase(@Nonnull final Locale locale) { in getLocaleUsedForToTitleCase() method in StringUtils
606 return label.toUpperCase(getLocaleUsedForToTitleCase(locale)); in toTitleCaseOfKeyLabel()