Searched defs:needsToUpperCase (Results 1 - 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpec.java32 public MoreKeySpec(final String moreKeySpec, boolean needsToUpperCase, final Locale locale, argument
35 KeySpecParser.getLabel(moreKeySpec), needsToUpperCase, locale);
37 KeySpecParser.getCode(moreKeySpec, codesSet), needsToUpperCase, locale);
46 KeySpecParser.getOutputText(moreKeySpec), needsToUpperCase, locale);
H A DKeySpecParser.java469 public static int toUpperCaseOfCodeForLocale(final int code, final boolean needsToUpperCase, argument
471 if (!Keyboard.isLetterCode(code) || !needsToUpperCase) return code;
474 text, needsToUpperCase, locale);
480 final boolean needsToUpperCase, final Locale locale) {
481 if (text == null || !needsToUpperCase) return text;
479 toUpperCaseOfStringForLocale(final String text, final boolean needsToUpperCase, final Locale locale) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKey.java263 final boolean needsToUpperCase = needsToUpperCase(mLabelFlags, params.mId.mElementId);
301 moreKeys[i], needsToUpperCase, locale, params.mCodesSet);
312 R.styleable.Keyboard_Key_keyLabel), needsToUpperCase, locale);
318 R.styleable.Keyboard_Key_keyHintLabel), needsToUpperCase, locale);
321 R.styleable.Keyboard_Key_keyOutputText), needsToUpperCase, locale);
350 mCode = KeySpecParser.toUpperCaseOfCodeForLocale(code, needsToUpperCase, locale);
355 needsToUpperCase, locale);
373 private static boolean needsToUpperCase(final int labelFlags, final int keyboardElementId) { method in class:Key

Completed in 90 milliseconds