HomeSort by relevance Sort by last modified time
    Searched refs:onRemoved (Results 1 - 25 of 50) sorted by null

1 2

  /frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
BatchingListUpdateCallbackTest.java 79 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(3, 2)
    [all...]
SortedListBatchedCallbackTest.java 63 public void onRemoved() {
64 mBatchedCallback.onRemoved(2, 3);
67 verify(mMockCallback).onRemoved(2, 3);
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
ListUpdateCallback.java 40 void onRemoved(int position, int count);
AdapterListUpdateCallback.java 47 public void onRemoved(int position, int count) {
SortedListAdapterCallback.java 43 public void onRemoved(int position, int count) {
BatchingListUpdateCallback.java 64 mWrapped.onRemoved(mLastEventPosition, mLastEventCount);
89 public void onRemoved(int position, int count) {
SortedList.java 207 * 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);
    [all...]
AsyncListDiffer.java 204 mUpdateCallback.onRemoved(0, countRemoved);
  /frameworks/support/room/runtime/src/test/java/androidx/room/
ObservedTableTrackerTest.java 55 mTracker.onRemoved(3);
84 mTracker.onRemoved(2);
86 mTracker.onRemoved(2, 4);
89 mTracker.onRemoved(2, 4);
  /frameworks/base/core/java/android/hardware/fingerprint/
IFingerprintServiceReceiver.aidl 32 void onRemoved(long deviceId, int fingerId, int groupId, int remaining);
  /hardware/interfaces/biometrics/fingerprint/2.1/
IBiometricsFingerprintClientCallback.hal 66 oneway onRemoved(uint64_t deviceId, uint32_t fingerId, uint32_t groupId, uint32_t remaining);
  /frameworks/support/paging/runtime/src/main/java/androidx/paging/
PagedStorageDiffHelper.java 105 public void onRemoved(int position, int count) {
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);
AsyncPagedListDiffer.java 170 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/
RemovalClient.java 93 receiver.onRemoved(getHalDeviceId(), fingerId, groupId, remaining);
102 public boolean onRemoved(int fingerId, int groupId, int remaining) {
EnumerateClient.java 114 public boolean onRemoved(int fingerId, int groupId, int remaining) {
115 if (DEBUG) Slog.w(TAG, "onRemoved() called for enumerate!");
ClientMonitor.java 122 public abstract boolean onRemoved(int fingerId, int groupId, int remaining);
EnrollClient.java 129 public boolean onRemoved(int fingerId, int groupId, int remaining) {
130 if (DEBUG) Slog.w(TAG, "onRemoved() called for enroll!");
  /frameworks/support/paging/runtime/src/androidTest/java/androidx/paging/
PagedStorageDiffHelperTest.kt 69 verify(it).onRemoved(11, 1)
81 verify(it).onRemoved(0, 1)
AsyncPagedListDifferTest.kt 173 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/
AsyncListDifferTest.kt 159 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/
InvalidationTracker.java 277 if (wrapper != null && mObservedTableTracker.onRemoved(wrapper.mTableIds)) {
613 boolean onRemoved(int... tableIds) {
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmAdapter.java 138 public void onRemoved(int position, int count) {
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chatlist/
ChatListAdapter.java 84 public void onRemoved(int position, int count) {
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/contacts/
ContactsListAdapter.java 128 public void onRemoved(int position, int count) {
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmAdapter.java 138 public void onRemoved(int position, int count) {

Completed in 417 milliseconds

1 2