Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/applications/
DAppUtilsTest.java134 assertThat(AppUtils.isAppInstalled(null)).isFalse(); in isAppInstalled_noAppEntry_shouldReturnFalse()
143 assertThat(AppUtils.isAppInstalled(appEntry)).isTrue(); in isAppInstalled_hasAppEntryWithInstalledFlag_shouldReturnTrue()
151 assertThat(AppUtils.isAppInstalled(appEntry)).isFalse(); in isAppInstalled_hasAppEntryWithoutInstalledFlag_shouldReturnFalse()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
DAppUtils.java295 public static boolean isAppInstalled(ApplicationsState.AppEntry appEntry) { in isAppInstalled() method in AppUtils