Home
last modified time | relevance | path

Searched refs:createBrowsePendingIntent (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/slice/
DSliceUtil.kt104 fun SliceUri.createBrowsePendingIntent(): PendingIntent? { in createBrowsePendingIntent() method
109 return createBrowsePendingIntent(context, browseActivityClass, destination, entryId) in createBrowsePendingIntent()
112 fun Intent.createBrowsePendingIntent(): PendingIntent? { in createBrowsePendingIntent() method
117 return createBrowsePendingIntent(context, browseActivityClass, destination, entryId) in createBrowsePendingIntent()
120 private fun createBrowsePendingIntent( in createBrowsePendingIntent() method
/frameworks/base/packages/SettingsLib/Spa/tests/src/com/android/settingslib/spa/slice/
DSliceUtilTest.kt82 assertThat(Uri.EMPTY.createBrowsePendingIntent()).isNull() in createBrowsePendingIntentTest()
85 assertThat(Intent().createBrowsePendingIntent()).isNull() in createBrowsePendingIntentTest()
91 val pendingIntent = sliceUri.createBrowsePendingIntent() in createBrowsePendingIntentTest()
101 val pendingIntent2 = intent.createBrowsePendingIntent() in createBrowsePendingIntentTest()
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/slice/provider/
DDemo.kt30 import com.android.settingslib.spa.slice.createBrowsePendingIntent
33 val intent = sliceUri.createBrowsePendingIntent() ?: return null in createDemoBrowseSlice()
/frameworks/base/packages/SettingsLib/Spa/gallery/src/com/android/settingslib/spa/gallery/preference/
DPreferencePageProvider.kt51 import com.android.settingslib.spa.slice.createBrowsePendingIntent in <lambda>()
276 val intent = owner.createIntent()?.createBrowsePendingIntent() in <lambda>()