HomeSort by relevance Sort by last modified time
    Searched refs:CREDIT_CARD (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/components/autofill/core/browser/
field_types.h 227 CREDIT_CARD,
autofill_type_unittest.cc 77 EXPECT_EQ(CREDIT_CARD, last.group());
autofill_type.cc 114 return CREDIT_CARD;
178 return CREDIT_CARD;
autofill_metrics.cc 122 case ::autofill::CREDIT_CARD:
credit_card.cc 5 #include "components/autofill/core/browser/credit_card.h"
127 CreditCard::CreditCard(const CreditCard& credit_card)
129 operator=(credit_card);
279 DCHECK_EQ(CREDIT_CARD, AutofillType(type).group());
327 DCHECK_EQ(CREDIT_CARD, AutofillType(type).group());
494 void CreditCard::operator=(const CreditCard& credit_card) {
495 if (this == &credit_card)
498 number_ = credit_card.number_;
499 name_on_card_ = credit_card.name_on_card_;
500 type_ = credit_card.type_
    [all...]
autofill_manager.cc 32 #include "components/autofill/core/browser/credit_card.h"
473 bool is_filling_credit_card = (type.group() == CREDIT_CARD);
    [all...]
autofill_profile.cc     [all...]
form_structure.cc     [all...]
personal_data_manager.cc 291 if (group == CREDIT_CARD) {
436 void PersonalDataManager::AddCreditCard(const CreditCard& credit_card) {
440 if (credit_card.IsEmpty(app_locale_))
443 if (FindByGUID<CreditCard>(credit_cards_, credit_card.guid()))
450 if (FindByContents(credit_cards_, credit_card))
454 database_->AddCreditCard(credit_card);
460 void PersonalDataManager::UpdateCreditCard(const CreditCard& credit_card) {
464 CreditCard* existing_credit_card = GetCreditCardByGUID(credit_card.guid());
469 if (existing_credit_card->Compare(credit_card) == 0)
472 if (credit_card.IsEmpty(app_locale_))
664 CreditCard* credit_card = *iter; local
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_common.cc 68 return AutofillType(type).group() == CREDIT_CARD;
data_model_wrapper.cc 23 #include "components/autofill/core/browser/credit_card.h"
197 if (type.group() != CREDIT_CARD)
autofill_dialog_controller_impl.cc 761 if (type.html_type() != HTML_TYPE_UNKNOWN && type.group() == CREDIT_CARD) {
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
full_wallet.cc 12 #include "components/autofill/core/browser/credit_card.h"
211 case CREDIT_CARD:
wallet_items.cc 15 #include "components/autofill/core/browser/credit_card.h"
334 if (type.group() != CREDIT_CARD)
  /external/chromium_org/chrome/browser/ui/android/autofill/
autofill_dialog_controller_android.cc 29 #include "components/autofill/core/browser/credit_card.h"
278 if (type.html_type() != HTML_TYPE_UNKNOWN && type.group() == CREDIT_CARD) {
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc     [all...]

Completed in 259 milliseconds