Searched refs:getChangePayload (Results 1 - 15 of 15) sorted by relevance

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DDiffCallback.java62 * @see DiffUtil.Callback#getChangePayload(int, int)
65 public Object getChangePayload(@NonNull Value oldItem, @NonNull Value newItem) { method in class:DiffCallback
H A DArrayObjectAdapter.java275 public Object getChangePayload(int oldItemPosition, int newItemPosition) {
276 return callback.getChangePayload(mOldItems.get(oldItemPosition),
H A DGuidedActionAdapter.java213 public Object getChangePayload(int oldItemPosition, int newItemPosition) {
214 return mDiffCallback.getChangePayload(oldActions.get(oldItemPosition),
/frameworks/support/paging/runtime/src/main/java/androidx/paging/
H A DPagedStorageDiffHelper.java40 public Object getChangePayload(int oldItemPosition, int newItemPosition) {
46 return diffCallback.getChangePayload(oldItem, newItem);
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DAsyncListDiffer.java262 public Object getChangePayload(int oldItemPosition, int newItemPosition) {
266 return mConfig.getDiffCallback().getChangePayload(oldItem, newItem);
H A DSortedList.java320 mCallback.getChangePayload(oldItem, newItem));
457 mCallback.getChangePayload(oldItem, newItem));
554 mCallback.onChanged(index, 1, mCallback.getChangePayload(existing, item));
641 mCallback.onChanged(index, 1, mCallback.getChangePayload(existing, item));
647 mCallback.onChanged(index, 1, mCallback.getChangePayload(existing, item));
919 public Object getChangePayload(T2 item1, T2 item2) { method in class:SortedList.Callback
998 public Object getChangePayload(T2 item1, T2 item2) { method in class:SortedList.BatchedCallback
999 return mWrappedCallback.getChangePayload(item1, item2);
H A DDiffUtil.java352 public Object getChangePayload(int oldItemPosition, int newItemPosition) { method in class:DiffUtil.Callback
422 * @see Callback#getChangePayload(int, int)
426 public Object getChangePayload(@NonNull T oldItem, @NonNull T newItem) { method in class:DiffUtil.ItemCallback
785 mCallback.getChangePayload(snake.x + i, snake.y + i));
836 mCallback.getChangePayload(pos, globalIndex + i));
877 mCallback.getChangePayload(globalIndex + i, pos));
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
H A DObjectAdapterTest.java175 public Object getChangePayload(AdapterItem oldItem, method in class:ObjectAdapterTest.DiffCallbackPayloadTesting
725 // Check if getChangePayload is executed as we expected
727 Mockito.verify(mMockedCallback).getChangePayload(oldItem,
731 Bundle calculatedBundle0 = (Bundle) mMockedCallback.getChangePayload(
766 // Check if getChangePayload is executed as we expected
768 Mockito.verify(mMockedCallback).getChangePayload(oldItem,
772 Bundle calculatedBundle0 = (Bundle) mMockedCallback.getChangePayload(
808 // Check if getChangePayload is executed as we expected
810 Mockito.verify(mMockedCallback).getChangePayload(oldItem,
814 Bundle calculatedBundle0 = (Bundle) mMockedCallback.getChangePayload(
[all...]
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DAsyncListDifferTest.kt303 override fun getChangePayload(oldItem: String, newItem: String): Any? {
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
H A DSearchFragment.java67 public Object getChangePayload(PhotoItem oldItem, PhotoItem newItem) {
H A DSearchSupportFragment.java70 public Object getChangePayload(PhotoItem oldItem, PhotoItem newItem) {
/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
H A DSearchFragment.java67 public Object getChangePayload(PhotoItem oldItem, PhotoItem newItem) {
H A DSearchSupportFragment.java70 public Object getChangePayload(PhotoItem oldItem, PhotoItem newItem) {
/frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
H A DDiffUtilTest.java74 public Object getChangePayload(int oldItemIndex, int newItemIndex) {
H A DSortedListTest.java142 public Object getChangePayload(Item item1, Item item2) {

Completed in 198 milliseconds