Searched refs:EXTRA_SLICE (Results 1 – 4 of 4) sorted by relevance
/frameworks/support/slices/core/src/androidTest/java/androidx/slice/compat/ |
D | SliceProviderCompatTest.java | 22 import static androidx.slice.compat.SliceProviderCompat.EXTRA_SLICE; 86 assertEquals(s.toString(), new Slice(result.getBundle(EXTRA_SLICE)).toString()); in testBindWithPermission() 119 assertNotEquals(s.toString(), new Slice(result.getBundle(EXTRA_SLICE)).toString()); in testBindWithoutPermission()
|
/frameworks/base/core/java/android/app/slice/ |
D | SliceProvider.java | 146 public static final String EXTRA_SLICE = "slice"; field in SliceProvider 367 b.putParcelable(EXTRA_SLICE, s); in call() 378 b.putParcelable(EXTRA_SLICE, s); in call() 380 b.putParcelable(EXTRA_SLICE, null); in call() 388 b.putParcelable(EXTRA_SLICE, uri); in call()
|
D | SliceManager.java | 260 return res.getParcelable(SliceProvider.EXTRA_SLICE); in bindSlice() 319 return res.getParcelable(SliceProvider.EXTRA_SLICE); in mapIntentToUri() 397 return res.getParcelable(SliceProvider.EXTRA_SLICE); in bindSlice()
|
/frameworks/support/slices/core/src/main/java/androidx/slice/compat/ |
D | SliceProviderCompat.java | 84 public static final String EXTRA_SLICE = "slice"; field in SliceProviderCompat 139 b.putParcelable(EXTRA_SLICE, s != null ? s.toBundle() : null); in call() 148 b.putParcelable(EXTRA_SLICE, s != null ? s.toBundle() : null); in call() 150 b.putParcelable(EXTRA_SLICE, null); in call() 157 b.putParcelable(EXTRA_SLICE, uri); in call() 300 Parcelable bundle = res.getParcelable(EXTRA_SLICE); in bindSlice() 390 Parcelable bundle = res.getParcelable(EXTRA_SLICE); in bindSlice() 507 return res.getParcelable(EXTRA_SLICE); in mapIntentToUri()
|