/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/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 | 261 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)) 290 AutofillChange(AutofillChange::REMOVE, AutofillKey(name1_, value1_)), 291 AutofillChange(AutofillChange::REMOVE, AutofillKey(name2_, value2_)) 344 AutofillProfileChange::REMOVE, profile.guid(), NULL); 348 // Remove the profile. 439 // Remove the credit card. 524 AutofillProfileChange::REMOVE, profile.guid(), NULL); 528 // 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/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/extensions/ |
install_verifier.h | 74 void Remove(const std::string& id); 88 REMOVE
|
/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, 243 // before attempting to remove any from the login database, to make sure we 262 // 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...] |