Searched refs:themeId (Results 1 - 2 of 2) sorted by path

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardTheme.java35 // These should be aligned with Keyboard.themeId and Keyboard.Case.keyboardTheme
67 // Note: The themeId should be aligned with "themeId" attribute of Keyboard style
69 private KeyboardTheme(final int themeId, final String themeName, final int styleId, argument
71 mThemeId = themeId;
96 static KeyboardTheme searchKeyboardThemeById(final int themeId) { argument
99 if (theme.mThemeId == themeId) {
113 final int themeId = Integer.parseInt(klpThemeIdString);
114 final KeyboardTheme theme = searchKeyboardThemeById(themeId);
136 public static String getKeyboardThemeName(final int themeId) { argument
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
H A DKeyboardThemeTests.java50 private static boolean isValidKeyboardThemeId(final int themeId) { argument
51 switch (themeId) {
62 private void setKeyboardThemePreference(final String prefKey, final int themeId) { argument
63 final String themeIdString = Integer.toString(themeId);
64 if (isValidKeyboardThemeId(themeId) || themeId == THEME_ID_UNKNOWN) {
69 if (themeId == THEME_ID_NULL) {
74 // themeId == THEME_ID_ILLEGAL

Completed in 200 milliseconds