Home
last modified time | relevance | path

Searched refs:textsSet (Results 1 – 3 of 3) 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/java/src/com/android/inputmethod/keyboard/internal/
DKeyStylesSet.java42 public KeyStylesSet(final KeyboardTextsSet textsSet) { in KeyStylesSet() argument
43 mTextsSet = textsSet; in KeyStylesSet()
44 mEmptyKeyStyle = new EmptyKeyStyle(textsSet); in KeyStylesSet()
49 EmptyKeyStyle(final KeyboardTextsSet textsSet) { in EmptyKeyStyle() argument
50 super(textsSet); in EmptyKeyStyle()
79 public DeclaredKeyStyle(final String parentStyleName, final KeyboardTextsSet textsSet, in DeclaredKeyStyle() argument
81 super(textsSet); in DeclaredKeyStyle()
DKeyStyle.java29 protected KeyStyle(final KeyboardTextsSet textsSet) { in KeyStyle() argument
30 mTextsSet = textsSet; in KeyStyle()