/packages/apps/Launcher3/tests/src/com/android/launcher3/allapps/ |
D | TaplKeyboardFocusTest.java | 52 launcher.getAppsView().getActiveRecyclerView().getApps().getFocusedChild())); in testAllAppsFocusApp() 71 launcher.getAppsView().getActiveRecyclerView().getApps().getFocusedChild())); in testAllAppsExitSearchAndFocusApp() 102 launcher.getAppsView().getActiveRecyclerView().getApps().getFocusedChild() in testAllAppsExitSearchAndFocusSearchResults()
|
D | PrivateSpaceHeaderViewTest.java | 280 when(mAllAppsStore.getApps()).thenReturn(createAppInfoList()); in scrollForViewToBeVisibleInContainer_withHeader() 315 when(mAllAppsStore.getApps()).thenReturn(createAppInfoList()); in scrollForViewToBeVisibleInContainer_withHeaderNoTabs() 350 when(mAllAppsStore.getApps()).thenReturn(createAppInfoList()); in scrollForViewToBeVisibleInContainer_withHeaderAndLessAppRowSpace() 385 when(mAllAppsStore.getApps()).thenReturn(createAppInfoList()); in scrollForViewToBeVisibleInContainer_withNoHeader()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/appsearch/ |
D | AppSearchConsentWorker.java | 209 return (dao == null || dao.getApps() == null) ? List.of() : dao.getApps(); in getAppsWithConsent() 258 if (dao.getApps() != null && dao.getApps().contains(app)) { in addAppWithConsent() 262 dao.getApps() != null ? new ArrayList<>(dao.getApps()) : new ArrayList<>(); in addAppWithConsent() 298 if (dao == null || dao.getApps() == null || !dao.getApps().contains(app)) { in removeAppWithConsent() 302 dao.getApps().stream() in removeAppWithConsent()
|
D | AppSearchAppConsentDao.java | 131 public List<String> getApps() { in getApps() method in AppSearchAppConsentDao
|
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/allapps/ |
D | AlphabeticalAppsListTest.java | 97 when(mAllAppsStore.getApps()).thenReturn(createAppInfoListForMainAndPrivateUser()); in privateProfileEnabled_allPrivateProfileViewsArePresent() 124 when(mAllAppsStore.getApps()).thenReturn(createAppInfoListForMainAndPrivateUser()); in privateProfileEnabled_privateProfileAppsShownWithSeparator() 161 when(mAllAppsStore.getApps()).thenReturn(createAppInfoListForMainAndPrivateUser()); in privateProfileDisabled_onlyPrivateProfileHeaderViewIsPresent() 182 when(mAllAppsStore.getApps()).thenReturn(createAppInfoListForMainAndPrivateUser()); in privateProfileTransitioning_onlyPrivateProfileHeaderViewIsPresent() 203 when(mAllAppsStore.getApps()).thenReturn(createAppInfoListForMainAndPrivateUser()); in privateProfileHidden_noPrivateProfileViewIsPresent() 220 when(mAllAppsStore.getApps()).thenReturn(createAppInfoListForMainUser()); in privateProfileNotPresent_onlyMainUserViewsArePresent()
|
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/settings/activitydelegates/ |
D | AppsActivityActionDelegate.java | 126 mActivity, mAppsViewModel.getApps(), getOnclickListener, false); in configureSharedElements() 131 mAppsViewModel.getApps(), in configureSharedElements() 139 mAppsViewModel.getApps(), in configureSharedElements() 155 configureNotifyAdapterDataChange(mAppsViewModel.getApps(), adapter); in configureSharedElements()
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | RecyclerViewAnimationController.java | 103 List<BaseAllAppsAdapter.AdapterItem> allAppsAdapters = allAppsRecyclerView.getApps() in onProgressUpdated() 144 allAppsRecyclerView.getApps().getAdapterItems().get(adapterPosition), in onProgressUpdated() 214 getRecyclerView().getApps().getAdapterItems(); in onChildAttached()
|
D | WorkEduCard.java | 105 rv.getApps().getAdapterItems().remove(mPosition); in removeCard() 107 rv.getApps().getFastScrollerSections().remove(0); in removeCard()
|
D | AlphabeticalAppsList.java | 227 Stream<AppInfo> appSteam = Stream.of(mAllAppsStore.getApps()); in onAppsUpdated() 228 Stream<AppInfo> privateAppStream = Stream.of(mAllAppsStore.getApps()); in onAppsUpdated()
|
D | PrivateProfileManager.java | 430 allAppsRecyclerView.getApps().getAdapterItems(); in collapse() 556 mAllApps.getActiveRecyclerView().getApps().getAdapterItems(); in animateAlphaOfIcons() 674 allAppsRecyclerView.getApps().getAdapterItems(); in animateAlphaOfPrivateSpaceContainer()
|
D | WorkProfileManager.java | 181 return Stream.of(mAllApps.getAppsStore().getApps()).anyMatch(getItemInfoMatcher()); in hasWorkApps()
|
D | AllAppsStore.java | 77 public AppInfo[] getApps() { in getApps() method in AllAppsStore
|
D | AllAppsRecyclerView.java | 98 public AlphabeticalAppsList<?> getApps() { in getApps() method in AllAppsRecyclerView
|
D | ActivityAllAppsContainerView.java | 1020 mHasWorkApps = Stream.of(mAllAppsStore.getApps()) in onAppsUpdated() 1022 mHasPrivateApps = Stream.of(mAllAppsStore.getApps()) in onAppsUpdated() 1035 .withCardinality(mAllAppsStore.getApps().length) in onAppsUpdated()
|
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/settings/fragments/ |
D | AdServicesSettingsAppsFragment.java | 81 requireContext(), viewModel.getApps(), getOnclickListener, false); in setupViewModel() 98 .getApps() in setupViewModel()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/appsearch/src/com/android/adservices/service/appsearch/ |
D | AppSearchConsentWorkerTest.java | 285 when(mockDao.getApps()).thenReturn(apps); in testGetAppsWithConsent() 353 when(dao.getApps()).thenReturn(List.of()); in testAddAppWithConsent_failure() 371 when(dao.getApps()).thenReturn(List.of()); in testAddAppWithConsent() 379 verify(dao, atLeastOnce()).getApps(); in testAddAppWithConsent() 413 when(dao.getApps()).thenReturn(List.of(TEST)); in testRemoveAppWithConsent_failure() 436 when(dao.getApps()).thenReturn(List.of(TEST)); in testRemoveAppWithConsent() 443 verify(dao, atLeastOnce()).getApps(); in testRemoveAppWithConsent()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/specialaccess/ |
D | ManageApplicationsController.java | 162 public List<ApplicationsState.AppEntry> getApps() { in getApps() method in ManageApplicationsController
|
D | PictureInPicture.java | 139 return mManageApplicationsController.getApps().stream() in findEntriesUsingPackageName()
|
D | ManageAppOp.java | 228 return mManageApplicationsController.getApps().stream()
|
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/settings/viewmodels/ |
D | AppsViewModel.java | 92 public LiveData<ImmutableList<App>> getApps() { in getApps() method in AppsViewModel
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/users/ |
D | ProfileUserFragment.java | 111 view.findViewById(R.id.profile_spinner_apps), getApps()); in onViewCreated() 494 private ArrayList<String> getApps() { in getApps() method in ProfileUserFragment
|
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/model/v31/ |
D | PermissionUsages.java | 246 final List<PermissionApp> permissionApps = group.getPermissionApps().getApps(); in loadInBackground()
|
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/television/ |
D | PermissionAppsFragment.java | 150 for (PermissionApp app : permissionApps.getApps()) { in onPermissionsLoaded()
|
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/model/legacy/ |
D | PermissionApps.java | 156 public List<PermissionApp> getApps() { in getApps() method in PermissionApps
|