Searched refs:mAppList (Results 1 – 6 of 6) sorted by relevance
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/ |
D | AppWithAdminGrantedPermissionsListerTest.java | 92 private List<UserAppInfo> mAppList = Collections.emptyList(); field in AppWithAdminGrantedPermissionsListerTest 198 assertThat(mAppList.size()).isEqualTo(3); in verifyListInstalledApps() 199 InstalledAppListerTest.verifyListUniqueness(mAppList); in verifyListInstalledApps() 201 assertThat(InstalledAppListerTest.checkAppFound(mAppList, APP_1, MAIN_USER_ID)).isTrue(); in verifyListInstalledApps() 202 assertThat(InstalledAppListerTest.checkAppFound(mAppList, APP_2, MAIN_USER_ID)).isFalse(); in verifyListInstalledApps() 203 assertThat(InstalledAppListerTest.checkAppFound(mAppList, APP_3, MAIN_USER_ID)).isTrue(); in verifyListInstalledApps() 204 assertThat(InstalledAppListerTest.checkAppFound(mAppList, APP_4, MAIN_USER_ID)).isFalse(); in verifyListInstalledApps() 205 assertThat(InstalledAppListerTest.checkAppFound(mAppList, APP_5, MAIN_USER_ID)).isFalse(); in verifyListInstalledApps() 206 assertThat(InstalledAppListerTest.checkAppFound(mAppList, APP_6, MANAGED_PROFILE_ID)). in verifyListInstalledApps() 228 mAppList = list; in onAppListBuilt()
|
D | ApplicationFeatureProviderImplTest.java | 121 private List<UserAppInfo> mAppList = null; field in ApplicationFeatureProviderImplTest 163 mAppList = null; in testListPolicyInstalledApps() 164 mProvider.listPolicyInstalledApps((list) -> mAppList = list); in testListPolicyInstalledApps() 167 assertThat(mAppList).isNotNull(); in testListPolicyInstalledApps() 168 assertThat(mAppList.size()).isEqualTo(1); in testListPolicyInstalledApps() 169 assertThat(mAppList.get(0).appInfo.packageName).isEqualTo(APP_2); in testListPolicyInstalledApps() 240 mAppList = null; in testListAppsWithAdminGrantedPermissions() 242 (list) -> mAppList = list); in testListAppsWithAdminGrantedPermissions() 246 assertThat(mAppList).isNotNull(); in testListAppsWithAdminGrantedPermissions() 247 assertThat(mAppList.size()).isEqualTo(2); in testListAppsWithAdminGrantedPermissions() [all …]
|
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/ |
D | PrivateSpaceContainer.java | 33 private final AllApps mAppList; field in PrivateSpaceContainer 40 mAppList = appList; in PrivateSpaceContainer() 65 mAppList.getAppIcon(INSTALL_APP_TITLE); in verifyInstallAppButtonIsPresent() 87 AppIcon appIcon = mAppList.getAppIcon(appName); in verifyInstalledAppIsPresent()
|
/packages/apps/Settings/src/com/android/settings/users/ |
D | AppCopyFragment.java | 57 private PreferenceGroup mAppList; field in AppCopyFragment 110 mAppList = getPreferenceScreen(); in init() 111 mAppList.setOrderingAsAdded(false); in init() 198 mAppList.removeAll(); in populateApps() 223 mAppList.addPreference(p); in populateApps()
|
D | AppRestrictionsFragment.java | 90 private PreferenceGroup mAppList; field in AppRestrictionsFragment 245 mAppList = getAppPreferenceGroup(); in init() 246 mAppList.setOrderingAsAdded(false); in init() 361 mAppList.removeAll(); in populateApps() 418 p.setOrder(MAX_APP_RESTRICTIONS * (mAppList.getPreferenceCount() + 2)); in populateApps() 420 mAppList.addPreference(p); in populateApps() 469 mAppList.addPreference(p); in addLocationAppRestrictionsPreference() 486 for (int i = 0; i < mAppList.getPreferenceCount(); i++) { in updateAllEntries() 487 Preference pref = mAppList.getPreference(i); in updateAllEntries() 535 mAppList.findPreference(PKG_PREFIX+packageName); in onPreferenceChange() [all …]
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/ |
D | AppRestrictionsFragment.java | 102 private PreferenceGroup mAppList; field in AppRestrictionsFragment 301 mAppList = getAppPreferenceGroup(); in onCreate() 302 mAppList.setOrderingAsAdded(false); in onCreate() 434 mAppList.removeAll(); in populateApps() 498 p.setOrder(MAX_APP_RESTRICTIONS * (mAppList.getPreferenceCount() + 2)); in populateApps() 500 mAppList.addPreference(p); in populateApps() 549 mAppList.addPreference(p); in addLocationAppRestrictionsPreference() 580 for (int i = 0; i < mAppList.getPreferenceCount(); i++) { in updateAllEntries() 581 Preference pref = mAppList.getPreference(i); in updateAllEntries() 659 mAppList.findPreference(getKeyForPackage(packageName)); in onPreferenceChange() [all …]
|