OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
483
public static int toUpperCaseOfCodeForLocale(final int code, final boolean
needsToUpperCase
,
485
if (!Constants.isLetterCode(code) || !
needsToUpperCase
) return code;
488
text,
needsToUpperCase
, locale);
494
final boolean
needsToUpperCase
, final Locale locale) {
495
if (text == null || !
needsToUpperCase
) return text;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java
276
final boolean
needsToUpperCase
=
needsToUpperCase
(mLabelFlags, params.mId.mElementId);
314
moreKeys[i],
needsToUpperCase
, locale, params.mCodesSet);
332
R.styleable.Keyboard_Key_keyLabel),
needsToUpperCase
, locale);
338
R.styleable.Keyboard_Key_keyHintLabel),
needsToUpperCase
, locale);
341
R.styleable.Keyboard_Key_keyOutputText),
needsToUpperCase
, locale);
368
mCode = KeySpecParser.toUpperCaseOfCodeForLocale(code,
needsToUpperCase
, locale);
373
needsToUpperCase
, locale);
413
private static boolean
needsToUpperCase
(final int labelFlags, final int keyboardElementId) {
[
all
...]
Completed in 25 milliseconds