Home
last modified time | relevance | path

Searched refs:mSeeAllPref (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/src/com/android/settings/applications/
DRecentAppsPreferenceController.java82 private Preference mSeeAllPref; field in RecentAppsPreferenceController
134 mSeeAllPref = screen.findPreference(KEY_SEE_ALL); in displayPreference()
150 mSeeAllPref.setTitle(mContext.getString(R.string.see_all_apps_title, num)); in updateState()
152 mSeeAllPref.setSummary(mContext.getString(R.string.apps_summary, num)); in updateState()
190 mSeeAllPref.setTitle(R.string.applications_settings); in displayOnlyAppInfo()
191 mSeeAllPref.setIcon(null); in displayOnlyAppInfo()
204 mSeeAllPref.setSummary(null); in displayRecentApps()
205 mSeeAllPref.setIcon(R.drawable.ic_chevron_right_24dp); in displayRecentApps()
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
DRecentAppsPreferenceControllerTest.java76 private Preference mSeeAllPref; field in RecentAppsPreferenceControllerTest
104 .thenReturn(mSeeAllPref); in setUp()
148 verify(mSeeAllPref).setTitle(R.string.applications_settings); in display_shouldNotShowRecents_showAppInfoPreference()
149 verify(mSeeAllPref).setIcon(null); in display_shouldNotShowRecents_showAppInfoPreference()
196 verify(mSeeAllPref).setSummary(null); in display_showRecents()
197 verify(mSeeAllPref).setIcon(R.drawable.ic_chevron_right_24dp); in display_showRecents()
231 verify(mSeeAllPref).setTitle(R.string.applications_settings); in display_hasRecentButNoneDisplayable_showAppInfo()
232 verify(mSeeAllPref).setIcon(null); in display_hasRecentButNoneDisplayable_showAppInfo()