Home
last modified time | relevance | path

Searched refs:ICON_UNDEFINED (Results 1 – 13 of 13) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
DKeySpecParserTestsBase.java20 import static com.android.inputmethod.keyboard.internal.KeyboardIconsSet.ICON_UNDEFINED;
85 "a", null, ICON_UNDEFINED, 'a'); in testSingleLetter()
87 SURROGATE_PAIR1, null, ICON_UNDEFINED, SURROGATE_CODE1); in testSingleLetter()
89 "|", null, ICON_UNDEFINED, '|'); in testSingleLetter()
91 "|", null, ICON_UNDEFINED, '|'); in testSingleLetter()
93 "\\", null, ICON_UNDEFINED, '\\'); in testSingleLetter()
95 ",", null, ICON_UNDEFINED, ','); in testSingleLetter()
97 ",", null, ICON_UNDEFINED, ','); in testSingleLetter()
99 "a", null, ICON_UNDEFINED, 'a'); in testSingleLetter()
101 SURROGATE_PAIR2, null, ICON_UNDEFINED, SURROGATE_CODE2); in testSingleLetter()
[all …]
DKeySpecParserTests.java19 import static com.android.inputmethod.keyboard.internal.KeyboardIconsSet.ICON_UNDEFINED;
51 null, null, ICON_UNDEFINED, CODE_UNSPECIFIED); in testEmptySpec()
53 null, null, ICON_UNDEFINED, CODE_UNSPECIFIED); in testEmptySpec()
DMoreKeySpecTests.java19 import static com.android.inputmethod.keyboard.internal.KeyboardIconsSet.ICON_UNDEFINED;
51 null, null, ICON_UNDEFINED, CODE_UNSPECIFIED); in testEmptySpec()
53 null, null, ICON_UNDEFINED, CODE_UNSPECIFIED); in testEmptySpec()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKey.java19 import static com.android.inputmethod.keyboard.internal.KeyboardIconsSet.ICON_UNDEFINED;
194 && disabledIconId == ICON_UNDEFINED && visualInsetsLeft == 0 in newInstance()
231 ICON_UNDEFINED, 0 /* visualInsetsLeft */, 0 /* visualInsetsRight */); in Key()
542 final String topVisual = (iconId == KeyboardIconsSet.ICON_UNDEFINED) in toLongString()
815 final int disabledIconId = (attrs != null) ? attrs.mDisabledIconId : ICON_UNDEFINED; in getIcon()
1017 super(null /* label */, ICON_UNDEFINED, CODE_UNSPECIFIED, null /* outputText */, in Spacer()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
DExpectedKeyVisual.java128 return KeyboardIconsSet.ICON_UNDEFINED; in getIconId()
156 && key.getIconId() == KeyboardIconsSet.ICON_UNDEFINED; in hasSameKeyVisual()
165 && moreKeySpec.mIconId == KeyboardIconsSet.ICON_UNDEFINED; in hasSameKeyVisual()
DActualKeyboardBuilder.java113 final String visual = (iconId != KeyboardIconsSet.ICON_UNDEFINED) in toString()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyboardIconsSet.java36 public static final int ICON_UNDEFINED = 0; field in KeyboardIconsSet
98 int iconId = ICON_UNDEFINED;
DKeySpecParser.java241 return KeyboardIconsSet.ICON_UNDEFINED; in getIconId()
244 return KeyboardIconsSet.ICON_UNDEFINED; in getIconId()
DKeyPreviewView.java58 if (iconId != KeyboardIconsSet.ICON_UNDEFINED) { in setPreviewVisual()
DMoreKeySpec.java116 final String label = (mIconId == KeyboardIconsSet.ICON_UNDEFINED ? mLabel in toString()
DKeyboardBuilder.java458 final Key key = new Key(label, KeyboardIconsSet.ICON_UNDEFINED, code, outputText, in parseGridRows()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
DMoreSuggestions.java242 super(word /* label */, KeyboardIconsSet.ICON_UNDEFINED, Constants.CODE_OUTPUT_TEXT, in MoreSuggestionKey()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
DKeyboardLayoutSetNavigateMoreKeysBase.java75 mIconId = KeyboardIconsSet.ICON_UNDEFINED; in ExpectedMoreKey()