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

1 2 3

  /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...]
web_data_service.cc 529 // Take ownership of the request object and remove it from the map.
    [all...]
autofill_table_unittest.cc 45 case AutofillChange::REMOVE: {
46 os << "REMOVE";
250 // Removing all elements since the beginning of this function should remove
257 AutofillChange(AutofillChange::REMOVE,
260 AutofillChange(AutofillChange::REMOVE,
263 AutofillChange(AutofillChange::REMOVE,
266 AutofillChange(AutofillChange::REMOVE,
383 EXPECT_EQ(AutofillChange(AutofillChange::REMOVE,
771 // Remove the 'Billing' profile.
    [all...]
  /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/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
build.com 68 $ REMOVE = "delete_/noConfirm/noLog"
88 $ if f$search("y_tab.%").nes."" then 'REMOVE' y_tab.%;*
94 $ 'REMOVE' y_tab.c;*
150 $ 'REMOVE' scan.chk;*
  /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/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,
cookie_monster_unittest.cc     [all...]
cookie_monster_store_test.cc 51 CookieStoreCommand(CookieStoreCommand::REMOVE, cookie));
  /bionic/libdl/
Android.mk 16 # DO NOT REMOVE --exclude-libs!
34 # LOCAL_ALLOW_UNDEFINED_SYMBOLS to remove --no-undefined from the linker flags.
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 59 * remove entries in the background until the limit is satisfied. The limit is
97 private static final String REMOVE = "REMOVE";
111 * REMOVE 335c4c6028171cfddfbaae1a9c313c52
125 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
126 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
132 * o REMOVE lines track entries that have been deleted.
272 if (firstSpace == REMOVE.length() && line.startsWith(REMOVE)) {
273 lruEntries.remove(key)
534 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
    [all...]
  /development/samples/training/bitmapfun/src/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/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 60 * remove entries in the background until the limit is satisfied. The limit is
98 private static final String REMOVE = "REMOVE";
111 // REMOVE 335c4c6028171cfddfbaae1a9c313c52
125 // Every successful DIRTY action should be followed by a CLEAN or REMOVE
126 // action. DIRTY lines without a matching CLEAN or REMOVE indicate that
132 // o REMOVE lines track entries that have been deleted.
271 if (parts[0].equals(REMOVE) && parts.length == 2) {
272 lruEntries.remove(key);
313 i.remove();
518 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();
password_change_processor.cc 104 case PasswordStoreChange::REMOVE: {
118 sync_node.Remove();
228 notification_registrar_.Remove(this,
  /build/core/
cleanspec.mk 20 # 2. REMOVE ALL FILES NAMED CleanSpec.mk.
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
KernelAdapter.java 135 // Remove any message buffer we've been accumulating
137 messageBuffers.remove(p);
245 if( event.getType() == EndpointEvent.Type.REMOVE ) {
  /frameworks/av/services/audioflinger/
AudioMixer.h 90 REMOVE = 0x4102, // Remove the sample rate converter on this track name;

Completed in 713 milliseconds

1 2 3