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

  /external/chromium/chrome/browser/autofill/
autofill_type.cc 117 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
119 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
121 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
123 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
125 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
127 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
129 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
131 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
133 { AutofillType::CREDIT_CARD, AutofillType::NO_SUBGROUP },
autofill_type.h 29 CREDIT_CARD,
autofill_manager.cc 26 #include "chrome/browser/autofill/credit_card.h"
150 bool is_credit_card_field = current_type_group == AutofillType::CREDIT_CARD;
389 (AutofillType(type).group() == AutofillType::CREDIT_CARD);
519 const CreditCard* credit_card = NULL; local
524 credit_card = *iter;
528 DCHECK(credit_card);
531 if (!profile && !credit_card)
536 FindSectionBounds(*form_structure, *autofill_field, (credit_card != NULL),
549 DCHECK_NE(AutofillType::CREDIT_CARD,
553 DCHECK_EQ(AutofillType::CREDIT_CARD,
928 CreditCard* credit_card = *iter; local
    [all...]
autofill_metrics.cc 94 case AutofillType::CREDIT_CARD:
form_structure.cc 114 if (autofill_type.group() == AutofillType::CREDIT_CARD)
258 if (autofill_type.group() == AutofillType::CREDIT_CARD)
personal_data_manager.cc 240 if (group == AutofillType::CREDIT_CARD) {
533 void PersonalDataManager::AddCreditCard(const CreditCard& credit_card) {
539 credit_cards.push_back(credit_card);
543 void PersonalDataManager::UpdateCreditCard(const CreditCard& credit_card) {
552 if ((*iter)->guid() == credit_card.guid()) {
554 *iter = new CreditCard(credit_card);
559 wds->UpdateCreditCard(credit_card);
611 const FormGroup* credit_card = *iter; local
612 if (!credit_card) {
617 credit_card->GetPossibleFieldTypes(clean_info, possible_types)
    [all...]
  /external/chromium_org/components/autofill/core/browser/
field_types.h 183 CREDIT_CARD,
autofill_type_unittest.cc 77 EXPECT_EQ(CREDIT_CARD, last.group());
autofill_type.cc 106 return CREDIT_CARD;
161 return CREDIT_CARD;
autofill_metrics.cc 135 case ::autofill::CREDIT_CARD:
autofill_profile.cc 360 DCHECK_NE(CREDIT_CARD, type.group());
864 case CREDIT_CARD:
credit_card.cc 5 #include "components/autofill/core/browser/credit_card.h"
126 CreditCard::CreditCard(const CreditCard& credit_card)
128 operator=(credit_card);
490 void CreditCard::operator=(const CreditCard& credit_card) {
491 if (this == &credit_card)
494 number_ = credit_card.number_;
495 name_on_card_ = credit_card.name_on_card_;
496 type_ = credit_card.type_;
497 expiration_month_ = credit_card.expiration_month_;
498 expiration_year_ = credit_card.expiration_year_
    [all...]
autofill_manager.cc 35 #include "components/autofill/core/browser/credit_card.h"
428 bool is_filling_credit_card = (type.group() == CREDIT_CARD);
    [all...]
form_structure.cc     [all...]
personal_data_manager.cc 286 if (group == CREDIT_CARD) {
439 void PersonalDataManager::AddCreditCard(const CreditCard& credit_card) {
443 if (credit_card.IsEmpty(app_locale_))
446 if (FindByGUID<CreditCard>(credit_cards_, credit_card.guid()))
455 if (FindByContents(credit_cards_, credit_card))
459 autofill_data->AddCreditCard(credit_card);
465 void PersonalDataManager::UpdateCreditCard(const CreditCard& credit_card) {
469 CreditCard* existing_credit_card = GetCreditCardByGUID(credit_card.guid());
474 if (existing_credit_card->Compare(credit_card) == 0)
477 if (credit_card.IsEmpty(app_locale_))
673 CreditCard* credit_card = *iter; local
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_common.cc 59 return AutofillType(type).group() == CREDIT_CARD;
data_model_wrapper.cc 17 #include "components/autofill/core/browser/credit_card.h"
269 if (type.group() == CREDIT_CARD)
  /external/chromium_org/components/autofill/content/browser/
autocheckout_manager.cc 19 #include "components/autofill/core/browser/credit_card.h"
365 if (group == CREDIT_CARD) {
499 if (type.group() == CREDIT_CARD) {
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_items.cc 12 #include "components/autofill/core/browser/credit_card.h"
314 if (type.group() != CREDIT_CARD)
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc     [all...]

Completed in 234 milliseconds