Searched refs:isInterestedAppChange (Results 1 – 2 of 2) sorted by relevance
75 val isInterestedAppChange = packageInfoPresenter.isInterestedAppChange(intent) in isInterestedAppChange_packageChanged_isInterested() constant77 assertThat(isInterestedAppChange).isTrue() in isInterestedAppChange_packageChanged_isInterested()87 val isInterestedAppChange = packageInfoPresenter.isInterestedAppChange(intent) in isInterestedAppChange_fullyRemoved_notInterested() constant89 assertThat(isInterestedAppChange).isFalse() in isInterestedAppChange_fullyRemoved_notInterested()99 val isInterestedAppChange = packageInfoPresenter.isInterestedAppChange(intent) in isInterestedAppChange_removedBeforeReplacing_notInterested() constant101 assertThat(isInterestedAppChange).isFalse() in isInterestedAppChange_removedBeforeReplacing_notInterested()111 val isInterestedAppChange = packageInfoPresenter.isInterestedAppChange(intent) in isInterestedAppChange_archived_interested() constant113 assertThat(isInterestedAppChange).isTrue() in isInterestedAppChange_archived_interested()
90 ).filter(::isInterestedAppChange).filter(::isForThisApp) in <lambda>()93 fun isInterestedAppChange(intent: Intent) = in <lambda>() method in com.android.settings.spa.app.appinfo.PackageInfoPresenter