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

1 2 3 4

  /external/chromium/base/allocator/
prep_libc.sh 27 # We'll remove the symbols based on paths found in either the VS2005 or VS2008
37 LIB /NOLOGO /IGNORE:4006,4014,4221 /REMOVE:${LIBCMTSRCPATHVS2005}${FILE} $OUTCMT
38 LIB /NOLOGO /IGNORE:4006,4014,4221 /REMOVE:${LIBCMTSRCPATHVS2008}${FILE} $OUTCMT
  /external/chromium/chrome/browser/webdata/
autofill_change.cc 23 DCHECK(type == REMOVE ? !profile : true);
33 (type() != REMOVE) ? *profile() == *change.profile() : true;
41 DCHECK(type == REMOVE ? !credit_card : true);
51 (type() != REMOVE) ? *credit_card() == *change.credit_card() : true;
autofill_change.h 22 REMOVE
55 // When |type| == REMOVE, |profile| should be NULL.
76 // When |type| == REMOVE, |credit_card| should be NULL.
web_data_service_unittest.cc 206 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_))
238 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)),
239 AutofillChange(AutofillChange::REMOVE, AutofillKey(name2_, value2_))
302 AutofillProfileChange::REMOVE, profile.guid(), NULL);
311 // Remove the profile.
420 // Remove the credit card.
422 AutofillCreditCardChange::REMOVE, credit_card.guid(), NULL);
533 AutofillProfileChange::REMOVE, profile.guid(), NULL);
544 AutofillCreditCardChange::REMOVE, credit_card.guid(), NULL);
554 // Remove the profile using time range of "all time"
    [all...]
  /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 286 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_))
315 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)),
316 AutofillChange(AutofillChange::REMOVE, AutofillKey(name2_, value2_))
369 AutofillProfileChange::REMOVE, profile.guid(), NULL);
373 // Remove the profile.
464 // Remove the credit card.
548 AutofillProfileChange::REMOVE, profile.guid(), NULL);
552 // Remove the profile using time range of "all time".
autofill_webdata_backend_impl.cc 148 AutofillChange(AutofillChange::REMOVE, AutofillKey(name, value)));
222 AutofillProfileChange change(AutofillProfileChange::REMOVE, guid, NULL);
311 AutofillProfileChange change(AutofillProfileChange::REMOVE, *iter, NULL);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
EndpointEvent.java 45 public enum Type { ADD, REMOVE };
65 return new EndpointEvent( source, p, Type.REMOVE );
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
PrettyPatch_test.rb 14 REMOVE = 3
59 assert_equal(info[Info::REMOVE], $last_prettify_part_count["remove"], "Wrong number of 'remove' parts in " + description)
  /external/chromium/chrome/browser/password_manager/
password_store_change.h 18 REMOVE,
password_store_default.cc 152 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
168 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
password_store_x.cc 64 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
86 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
205 // before attempting to remove any from the login database, to make sure we
221 // Remove it once this preemptive unlock by write is baked for a while.
240 // Finally, delete the database file itself. We remove the passwords from
  /external/chromium_org/chrome/browser/password_manager/
password_store_change.h 17 REMOVE,
password_store_default.cc 68 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
84 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
password_store_x.cc 69 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
91 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
241 // before attempting to remove any from the login database, to make sure we
260 // Finally, delete the database file itself. We remove the passwords from
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetBasherTest.java 142 case REMOVE: {
144 int oldValue = multiset.remove(key, delta);
164 REMOVE,
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_helper.cc 107 REMOVE,
130 case REMOVE:
151 case REMOVE:
360 add_to_whitelist ? WhitelistOpContext::ADD : WhitelistOpContext::REMOVE,
  /external/chromium/net/base/
cookie_monster_store_test.h 23 REMOVE,
  /external/chromium_org/net/cookies/
cookie_monster_store_test.h 56 REMOVE,
  /bionic/libdl/
Android.mk 16 # DO NOT REMOVE --exclude-libs!
34 # LOCAL_ALLOW_UNDEFINED_SYMBOLS to remove --no-undefined from the linker flags.
  /external/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.
286 if (firstSpace == REMOVE.length() && line.startsWith(REMOVE)) {
287 lruEntries.remove(key)
575 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
    [all...]
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/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/chromium/chrome/browser/sync/glue/
autofill_profile_change_processor.cc 130 DCHECK(change->type() == AutofillProfileChange::REMOVE || change->profile());
151 case AutofillProfileChange::REMOVE: {
162 node.Remove();
277 node.Remove();
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api_unittest.cc 750 REMOVE
    [all...]

Completed in 2170 milliseconds

1 2 3 4