Searched refs:REMOVE (Results 1 - 25 of 65) sorted by relevance

123

/external/chromium/base/allocator/
H A Dprep_libc.sh37 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/
H A Dautofill_change.cc23 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;
H A Dautofill_change.h22 REMOVE enumerator in enum:GenericAutofillChange::__anon2821
55 // When |type| == REMOVE, |profile| should be NULL.
76 // When |type| == REMOVE, |credit_card| should be NULL.
H A Dweb_data_service_unittest.cc206 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);
422 AutofillCreditCardChange::REMOVE, credit_card.guid(), NULL);
533 AutofillProfileChange::REMOVE, profile.guid(), NULL);
544 AutofillCreditCardChange::REMOVE, credit_card.guid(), NULL);
H A Dweb_data_service.cc996 changes.push_back(AutofillChange(AutofillChange::REMOVE,
1088 AutofillProfileChange change(AutofillProfileChange::REMOVE, guid, NULL);
1124 AutofillProfileChange change(AutofillProfileChange::REMOVE,
1227 AutofillCreditCardChange change(AutofillCreditCardChange::REMOVE,
1263 AutofillProfileChange change(AutofillProfileChange::REMOVE, *iter,
1273 AutofillCreditCardChange change(AutofillCreditCardChange::REMOVE,
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_change.cc26 DCHECK(type == REMOVE ? !profile : true);
36 (type() != REMOVE) ? *profile() == *change.profile() : true;
H A Dautofill_change.h25 REMOVE enumerator in enum:autofill::GenericAutofillChange::__anon7469
60 // When |type| == REMOVE, |profile| should be NULL.
H A Dweb_data_service_unittest.cc286 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);
548 AutofillProfileChange::REMOVE, profile.guid(), NULL);
H A Dautofill_webdata_backend_impl.cc148 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/
H A DEndpointEvent.java45 public enum Type { ADD, REMOVE }; enum constant in enum:EndpointEvent.Type
65 return new EndpointEvent( source, p, Type.REMOVE );
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
H A DPrettyPatch_test.rb14 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/
H A Dpassword_store_change.h18 REMOVE, enumerator in enum:PasswordStoreChange::Type
H A Dpassword_store_default.cc152 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
168 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
H A Dpassword_store_x.cc64 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
86 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_change.h17 REMOVE, enumerator in enum:PasswordStoreChange::Type
H A Dpassword_store_default.cc68 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
84 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
H A Dpassword_store_x.cc69 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE, form));
91 changes.push_back(PasswordStoreChange(PasswordStoreChange::REMOVE,
/external/guava/guava-tests/test/com/google/common/collect/
H A DConcurrentHashMultisetBasherTest.java142 case REMOVE: {
164 REMOVE, enum constant in enum:ConcurrentHashMultisetBasherTest.MutateTask.Operation
/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings_helper.cc107 REMOVE, enumerator in enum:chromeos::__anon2005::WhitelistOpContext::Type
130 case REMOVE:
151 case REMOVE:
360 add_to_whitelist ? WhitelistOpContext::ADD : WhitelistOpContext::REMOVE,
/external/chromium/net/base/
H A Dcookie_monster_store_test.h23 REMOVE, enumerator in enum:net::CookieStoreCommand::Type
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java98 private static final String REMOVE = "REMOVE"; field in class:DiskLruCache
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)) {
550 journalWriter.write(REMOVE + ' ' + entry.key + '\n');
593 journalWriter.append(REMOVE
[all...]
/external/chromium_org/net/cookies/
H A Dcookie_monster_store_test.h56 REMOVE, enumerator in enum:net::CookieStoreCommand::Type
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_profile_change_processor.cc130 DCHECK(change->type() == AutofillProfileChange::REMOVE || change->profile());
151 case AutofillProfileChange::REMOVE: {
/external/chromium_org/chrome/browser/extensions/api/web_request/
H A Dweb_request_api_unittest.cc750 REMOVE enumerator in enum:extensions::HeaderModificationTest_Modification::Type
862 case HeaderModificationTest_Modification::REMOVE:
1017 const HeaderModificationTest_Modification::Type REMOVE = member in namespace:extensions::__anon4972
1018 HeaderModificationTest_Modification::REMOVE;
1064 {2, REMOVE, "header1", NULL} },
1072 2, { {2, REMOVE, "header1", NULL},
1081 2, { {1, REMOVE, "header1", NULL},
1091 {1, REMOVE, "header1", NULL} },
1126 3, { {1, REMOVE, "header1", NULL},
1128 {2, REMOVE, "header
[all...]
/external/chromium_org/chrome/browser/webdata/
H A Dautofill_profile_syncable_service.cc508 DCHECK((change.type() == AutofillProfileChange::REMOVE &&
510 (change.type() != AutofillProfileChange::REMOVE && change.profile()));
536 case AutofillProfileChange::REMOVE: {

Completed in 1008 milliseconds

123