HomeSort by relevance Sort by last modified time
    Searched refs:dashboardCategory (Results 1 - 4 of 4) sorted by null

  /packages/apps/Settings/src/com/android/settings/security/
SecurityFeatureProvider.java 23 import com.android.settingslib.drawer.DashboardCategory;
31 DashboardCategory dashboardCategory);
SecurityFeatureProviderImpl.java 30 import com.android.settingslib.drawer.DashboardCategory;
62 final DashboardCategory dashboardCategory) {
66 int tilesCount = (dashboardCategory != null) ? dashboardCategory.getTilesCount() : 0;
71 initPreferences(context, preferenceScreen, dashboardCategory);
78 updatePreferencesToRunOnWorkerThread(context, preferenceScreen, dashboardCategory);
85 DashboardCategory dashboardCategory) {
86 int tilesCount = (dashboardCategory != null) ? dashboardCategory.getTilesCount() : 0
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/security/
SecurityFeatureProviderImplTest.java 33 import com.android.settingslib.drawer.DashboardCategory;
117 DashboardCategory dashboardCategory = new DashboardCategory();
118 dashboardCategory.addTile(new Tile());
120 mContext, getPreferenceScreen(), dashboardCategory);
143 DashboardCategory dashboardCategory = getDashboardCategory();
144 dashboardCategory.getTile(0).intent = new Intent().setPackage("package");
145 dashboardCategory.getTile(0).metaData = bundle
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
CategoryManager.java 50 private final Map<String, DashboardCategory> mCategoryByKeyMap;
52 private List<DashboardCategory> mCategories;
74 public synchronized DashboardCategory getTilesByCategory(Context context, String categoryKey) {
78 public synchronized DashboardCategory getTilesByCategory(Context context, String categoryKey,
85 public synchronized List<DashboardCategory> getCategories(Context context) {
89 public synchronized List<DashboardCategory> getCategories(Context context, String settingPkg) {
106 DashboardCategory category = mCategories.get(i);
131 for (DashboardCategory category : mCategories) {
143 Map<String, DashboardCategory> categoryByKeyMap) {
179 DashboardCategory newCategory = categoryByKeyMap.get(newCategoryKey)
    [all...]

Completed in 494 milliseconds