Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DMoreKeySpec.java61 mLabel = needsToUpperCase ? StringUtils.toTitleCaseOfKeyLabel(label, locale) : label; in MoreKeySpec()
74 ? StringUtils.toTitleCaseOfKeyLabel(outputText, locale) : outputText; in MoreKeySpec()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKey.java354 ? StringUtils.toTitleCaseOfKeyLabel(label, localeForUpcasing) in Key()
363 ? StringUtils.toTitleCaseOfKeyLabel(hintLabel, localeForUpcasing) in Key()
368 outputText = StringUtils.toTitleCaseOfKeyLabel(outputText, localeForUpcasing); in Key()
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DStringUtils.java601 public static String toTitleCaseOfKeyLabel(@Nullable final String label, in toTitleCaseOfKeyLabel() method in StringUtils
614 final String titleCaseLabel = toTitleCaseOfKeyLabel(label, locale); in toTitleCaseOfKeyCode()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
DExpectedKeyVisual.java138 return new Label(StringUtils.toTitleCaseOfKeyLabel(mLabel, locale)); in toUpperCase()
DExpectedKeyOutput.java66 return newInstance(StringUtils.toTitleCaseOfKeyLabel(codeString, locale)); in toUpperCase()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
DStringUtilsTests.java34 StringUtils.toTitleCaseOfKeyLabel(lowerCase, locale)); in assert_toTitleCaseOfKeyLabel()