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 223 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"
458 bool is_filling_credit_card = (type.group() == CREDIT_CARD);
    [all...]
autofill_profile.cc 881 case CREDIT_CARD:
form_structure.cc     [all...]
personal_data_manager.cc 284 if (group == CREDIT_CARD) {
429 void PersonalDataManager::AddCreditCard(const CreditCard& credit_card) {
433 if (credit_card.IsEmpty(app_locale_))
436 if (FindByGUID<CreditCard>(credit_cards_, credit_card.guid()))
443 if (FindByContents(credit_cards_, credit_card))
447 database_->AddCreditCard(credit_card);
453 void PersonalDataManager::UpdateCreditCard(const CreditCard& credit_card) {
457 CreditCard* existing_credit_card = GetCreditCardByGUID(credit_card.guid());
462 if (existing_credit_card->Compare(credit_card) == 0)
465 if (credit_card.IsEmpty(app_locale_))
659 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"
194 if (type.group() != CREDIT_CARD)
autofill_dialog_controller_impl.cc 742 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"
276 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 68 milliseconds