HomeSort by relevance Sort by last modified time
    Searched refs:REMOVE (Results 1 - 25 of 60) 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...]
  /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 );
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/event/
KeyStoreModelEvent.java 34 * <li>{@link EVENT_TYPE#REMOVE} it is the item that needs to be deleted</li>
40 ADD, REMOVE, UPDATE, COLLAPSE, REFRESH, CLEAR
KeyStoreModelEventManager.java 64 * Remove the parameter {@code listener} to the list of KeyStore event listeners.
71 listeners.remove(listener);
94 case REMOVE:
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/event/
DatabaseModelEvent.java 30 * <li>{@link EVENT_TYPE#REMOVE} it is the item that needs to be removed</li>
39 ADD, REMOVE, UPDATE, CLEAR, EXPAND, SELECT
DatabaseModelEventManager.java 70 listeners.remove(listener);
93 case 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,
  /frameworks/compile/llvm-ndk-cc/
llvm-ndk-link.cpp 53 FIXME REMOVE
86 FIXME REMOVE
  /gdk/sources/llvm-ndk-cc/
llvm-ndk-link.cpp 52 FIXME REMOVE
85 FIXME 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,
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/model/
KeyStoreRootNode.java 66 keyStores.remove(keyStoreModel);
68 KeyStoreModelEvent.EventType.REMOVE);
KeyStoreNode.java 465 entries.remove(DUMMY_NODE); //$NON-NLS-1$
466 KeyStoreModelEventManager.getInstance().fireEvent(entryNode, EventType.REMOVE);
544 entries.remove(DUMMY_NODE); //$NON-NLS-1$
545 KeyStoreModelEventManager.getInstance().fireEvent(entryNode, EventType.REMOVE);
675 ITreeNode entryNode = entries.remove(alias);
676 KeyStoreModelEventManager.getInstance().fireEvent(entryNode, EventType.REMOVE);
704 ITreeNode entryNode = entries.remove(alias);
705 KeyStoreModelEventManager.getInstance().fireEvent(entryNode, EventType.REMOVE);
  /external/valgrind/tsan/
dense_multimap.h 42 enum RemoveEnum {REMOVE};
75 DenseMultimap(const DenseMultimap &m, RemoveEnum remove, const T &t) {
  /bionic/libdl/
Android.mk 16 # DO NOT REMOVE --exclude-libs!
34 # LOCAL_ALLOW_UNDEFINED_SYMBOLS to remove --no-undefined from the linker flags.
  /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/libcore/io/
DiskLruCache.java 61 * remove entries in the background until the limit is satisfied. The limit is
99 private static final String REMOVE = "REMOVE";
113 * REMOVE 335c4c6028171cfddfbaae1a9c313c52
127 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
128 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
134 * o REMOVE lines track entries that have been deleted.
266 if (parts[0].equals(REMOVE) && parts.length == 2) {
267 lruEntries.remove(key);
308 i.remove();
513 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
    [all...]
  /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.
265 if (parts[0].equals(REMOVE) && parts.length == 2) {
266 lruEntries.remove(key);
307 i.remove();
523 public synchronized boolean remove(String key) throws IOException { method in class:DiskLruCache
    [all...]

Completed in 978 milliseconds

1 2 3