HomeSort by relevance Sort by last modified time
    Searched refs:isPhone (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/customizer/
PcQwertyCustomizer.java 30 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
35 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
40 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
45 public ExpectedKey[] getKeysRightToSpacebar(final boolean isPhone) {
46 return isPhone
LayoutCustomizer.java 85 * @param isPhone true if requesting phone's key.
88 public ExpectedKey getSymbolsShiftKey(boolean isPhone) {
89 return isPhone ? SYMBOLS_SHIFT_KEY : TABLET_SYMBOLS_SHIFT_KEY;
140 * @param isPhone true if requesting phone's keys.
144 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
150 * @param isPhone true if requesting phone's keys.
154 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
155 return isPhone ? EMPTY_KEYS : joinKeys(EXCLAMATION_AND_QUESTION_MARKS, SHIFT_KEY);
160 * @param isPhone true if requesting phone's key.
163 public ExpectedKey getEnterKey(final boolean isPhone) {
    [all...]
HindiCustomizer.java 37 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
38 return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
42 public ExpectedKey[] getKeysRightToSpacebar(final boolean isPhone) {
44 final ExpectedKey periodKey = key("\u0964", getPunctuationMoreKeys(isPhone));
49 public ExpectedKey[] getPunctuationMoreKeys(final boolean isPhone) {
50 return isPhone ? HINDI_PHONE_PUNCTUATION_MORE_KEYS : HINDI_TABLET_PUNCTUATION_MORE_KEYS;
DvorakCustomizer.java 29 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
30 return isPhone ? joinKeys(SHIFT_KEY): joinKeys(SHIFT_KEY, key("q"));
34 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
35 return isPhone ? EMPTY_KEYS : joinKeys(key("z"), SHIFT_KEY);
39 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
41 return isPhone ? joinKeys(key("q", SETTINGS_KEY))
46 public ExpectedKey[] getKeysRightToSpacebar(final boolean isPhone) {
48 convertToAdditionalMoreKeys(getPunctuationMoreKeys(isPhone));
50 return isPhone
TamilCustomizer.java 31 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
36 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
37 return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
NepaliCustomizer.java 37 public ExpectedKey[] getSpaceKeys(final boolean isPhone) {
42 public ExpectedKey[] getKeysRightToSpacebar(final boolean isPhone) {
44 final ExpectedKey periodKey = key("\u0964", getPunctuationMoreKeys(isPhone));
49 public ExpectedKey[] getPunctuationMoreKeys(final boolean isPhone) {
50 return isPhone ? NEPALI_PHONE_PUNCTUATION_MORE_KEYS
BengaliCustomizer.java 37 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
38 return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
EastSlavicCustomizer.java 31 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
32 return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
SouthSlavicLayoutCustomizer.java 34 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
35 return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
TestsDvorakEmail.java 63 public ExpectedKey getEnterKey(final boolean isPhone) {
64 return isPhone ? ENTER_KEY : super.getEnterKey(isPhone);
68 public ExpectedKey getEmojiKey(final boolean isPhone) {
73 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
74 return isPhone ? super.getKeysLeftToSpacebar(isPhone)
85 protected ExpectedKey getRow1_1Key(final boolean isPhone, final int elementId) {
86 if (isPhone && (elementId == KeyboardId.ELEMENT_ALPHABET
90 return super.getRow1_1Key(isPhone, elementId)
    [all...]
TestsDvorakUrl.java 61 public ExpectedKey getEnterKey(final boolean isPhone) {
62 return isPhone ? ENTER_KEY : super.getEnterKey(isPhone);
66 public ExpectedKey getEmojiKey(final boolean isPhone) {
71 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
72 return isPhone ? super.getKeysLeftToSpacebar(isPhone)
81 protected ExpectedKey getRow1_1Key(final boolean isPhone, final int elementId) {
82 if (isPhone && (elementId == KeyboardId.ELEMENT_ALPHABET
86 return super.getRow1_1Key(isPhone, elementId)
    [all...]
TestsSwedishPcQwerty.java 66 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
67 return mPcQwertyCustomizer.getLeftShiftKeys(isPhone);
71 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
72 return mPcQwertyCustomizer.getRightShiftKeys(isPhone);
76 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
77 return mPcQwertyCustomizer.getKeysLeftToSpacebar(isPhone);
81 public ExpectedKey[] getKeysRightToSpacebar(final boolean isPhone) {
82 return mPcQwertyCustomizer.getKeysRightToSpacebar(isPhone);
TestsQwertyEmail.java 59 public ExpectedKey getEnterKey(final boolean isPhone) {
60 return isPhone ? ENTER_KEY : super.getEnterKey(isPhone);
64 public ExpectedKey getEmojiKey(final boolean isPhone) {
69 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
TestsQwertyUrl.java 59 public ExpectedKey getEnterKey(final boolean isPhone) {
60 return isPhone ? ENTER_KEY : super.getEnterKey(isPhone);
64 public ExpectedKey getEmojiKey(final boolean isPhone) {
69 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/
LayoutBase.java 70 * @param isPhone true if requesting phone's layout.
74 final boolean isPhone) {
77 builder.setKeysOfRow(numberOfRows, (Object[])customizer.getSpaceKeys(isPhone));
79 numberOfRows, (Object[])customizer.getKeysLeftToSpacebar(isPhone));
81 numberOfRows, (Object[])customizer.getKeysRightToSpacebar(isPhone));
82 if (isPhone) {
85 .addKeysOnTheRightOfRow(numberOfRows, customizer.getEnterKey(isPhone));
88 .addKeysOnTheRightOfRow(numberOfRows - 2, customizer.getEnterKey(isPhone))
90 .addKeysOnTheRightOfRow(numberOfRows, customizer.getEmojiKey(isPhone));
93 numberOfRows - 1, (Object[])customizer.getLeftShiftKeys(isPhone));
    [all...]
ArmenianPhonetic.java 50 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
51 if (isPhone) {
64 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
66 return isPhone ? joinKeys(key("\u055D", SETTINGS_KEY))
71 public ExpectedKey[] getKeysRightToSpacebar(final boolean isPhone) {
73 final ExpectedKey fullStopKey = key("\u0589", getPunctuationMoreKeys(isPhone));
78 public ExpectedKey[] getPunctuationMoreKeys(final boolean isPhone) {
104 ExpectedKey[][] getCommonAlphabetLayout(final boolean isPhone) {
106 if (isPhone) {
184 public ExpectedKey[][] getLayout(final boolean isPhone) {
    [all...]
Arabic.java 61 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
66 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
71 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
72 if (isPhone) {
84 public ExpectedKey[] getKeysRightToSpacebar(final boolean isPhone) {
85 if (isPhone) {
86 return super.getKeysRightToSpacebar(isPhone);
91 return joinKeys(key(".", getPunctuationMoreKeys(isPhone)));
95 public ExpectedKey[] getPunctuationMoreKeys(final boolean isPhone) {
140 ExpectedKey[][] getCommonAlphabetLayout(final boolean isPhone) {
    [all...]
Dvorak.java 38 public ExpectedKey[][] getCommonAlphabetLayout(final boolean isPhone) {
44 * @param isPhone true if requesting phone's keys.
48 protected ExpectedKey getRow1_1Key(final boolean isPhone, final int elementId) {
58 * @param isPhone true if requesting phone's keys.
62 protected ExpectedKey getRow1_2Key(final boolean isPhone, final int elementId) {
72 * @param isPhone true if requesting phone's keys.
76 protected ExpectedKey getRow1_3Key(final boolean isPhone, final int elementId) {
85 public ExpectedKey[][] getLayout(final boolean isPhone, final int elementId) {
88 return super.getLayout(isPhone, elementId);
91 getCommonAlphabetLayout(isPhone));
    [all...]
PcQwerty.java 38 ExpectedKey[][] getCommonAlphabetLayout(final boolean isPhone) {
55 if (isPhone) {
72 ExpectedKey[][] getCommonAlphabetShiftLayout(final boolean isPhone, final int elementId) {
76 builder = new ExpectedKeyboardBuilder(getCommonAlphabetLayout(isPhone));
125 final boolean isPhone) {
127 builder.setKeysOfRow(5, (Object[])customizer.getSpaceKeys(isPhone));
128 builder.addKeysOnTheLeftOfRow(5, (Object[])customizer.getKeysLeftToSpacebar(isPhone));
129 builder.addKeysOnTheRightOfRow(5, (Object[])customizer.getKeysRightToSpacebar(isPhone));
130 if (isPhone) {
137 builder.addKeysOnTheLeftOfRow(4, (Object[])customizer.getLeftShiftKeys(isPhone))
    [all...]
Hebrew.java 69 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
74 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
75 return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
79 public ExpectedKey[] getPunctuationMoreKeys(final boolean isPhone) {
80 return isPhone ? RTL_PHONE_PUNCTUATION_MORE_KEYS
102 ExpectedKey[][] getCommonAlphabetLayout(final boolean isPhone) { return ALPHABET_COMMON; }
105 ExpectedKey[][] getCommonAlphabetShiftLayout(final boolean isPhone, final int elementId) {
176 public ExpectedKey[][] getLayout(final boolean isPhone) {
177 return new ExpectedKeyboardBuilder(super.getLayout(isPhone))
Farsi.java 59 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
64 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
69 public ExpectedKey[] getKeysLeftToSpacebar(final boolean isPhone) {
70 if (isPhone) {
83 public ExpectedKey[] getKeysRightToSpacebar(final boolean isPhone) {
84 if (isPhone) {
85 return super.getKeysRightToSpacebar(isPhone);
87 return joinKeys(key(".", getPunctuationMoreKeys(isPhone)));
91 public ExpectedKey[] getSpaceKeys(final boolean isPhone) {
96 public ExpectedKey[] getPunctuationMoreKeys(final boolean isPhone) {
    [all...]
SymbolsShifted.java 34 public ExpectedKey[][] getLayout(final boolean isPhone) {
38 if (isPhone) {
42 .addKeysOnTheRightOfRow(4, customizer.getEnterKey(isPhone));
49 .addKeysOnTheRightOfRow(2, customizer.getEnterKey(isPhone))
53 .addKeysOnTheRightOfRow(4, customizer.getEmojiKey(isPhone));
140 public ExpectedKey[][] getLayout(final boolean isPhone) {
141 return new ExpectedKeyboardBuilder(super.getLayout(isPhone))
Lao.java 58 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) { return EMPTY_KEYS; }
72 ExpectedKey[][] getCommonAlphabetLayout(final boolean isPhone) {
73 if (isPhone) {
82 public ExpectedKey[][] getCommonAlphabetShiftLayout(final boolean isPhone,
85 return getCommonAlphabetLayout(isPhone);
Kannada.java 54 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
59 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
60 return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
64 public ExpectedKey[] getSpaceKeys(final boolean isPhone) {
80 ExpectedKey[][] getCommonAlphabetLayout(boolean isPhone) { return ALPHABET_COMMON; }
83 ExpectedKey[][] getCommonAlphabetShiftLayout(boolean isPhone, final int elementId) {
Telugu.java 54 public ExpectedKey[] getLeftShiftKeys(final boolean isPhone) {
59 public ExpectedKey[] getRightShiftKeys(final boolean isPhone) {
60 return isPhone ? EMPTY_KEYS : EXCLAMATION_AND_QUESTION_MARKS;
64 public ExpectedKey[] getSpaceKeys(final boolean isPhone) {
80 ExpectedKey[][] getCommonAlphabetLayout(boolean isPhone) { return ALPHABET_COMMON; }
83 ExpectedKey[][] getCommonAlphabetShiftLayout(boolean isPhone, final int elementId) {

Completed in 141 milliseconds

1 2 3 4