Home
last modified time | relevance | path

Searched refs:categories (Results 1 – 22 of 22) sorted by relevance

/packages/apps/Settings/src/com/android/settings/core/
DCategoryMixin.java119 void onCategoriesChanged(Set<String> categories) { in onCategoriesChanged() argument
120 mCategoryListeners.forEach(listener -> listener.onCategoriesChanged(categories)); in onCategoriesChanged()
149 void onCategoriesChanged(@Nullable Set<String> categories); in onCategoriesChanged() argument
171 protected void onPostExecute(Set<String> categories) { in onPostExecute() argument
172 if (categories == null || !categories.isEmpty()) { in onPostExecute()
173 onCategoriesChanged(categories); in onPostExecute()
/packages/apps/Settings/tests/robotests/src/com/android/settings/homepage/contextualcards/
DContextualCardManagerTest.java480 final List<Integer> categories = Arrays.asList( in getCardsWithViewType_noSuggestionCards_shouldNotHaveHalfCards() local
488 categories); in getCardsWithViewType_noSuggestionCards_shouldNotHaveHalfCards()
500 final List<Integer> categories = Arrays.asList( in getCardsWithViewType_oneSuggestionCards_shouldNotHaveHalfCards() local
508 getContextualCardList(), categories); in getCardsWithViewType_oneSuggestionCards_shouldNotHaveHalfCards()
520 final List<Integer> categories = Arrays.asList( in getCardsWithViewType_twoConsecutiveSuggestionCards_shouldHaveTwoHalfCards() local
528 getContextualCardList(), categories); in getCardsWithViewType_twoConsecutiveSuggestionCards_shouldHaveTwoHalfCards()
544 final List<Integer> categories = Arrays.asList( in getCardsWithViewType_twoNonConsecutiveSuggestionCards_shouldNotHaveHalfCards() local
552 getContextualCardList(), categories); in getCardsWithViewType_twoNonConsecutiveSuggestionCards_shouldNotHaveHalfCards()
565 final List<Integer> categories = Arrays.asList( in getCardsWithViewType_threeConsecutiveSuggestionCards_shouldHaveTwoHalfCards() local
573 getContextualCardList(), categories); in getCardsWithViewType_threeConsecutiveSuggestionCards_shouldHaveTwoHalfCards()
[all …]
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
DInstalledAppListerTest.java209 final Set<String> categories = intent.getCategories(); in isLaunchIntentFor() field in InstalledAppListerTest
210 if (categories == null || categories.size() != 1 || in isLaunchIntentFor()
211 !categories.contains(Intent.CATEGORY_LAUNCHER)) { in isLaunchIntentFor()
DInstalledAppCounterTest.java253 final Set<String> categories = intent.getCategories(); in isLaunchIntentFor() field in InstalledAppCounterTest
254 if (categories == null || categories.size() != 1 || in isLaunchIntentFor()
255 !categories.contains(Intent.CATEGORY_LAUNCHER)) { in isLaunchIntentFor()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/
DDefaultCategoryProvider.java285 List<Category> categories = new ArrayList<>(); in getSystemCategories() local
287 return categories; in getSystemCategories()
295 return categories; in getSystemCategories()
340 categories.add(category); in getSystemCategories()
349 return categories; in getSystemCategories()
/packages/apps/OneTimeInitializer/src/com/android/onetimeinitializer/
DOneTimeInitializer.java113 final Set<String> categories = intent.getCategories(); in updateDialtactsLauncher() local
119 categories != null && in updateDialtactsLauncher()
120 categories.contains(Intent.CATEGORY_LAUNCHER)) { in updateDialtactsLauncher()
/packages/apps/Settings/src/com/android/settings/
DSettingsActivity.java274 ArrayList<DashboardCategory> categories = in onCreate() local
276 if (categories != null) { in onCreate()
278 mCategories.addAll(categories); in onCreate()
665 final List<DashboardCategory> categories = mDashboardFeatureProvider.getAllCategories(); in doUpdateTilesList() local
666 synchronized (categories) { in doUpdateTilesList()
667 for (DashboardCategory category : categories) { in doUpdateTilesList()
/packages/apps/Traceur/src/com/android/traceur/
DMainFragment.java307 Set<String> categories = mTags.getValues(); in refreshUi() local
308 mTags.setSummary(Receiver.getDefaultTagList().equals(categories) in refreshUi()
311 categories.size(), categories.size())); in refreshUi()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DButtonSelectionStateController.java165 String[] categories = carSystemBarButton.getCategories(); in addButtonWithSelectionState() local
166 for (int i = 0; i < categories.length; i++) { in addButtonWithSelectionState()
167 mButtonsByCategory.add(categories[i], carSystemBarButton); in addButtonWithSelectionState()
/packages/apps/ThemePicker/src/com/android/customization/model/theme/custom/
DThemeComponentOptionProvider.java41 String... categories) { in ThemeComponentOptionProvider() argument
44 for (String category : categories) { in ThemeComponentOptionProvider()
/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/
DTestCategoryProvider.java59 List<Category> categories = getTestCategories(); in fetchCategories()
60 for (Category category : categories) { in fetchCategories()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/role/model/
DIntentFilterData.java63 public IntentFilterData(@NonNull String action, @NonNull List<String> categories, in IntentFilterData() argument
66 mCategories = categories; in IntentFilterData()
DRoleParser.java576 List<String> categories = new ArrayList<>(); in parseIntentFilterData() local
606 validateNoDuplicateElement(category, categories, "category"); in parseIntentFilterData()
607 categories.add(category); in parseIntentFilterData()
634 return new IntentFilterData(action, categories, dataScheme, dataType); in parseIntentFilterData()
/packages/services/Telephony/src/com/android/phone/
DEccShortcutAdapter.java167 @NonNull List<Integer> categories) { in prepareEccMaterial() argument
170 for (int category : categories) { in prepareEccMaterial()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/handheld/
DPermissionAppsFragment.java268 private void onPackagesLoaded(Map<Category, List<Pair<String, UserHandle>>> categories) { in onPackagesLoaded() argument
281 if (context == null || getActivity() == null || categories == null) { in onPackagesLoaded()
315 for (Category grantCategory : categories.keySet()) { in onPackagesLoaded()
316 List<Pair<String, UserHandle>> packages = categories.get(grantCategory); in onPackagesLoaded()
/packages/apps/Settings/src/com/android/settings/dashboard/
DDashboardFragment.java162 public void onCategoriesChanged(Set<String> categories) { in onCategoriesChanged() argument
170 if (categories == null) { in onCategoriesChanged()
173 } else if (categories.contains(categoryKey)) { in onCategoriesChanged()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/
DCategorySelectorFragment.java437 private CategoryAdapter(List<Category> categories) { in CategoryAdapter() argument
438 mCategories = categories; in CategoryAdapter()
/packages/apps/Settings/src/com/android/settings/search/
DSettingsSearchIndexablesProvider.java203 final List<DashboardCategory> categories = FeatureFactory.getFactory(context) in querySiteMapPairs() local
205 for (DashboardCategory category : categories) { in querySiteMapPairs()
/packages/modules/Wifi/service/proto/src/
Dmetrics.proto2664 // WME data packet contention time statistics for all four categories: BE, BK, VI, VO
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...