HomeSort by relevance Sort by last modified time
    Searched refs:needsToUpperCase (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpec.java 32 public MoreKeySpec(final String moreKeySpec, boolean needsToUpperCase, final Locale locale,
35 KeySpecParser.getLabel(moreKeySpec), needsToUpperCase, locale);
37 KeySpecParser.getCode(moreKeySpec, codesSet), needsToUpperCase, locale);
46 KeySpecParser.getOutputText(moreKeySpec), needsToUpperCase, locale);
KeySpecParser.java 429 public static int toUpperCaseOfCodeForLocale(final int code, final boolean needsToUpperCase,
431 if (!Constants.isLetterCode(code) || !needsToUpperCase) return code;
434 text, needsToUpperCase, locale);
440 final boolean needsToUpperCase, final Locale locale) {
441 if (text == null || !needsToUpperCase) return text;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 264 final boolean needsToUpperCase = needsToUpperCase(mLabelFlags, params.mId.mElementId);
302 moreKeys[i], needsToUpperCase, locale, params.mCodesSet);
313 R.styleable.Keyboard_Key_keyLabel), needsToUpperCase, locale);
319 R.styleable.Keyboard_Key_keyHintLabel), needsToUpperCase, locale);
322 R.styleable.Keyboard_Key_keyOutputText), needsToUpperCase, locale);
351 mCode = KeySpecParser.toUpperCaseOfCodeForLocale(code, needsToUpperCase, locale);
356 needsToUpperCase, locale);
374 private static boolean needsToUpperCase(final int labelFlags, final int keyboardElementId) {
    [all...]

Completed in 27 milliseconds