Home
last modified time | relevance | path

Searched refs:mThemeId (Results 1 – 6 of 6) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DThemeSettingsFragment.java37 final int mThemeId; field in ThemeSettingsFragment.KeyboardThemePreference
42 mThemeId = id; in KeyboardThemePreference()
53 if (keyboardTheme.mThemeId == keyboardThemeIds[index]) { in updateKeyboardThemeSummary()
76 mSelectedThemeId = keyboardTheme.mThemeId; in onCreate()
83 mSelectedThemeId = pref.mThemeId; in onRadioButtonClicked()
107 final boolean selected = (mSelectedThemeId == pref.mThemeId); in updateSelected()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKeyboardTheme.java69 public final int mThemeId; field in KeyboardTheme
78 mThemeId = themeId; in KeyboardTheme()
94 return (o instanceof KeyboardTheme) && ((KeyboardTheme)o).mThemeId == mThemeId; in equals()
99 return mThemeId; in hashCode()
107 if (theme.mThemeId == themeId) { in searchKeyboardThemeById()
DKeyboard.java55 public final int mThemeId; field in Keyboard
105 mThemeId = params.mThemeId; in Keyboard()
133 mThemeId = keyboard.mThemeId; in Keyboard()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
DKeyboardThemeTests.java84 assertEquals(expectedThemeId, actualTheme.mThemeId); in assertKeyboardTheme()
150 assertEquals(expectedThemeId, defaultTheme.mThemeId); in assertDefaultKeyboardTheme()
205 assertEquals(expectedThemeId, theme.mThemeId); in assertUpgradeKeyboardToLxxOn()
399 assertEquals(THEME_ID_KLP, actualTheme.mThemeId); in testMissingSelectedThemeIcs()
414 assertEquals(THEME_ID_KLP, actualTheme.mThemeId); in testMissingSelectedThemeKlp()
429 assertEquals(THEME_ID_KLP, actualTheme.mThemeId); in testMissingSelectedThemeLxx()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyboardBuilder.java282 params.mThemeId = keyboardAttr.getInt(R.styleable.Keyboard_themeId, 0); in parseKeyboardAttributes()
652 R.styleable.Keyboard_Case_keyboardTheme, mParams.mThemeId, in parseCaseCondition()
653 KeyboardTheme.getKeyboardThemeName(mParams.mThemeId)); in parseCaseCondition()
DKeyboardParams.java35 public int mThemeId; field in KeyboardParams