Searched refs:onRemoved (Results 1 - 25 of 36) sorted by relevance

12

/frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
H A DBatchingListUpdateCallbackTest.java79 mBatching.onRemoved(3, 2);
81 verify(mCallback).onRemoved(3, 2);
87 mBatching.onRemoved(3, 2);
88 mBatching.onRemoved(3, 1);
90 verify(mCallback).onRemoved(3, 3);
96 mBatching.onRemoved(3, 5);
97 mBatching.onRemoved(4, 2);
99 verify(mCallback).onRemoved(3, 5);
100 verify(mCallback).onRemoved(4, 2);
106 mBatching.onRemoved(
[all...]
H A DSortedListBatchedCallbackTest.java63 public void onRemoved() { method in class:SortedListBatchedCallbackTest
64 mBatchedCallback.onRemoved(2, 3);
67 verify(mMockCallback).onRemoved(2, 3);
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DListUpdateCallback.java40 void onRemoved(int position, int count); method in interface:ListUpdateCallback
H A DAdapterListUpdateCallback.java47 public void onRemoved(int position, int count) { method in class:AdapterListUpdateCallback
H A DSortedListAdapterCallback.java43 public void onRemoved(int position, int count) { method in class:SortedListAdapterCallback
H A DBatchingListUpdateCallback.java64 mWrapped.onRemoved(mLastEventPosition, mLastEventCount);
89 public void onRemoved(int position, int count) { method in class:BatchingListUpdateCallback
H A DSortedList.java207 * followed by an add and therefore dispatches {@link ListUpdateCallback#onRemoved(int, int)}
208 * and {@link ListUpdateCallback#onRemoved(int, int)} events. See {@link DiffUtil} if you want
294 mCallback.onRemoved(mNewDataStart, itemCount);
343 mCallback.onRemoved(mNewDataStart, 1);
567 * Removes the provided item from the list and calls {@link Callback#onRemoved(int, int)}.
579 * Removes the item at the given index and calls {@link Callback#onRemoved(int, int)}.
606 mCallback.onRemoved(index, 1);
829 mCallback.onRemoved(0, prevSize);
967 public void onRemoved(int position, int count) { method in class:SortedList.BatchedCallback
968 mBatchingListUpdateCallback.onRemoved(positio
[all...]
H A DAsyncListDiffer.java204 mUpdateCallback.onRemoved(0, countRemoved);
H A DDiffUtil.java853 updateCallback.onRemoved(start, count);
860 updateCallback.onRemoved(start + i, 1);
/frameworks/support/room/runtime/src/test/java/androidx/room/
H A DObservedTableTrackerTest.java55 mTracker.onRemoved(3);
84 mTracker.onRemoved(2);
86 mTracker.onRemoved(2, 4);
89 mTracker.onRemoved(2, 4);
/frameworks/base/core/java/android/hardware/fingerprint/
H A DIFingerprintServiceReceiver.aidl32 void onRemoved(long deviceId, int fingerId, int groupId, int remaining);
/frameworks/support/paging/runtime/src/main/java/androidx/paging/
H A DPagedStorageDiffHelper.java105 public void onRemoved(int position, int count) { method in class:PagedStorageDiffHelper.OffsettingListUpdateCallback
106 mCallback.onRemoved(position + mOffset, count);
111 mCallback.onRemoved(fromPosition + mOffset, toPosition + mOffset);
154 callback.onRemoved(oldList.size() - count, count);
161 callback.onRemoved(0, leadingOld - leadingNew);
H A DAsyncPagedListDiffer.java170 public void onRemoved(int position, int count) {
171 mUpdateCallback.onRemoved(position, count);
260 mUpdateCallback.onRemoved(0, removedCount);
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DRemovalClient.java93 receiver.onRemoved(getHalDeviceId(), fingerId, groupId, remaining);
102 public boolean onRemoved(int fingerId, int groupId, int remaining) { method in class:RemovalClient
H A DEnumerateClient.java114 public boolean onRemoved(int fingerId, int groupId, int remaining) { method in class:EnumerateClient
115 if (DEBUG) Slog.w(TAG, "onRemoved() called for enumerate!");
H A DClientMonitor.java122 public abstract boolean onRemoved(int fingerId, int groupId, int remaining); method in class:ClientMonitor
H A DEnrollClient.java129 public boolean onRemoved(int fingerId, int groupId, int remaining) { method in class:EnrollClient
130 if (DEBUG) Slog.w(TAG, "onRemoved() called for enroll!");
H A DAuthenticationClient.java322 public boolean onRemoved(int fingerId, int groupId, int remaining) { method in class:AuthenticationClient
323 if (DEBUG) Slog.w(TAG, "onRemoved() called for authenticate!");
/frameworks/support/paging/runtime/src/androidTest/java/androidx/paging/
H A DPagedStorageDiffHelperTest.kt69 verify(it).onRemoved(11, 1)
81 verify(it).onRemoved(0, 1)
H A DAsyncPagedListDifferTest.kt173 verify(callback).onRemoved(0, 26)
206 verify(callback).onRemoved(0, 26)
262 override fun onRemoved(position: Int, count: Int) {
335 override fun onRemoved(position: Int, count: Int) {}
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DAsyncListDifferTest.kt159 verify(callback).onRemoved(1, 1)
164 verify(callback).onRemoved(0, 1)
191 verify(callback).onRemoved(0, 3)
248 override fun onRemoved(position: Int, count: Int) {
315 override fun onRemoved(position: Int, count: Int) {}
/frameworks/support/room/runtime/src/main/java/androidx/room/
H A DInvalidationTracker.java277 if (wrapper != null && mObservedTableTracker.onRemoved(wrapper.mTableIds)) {
613 boolean onRemoved(int... tableIds) { method in class:InvalidationTracker.ObservedTableTracker
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DUiAutomationManager.java180 mUiAutomationService.onRemoved();
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DArrayObjectAdapter.java298 public void onRemoved(int position, int count) {
300 Log.d(TAG, "onRemoved");
/frameworks/support/paging/common/src/main/java/androidx/paging/
H A DPagedList.java767 public abstract void onRemoved(int position, int count); method in class:PagedList.Callback

Completed in 355 milliseconds

12