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.java147 assertThat(AppUtils.isAppInstalled(null)).isFalse(); in isAppInstalled_noAppEntry_shouldReturnFalse()
156 assertThat(AppUtils.isAppInstalled(appEntry)).isTrue(); in isAppInstalled_hasAppEntryWithInstalledFlag_shouldReturnTrue()
164 assertThat(AppUtils.isAppInstalled(appEntry)).isFalse(); in isAppInstalled_hasAppEntryWithoutInstalledFlag_shouldReturnFalse()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
DAppUtils.java301 public static boolean isAppInstalled(ApplicationsState.AppEntry appEntry) { in isAppInstalled() method in AppUtils