Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/spa_unit/src/com/android/settings/spa/app/appinfo/
DPackageInfoPresenterTest.kt75 val isInterestedAppChange = packageInfoPresenter.isInterestedAppChange(intent) in isInterestedAppChange_packageChanged_isInterested() constant
77 assertThat(isInterestedAppChange).isTrue() in isInterestedAppChange_packageChanged_isInterested()
87 val isInterestedAppChange = packageInfoPresenter.isInterestedAppChange(intent) in isInterestedAppChange_fullyRemoved_notInterested() constant
89 assertThat(isInterestedAppChange).isFalse() in isInterestedAppChange_fullyRemoved_notInterested()
99 val isInterestedAppChange = packageInfoPresenter.isInterestedAppChange(intent) in isInterestedAppChange_removedBeforeReplacing_notInterested() constant
101 assertThat(isInterestedAppChange).isFalse() in isInterestedAppChange_removedBeforeReplacing_notInterested()
111 val isInterestedAppChange = packageInfoPresenter.isInterestedAppChange(intent) in isInterestedAppChange_archived_interested() constant
113 assertThat(isInterestedAppChange).isTrue() in isInterestedAppChange_archived_interested()
/packages/apps/Settings/src/com/android/settings/spa/app/appinfo/
DPackageInfoPresenter.kt90 ).filter(::isInterestedAppChange).filter(::isForThisApp) in <lambda>()
93 fun isInterestedAppChange(intent: Intent) = in <lambda>() method in com.android.settings.spa.app.appinfo.PackageInfoPresenter