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

1 2 3 4

  /external/chromium_org/components/dom_distiller/core/
dom_distiller_observer.h 23 REMOVE
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_change.cc 26 DCHECK(type == REMOVE ? !profile : true);
36 (type() != REMOVE) ? *profile() == *change.profile() : true;
autofill_change.h 25 REMOVE
60 // When |type| == REMOVE, |profile| should be NULL.
web_data_service_unittest.cc 251 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_))
280 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)),
281 AutofillChange(AutofillChange::REMOVE, AutofillKey(name2_, value2_))
334 AutofillProfileChange::REMOVE, profile.guid(), NULL);
338 // Remove the profile.
429 // Remove the credit card.
514 AutofillProfileChange::REMOVE, profile.guid(), NULL);
518 // Remove the profile using time range of "all time".
autofill_webdata_backend_impl.cc 153 AutofillChange(AutofillChange::REMOVE, AutofillKey(name, value)));
227 AutofillProfileChange change(AutofillProfileChange::REMOVE, guid, NULL);
316 AutofillProfileChange change(AutofillProfileChange::REMOVE, *iter, NULL);
  /external/chromium_org/ui/events/ozone/device/
device_event.h 23 REMOVE,
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
AdapterHelper.java 99 case UpdateOp.REMOVE:
126 // otherwise, it would be converted into a REMOVE operation
148 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount);
159 UpdateOp newOp = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount);
175 op = obtainUpdateOp(UpdateOp.REMOVE, tmpStart, tmpCount);
250 case UpdateOp.REMOVE:
254 throw new IllegalArgumentException("op should be remove or update." + op);
267 case UpdateOp.REMOVE:
284 tmpStart = updatedPos;// need to remove previously dispatched
310 case UpdateOp.REMOVE
    [all...]
OpReorderer.java 24 import static android.support.v7.widget.AdapterHelper.UpdateOp.REMOVE;
48 case REMOVE:
63 // check if move is nulled out by remove
87 moveOp.cmd = REMOVE;
90 list.remove(removePos);
93 // no need to swap, it is already a remove
97 // now affect of add is consumed. now apply effect of first remove
103 extraRm = mCallback.obtainUpdateOp(REMOVE, moveOp.positionStart + 1, remaining);
107 // if effects of move is reverted by remove, we are done.
110 list.remove(removePos)
    [all...]