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

1 2 3 4 5 6 7

  /frameworks/support/room/runtime/src/test/java/android/arch/persistence/room/
ObservedTableTrackerTest.java 23 import static android.arch.persistence.room.InvalidationTracker.ObservedTableTracker.REMOVE;
56 assertThat(mTracker.getTablesToSync(), is(createResponse(3, REMOVE)));
91 createResponse(1, ADD, 2, REMOVE, 3, ADD, 4, REMOVE)));
  /frameworks/base/core/java/com/android/internal/widget/
AdapterHelper.java 100 case UpdateOp.REMOVE:
128 // otherwise, it would be converted into a REMOVE operation
150 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null);
161 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null);
177 op = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null);
255 case UpdateOp.REMOVE:
259 throw new IllegalArgumentException("op should be remove or update." + op);
272 case UpdateOp.REMOVE:
289 tmpStart = updatedPos; // need to remove previously dispatched
316 case UpdateOp.REMOVE
    [all...]
OpReorderer.java 21 import static com.android.internal.widget.AdapterHelper.UpdateOp.REMOVE;
49 case REMOVE:
64 // check if move is nulled out by remove
88 moveOp.cmd = REMOVE;
91 list.remove(removePos);
94 // no need to swap, it is already a remove
98 // now affect of add is consumed. now apply effect of first remove
104 extraRm = mCallback.obtainUpdateOp(REMOVE, moveOp.positionStart + 1, remaining, null);
108 // if effects of move is reverted by remove, we are done.
111 list.remove(removePos)
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
AdapterHelper.java 100 case UpdateOp.REMOVE:
128 // otherwise, it would be converted into a REMOVE operation
150 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null);
161 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null);
177 op = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount, null);
255 case UpdateOp.REMOVE:
259 throw new IllegalArgumentException("op should be remove or update." + op);
272 case UpdateOp.REMOVE:
289 tmpStart = updatedPos; // need to remove previously dispatched
316 case UpdateOp.REMOVE
    [all...]
OpReorderer.java 21 import static android.support.v7.widget.AdapterHelper.UpdateOp.REMOVE;
49 case REMOVE:
64 // check if move is nulled out by remove
88 moveOp.cmd = REMOVE;
91 list.remove(removePos);
94 // no need to swap, it is already a remove
98 // now affect of add is consumed. now apply effect of first remove
104 extraRm = mCallback.obtainUpdateOp(REMOVE, moveOp.positionStart + 1, remaining, null);
108 // if effects of move is reverted by remove, we are done.
111 list.remove(removePos)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/logging/
QuickContactEvent.java 65 public static final int REMOVE = 6;
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
ObservableArrayListTest.java 36 private static final int REMOVE = 4;
65 mNotifications.add(new ListChange(REMOVE, start, count));
226 assertEquals(REMOVE, change.change);
239 assertEquals("Hello", mObservable.remove(0));
242 assertEquals(REMOVE, change.change);
251 assertTrue(mObservable.remove("Hello"));
254 assertEquals(REMOVE, change.change);
258 assertFalse(mObservable.remove("Hello"));
  /external/ImageMagick/config/
ar-lib 200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetBasherTest.java 142 case REMOVE: {
144 int oldValue = multiset.remove(key, delta);
164 REMOVE,
  /external/libnetfilter_conntrack/build-aux/
ar-lib 200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
  /external/pcre/dist2/
ar-lib 200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
TriggerManager.java 61 REMOVE;
112 menu.add(Menu.NONE, ContextMenuId.REMOVE.getId(), Menu.NONE, "Remove");
131 if (item.getItemId() == ContextMenuId.REMOVE.getId()) {
132 mTriggerRepository.remove(trigger);
152 mTriggers.remove(trigger);
207 mTriggerRepository.remove(t);
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkAgentInfo.java 286 private static final boolean REMOVE = false;
324 updateRequestCounts(REMOVE, existing);
332 * Remove the specified request from this network.
337 updateRequestCounts(REMOVE, existing);
338 mNetworkRequests.remove(requestId);
500 mLingerTimers.remove(timer);
501 mLingerTimerForRequest.remove(request.requestId);
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DiskLruCache.java 55 * remove entries in the background until the limit is satisfied. The limit is
94 private static final String REMOVE = "REMOVE";
108 * REMOVE 335c4c6028171cfddfbaae1a9c313c52
122 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
123 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
129 * o REMOVE lines track entries that have been deleted.
292 if (firstSpace == REMOVE.length() && line.startsWith(REMOVE)) {
293 lruEntries.remove(key)
580 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
    [all...]
  /frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
OpReorderTest.java 21 import static android.support.v7.widget.AdapterHelper.UpdateOp.REMOVE;
198 orderedRandom(MOVE, REMOVE);
250 case REMOVE:
290 return record(new UpdateOp(REMOVE, start, count, null));
367 clones.remove(clone);
393 case UpdateOp.REMOVE:
395 mRemovedItems.add(items.remove(op.positionStart));
399 items.add(op.itemCount, items.remove(op.positionStart));
AdapterHelperTest.java 354 // TODO test MOVE then remove items in between.
355 // TODO test MOVE then remove it, make sure it is not dispatched
991 return op(AdapterHelper.UpdateOp.REMOVE, start, count);
1028 mPreLayoutItems.remove(item);
1031 mTestAdapter.remove(start, count);
1077 mItems.add(to, mItems.remove(from));
1083 public void remove(int index, int count) { method in class:AdapterHelperTest.TestAdapter
1085 mItems.remove(index);
1088 AdapterHelper.UpdateOp.REMOVE, index, count, null
1122 case AdapterHelper.UpdateOp.REMOVE
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
LauncherAccessibilityDelegate.java 48 protected static final int REMOVE = R.id.action_remove;
77 mActions.put(REMOVE, new AccessibilityAction(REMOVE,
112 info.addAction(mActions.get(REMOVE));
151 if (action == REMOVE) {
192 folder.getInfo().remove(info, false);
  /frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/
InvalidationTracker.java 248 * Note that you cannot remove this observer once added. It will be automatically removed
263 * @param observer The observer to remove.
269 wrapper = mObserverMap.remove(observer);
306 case ObservedTableTracker.REMOVE:
532 static final int REMOVE = 2; // remove triggers for this table
539 // when sync is called, this field is returned. It includes actions as ADD, REMOVE, NO_OP
611 mTriggerStateChanges[i] = newState ? ADD : REMOVE;
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 70 * remove entries in the background until the limit is satisfied. The limit is
108 private static final String REMOVE = "REMOVE";
125 * REMOVE 335c4c6028171cfddfbaae1a9c313c52
139 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
140 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
146 * o REMOVE lines track entries that have been deleted.
375 if (parts[0].equals(REMOVE) && parts.length == 2) {
376 lruEntries.remove(key);
417 i.remove();
631 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 70 * remove entries in the background until the limit is satisfied. The limit is
108 private static final String REMOVE = "REMOVE";
125 * REMOVE 335c4c6028171cfddfbaae1a9c313c52
139 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
140 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
146 * o REMOVE lines track entries that have been deleted.
375 if (parts[0].equals(REMOVE) && parts.length == 2) {
376 lruEntries.remove(key);
417 i.remove();
631 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 70 * remove entries in the background until the limit is satisfied. The limit is
108 private static final String REMOVE = "REMOVE";
125 * REMOVE 335c4c6028171cfddfbaae1a9c313c52
139 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
140 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
146 * o REMOVE lines track entries that have been deleted.
375 if (parts[0].equals(REMOVE) && parts.length == 2) {
376 lruEntries.remove(key);
417 i.remove();
631 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 58 * remove entries in the background until the limit is satisfied. The limit is
98 private static final String REMOVE = "REMOVE";
112 * REMOVE 335c4c6028171cfddfbaae1a9c313c52
126 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
127 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
133 * o REMOVE lines track entries that have been deleted.
322 if (firstSpace == REMOVE.length() && line.startsWith(REMOVE)) {
323 lruEntries.remove(key)
591 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
751 @Override public void remove() { method
    [all...]
  /build/make/core/
cleanspec.mk 20 # 2. REMOVE ALL FILES NAMED CleanSpec.mk.
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/
disklrucache-SNAPSHOT.jar 
  /frameworks/av/media/libaudioclient/include/media/
AudioMixer.h 96 REMOVE = 0x4102, // Remove the sample rate converter on this track name;
174 // TODO: Eventually remove legacy integer volume settings

Completed in 2492 milliseconds

1 2 3 4 5 6 7