Home
last modified time | relevance | path

Searched refs:REMOVE (Results 1 – 25 of 46) sorted by relevance

12

/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DAdapterHelper.java101 case UpdateOp.REMOVE: in preProcess()
151 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null); in applyRemove()
162 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null); in applyRemove()
178 op = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null); in applyRemove()
256 case UpdateOp.REMOVE: in dispatchAndUpdateViewHolders()
273 case UpdateOp.REMOVE: in dispatchAndUpdateViewHolders()
317 case UpdateOp.REMOVE: in dispatchFirstPassAndUpdateViewHolders()
347 } else if (cmd == UpdateOp.REMOVE) { in updatePositionWithPostponed()
355 } else if (cmd == UpdateOp.REMOVE) { in updatePositionWithPostponed()
366 } else if (cmd == UpdateOp.REMOVE) { in updatePositionWithPostponed()
[all …]
DOpReorderer.java42 case AdapterHelper.UpdateOp.REMOVE: in swapMoveOp()
81 moveOp.cmd = AdapterHelper.UpdateOp.REMOVE; in swapMoveRemove()
97 …extraRm = mCallback.obtainUpdateOp(AdapterHelper.UpdateOp.REMOVE, moveOp.positionStart + 1, remain… in swapMoveRemove()
DStaggeredGridLayoutManager.java1504 handleUpdate(positionStart, itemCount, AdapterHelper.UpdateOp.REMOVE);
1555 case AdapterHelper.UpdateOp.REMOVE:
DRecyclerView.java966 case AdapterHelper.UpdateOp.REMOVE: in initAdapterManager()
1823 .hasAnyUpdateTypes(AdapterHelper.UpdateOp.ADD | AdapterHelper.UpdateOp.REMOVE in consumePendingUpdateOperations()
/frameworks/base/core/java/com/android/internal/widget/
DAdapterHelper.java100 case UpdateOp.REMOVE: in preProcess()
150 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null); in applyRemove()
161 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null); in applyRemove()
177 op = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null); in applyRemove()
255 case UpdateOp.REMOVE: in dispatchAndUpdateViewHolders()
272 case UpdateOp.REMOVE: in dispatchAndUpdateViewHolders()
316 case UpdateOp.REMOVE: in dispatchFirstPassAndUpdateViewHolders()
346 } else if (cmd == UpdateOp.REMOVE) { in updatePositionWithPostponed()
354 } else if (cmd == UpdateOp.REMOVE) { in updatePositionWithPostponed()
365 } else if (cmd == UpdateOp.REMOVE) { in updatePositionWithPostponed()
[all …]
DOpReorderer.java21 import static com.android.internal.widget.AdapterHelper.UpdateOp.REMOVE;
49 case REMOVE: in swapMoveOp()
88 moveOp.cmd = REMOVE; in swapMoveRemove()
104 extraRm = mCallback.obtainUpdateOp(REMOVE, moveOp.positionStart + 1, remaining, null); in swapMoveRemove()
DRecyclerView.java826 case AdapterHelper.UpdateOp.REMOVE: in initAdapterManager()
1596 .hasAnyUpdateTypes(AdapterHelper.UpdateOp.ADD | AdapterHelper.UpdateOp.REMOVE in consumePendingUpdateOperations()
/frameworks/support/room/runtime/src/test/java/androidx/room/
DObservedTableTrackerTest.java23 import static androidx.room.InvalidationTracker.ObservedTableTracker.REMOVE;
56 assertThat(mTracker.getTablesToSync(), is(createResponse(3, REMOVE))); in basicRemove()
91 createResponse(1, ADD, 2, REMOVE, 3, ADD, 4, REMOVE))); in multipleAdditionsDeletions()
/frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
DSortedListTest.java100 mEvents.add(new Event(TYPE.REMOVE, position, count)); in setUp()
970 assertEquals(new Event(TYPE.REMOVE, 0, 1), mEvents.get(0)); in replaceAll_removalsAndAdds1_worksCorrectly()
972 assertEquals(new Event(TYPE.REMOVE, 1, 1), mEvents.get(2)); in replaceAll_removalsAndAdds1_worksCorrectly()
974 assertEquals(new Event(TYPE.REMOVE, 2, 1), mEvents.get(4)); in replaceAll_removalsAndAdds1_worksCorrectly()
997 assertEquals(new Event(TYPE.REMOVE, 1, 1), mEvents.get(1)); in replaceAll_removalsAndAdds2_worksCorrectly()
999 assertEquals(new Event(TYPE.REMOVE, 2, 1), mEvents.get(3)); in replaceAll_removalsAndAdds2_worksCorrectly()
1021 assertEquals(new Event(TYPE.REMOVE, 0, 1), mEvents.get(0)); in replaceAll_removalsAndAdds3_worksCorrectly()
1024 assertEquals(new Event(TYPE.REMOVE, 3, 1), mEvents.get(3)); in replaceAll_removalsAndAdds3_worksCorrectly()
1046 assertEquals(new Event(TYPE.REMOVE, 1, 1), mEvents.get(1)); in replaceAll_removalsAndAdds4_worksCorrectly()
1047 assertEquals(new Event(TYPE.REMOVE, 2, 1), mEvents.get(2)); in replaceAll_removalsAndAdds4_worksCorrectly()
[all …]
DOpReorderTest.java21 import static androidx.recyclerview.widget.AdapterHelper.UpdateOp.REMOVE;
199 orderedRandom(MOVE, REMOVE); in testRandomMoveRemove()
251 case REMOVE: in randOp()
291 return record(new UpdateOp(REMOVE, start, count, null)); in rm()
394 case UpdateOp.REMOVE: in apply()
DAdapterHelperTest.java993 return op(AdapterHelper.UpdateOp.REMOVE, start, count); in rmOp()
1091 AdapterHelper.UpdateOp.REMOVE, index, count, null in remove()
1123 case AdapterHelper.UpdateOp.REMOVE: in applyOps()
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
DObservableArrayListTest.java36 private static final int REMOVE = 4; field in ObservableArrayListTest
65 mNotifications.add(new ListChange(REMOVE, start, count));
226 assertEquals(REMOVE, change.change); in testClear()
242 assertEquals(REMOVE, change.change); in testRemoveIndex()
254 assertEquals(REMOVE, change.change); in testRemoveObject()
/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkAgentInfo.java282 private static final boolean REMOVE = false; field in NetworkAgentInfo
320 updateRequestCounts(REMOVE, existing); in addRequest()
333 updateRequestCounts(REMOVE, existing); in removeRequest()
/frameworks/support/room/runtime/src/main/java/androidx/room/
DInvalidationTracker.java428 case ObservedTableTracker.REMOVE: in syncTriggers()
565 static final int REMOVE = 2; // remove triggers for this table field in InvalidationTracker.ObservedTableTracker
644 mTriggerStateChanges[i] = newState ? ADD : REMOVE; in getTablesToSync()
/frameworks/av/include/media/
DAudioMixer.h86 REMOVE = 0x4102, // Remove the sample rate converter on this track name; enumerator
/frameworks/av/media/libaudioclient/include/media/
DAudioMixer.h86 REMOVE = 0x4102, // Remove the sample rate converter on this track name; enumerator
/frameworks/av/services/audioflinger/
DFastMixer.cpp304 AudioMixer::REMOVE, NULL); in onStateChange()
/frameworks/av/media/libaudioprocessing/
DAudioMixer.cpp602 case REMOVE: in setParameter()
/frameworks/support/mediarouter/api/
Dcurrent.txt88 field public static final java.lang.String ACTION_REMOVE = "android.media.intent.action.REMOVE";
/frameworks/support/mediarouter/api_legacy/
D27.0.0.txt88 field public static final java.lang.String ACTION_REMOVE = "android.media.intent.action.REMOVE";
D26.0.0.txt88 field public static final java.lang.String ACTION_REMOVE = "android.media.intent.action.REMOVE";
Dcurrent.txt88 field public static final java.lang.String ACTION_REMOVE = "android.media.intent.action.REMOVE";
D27.1.0.txt88 field public static final java.lang.String ACTION_REMOVE = "android.media.intent.action.REMOVE";
D28.0.0-alpha1.txt88 field public static final java.lang.String ACTION_REMOVE = "android.media.intent.action.REMOVE";
D26.1.0.txt88 field public static final java.lang.String ACTION_REMOVE = "android.media.intent.action.REMOVE";

12