Home
last modified time | relevance | path

Searched refs:textsSet (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
DKeyboardTextsSetTests.java59 final KeyboardTextsSet textsSet = new KeyboardTextsSet(); in testSwitchToAlphaKeyLabel() local
62 textsSet.setLocale(locale, context); in testSwitchToAlphaKeyLabel()
63 final String switchToAlphaKeyLabel = textsSet.getText( in testSwitchToAlphaKeyLabel()
85 final KeyboardTextsSet textsSet = new KeyboardTextsSet(); in testTextFromResources() local
88 textsSet.setLocale(locale, context); in testTextFromResources()
90 final String text = textsSet.getText(name); in testTextFromResources()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
DKlpActionLabelTests.java118 final KeyboardTextsSet textsSet = new KeyboardTextsSet(); in doTestActionKeysInLocaleWithKeyboardTextsSet() local
119 textsSet.setLocale(labelLocale, getContext()); in doTestActionKeysInLocaleWithKeyboardTextsSet()
123 textsSet.getText("label_go_key")); in doTestActionKeysInLocaleWithKeyboardTextsSet()
127 textsSet.getText("label_send_key")); in doTestActionKeysInLocaleWithKeyboardTextsSet()
129 textsSet.getText("label_next_key")); in doTestActionKeysInLocaleWithKeyboardTextsSet()
131 textsSet.getText("label_done_key")); in doTestActionKeysInLocaleWithKeyboardTextsSet()
133 textsSet.getText("label_previous_key")); in doTestActionKeysInLocaleWithKeyboardTextsSet()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyStylesSet.java49 public KeyStylesSet(@Nonnull final KeyboardTextsSet textsSet) { in KeyStylesSet() argument
50 mTextsSet = textsSet; in KeyStylesSet()
51 mEmptyKeyStyle = new EmptyKeyStyle(textsSet); in KeyStylesSet()
56 EmptyKeyStyle(@Nonnull final KeyboardTextsSet textsSet) { in EmptyKeyStyle() argument
57 super(textsSet); in EmptyKeyStyle()
89 @Nonnull final KeyboardTextsSet textsSet, in DeclaredKeyStyle() argument
91 super(textsSet); in DeclaredKeyStyle()
DKeyStyle.java32 protected KeyStyle(@Nonnull final KeyboardTextsSet textsSet) { in KeyStyle() argument
33 mTextsSet = textsSet; in KeyStyle()