/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 | 216 CREDIT_CARD,
|
autofill_type_unittest.cc | 77 EXPECT_EQ(CREDIT_CARD, last.group());
|
autofill_type.cc | 112 return CREDIT_CARD; 173 return CREDIT_CARD;
|
credit_card.cc | 5 #include "components/autofill/core/browser/credit_card.h" 132 CreditCard::CreditCard(const CreditCard& credit_card) 134 operator=(credit_card); 292 DCHECK_EQ(CREDIT_CARD, AutofillType(type).group()); 340 DCHECK_EQ(CREDIT_CARD, AutofillType(type).group()); 505 void CreditCard::operator=(const CreditCard& credit_card) { 506 if (this == &credit_card) 509 number_ = credit_card.number_; 510 name_on_card_ = credit_card.name_on_card_; 511 type_ = credit_card.type_ [all...] |
autofill_metrics.cc | 141 case ::autofill::CREDIT_CARD:
|
autofill_manager.cc | 33 #include "components/autofill/core/browser/credit_card.h" 376 bool is_filling_credit_card = (type.group() == CREDIT_CARD); [all...] |
autofill_profile.cc | 802 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_)) 653 CreditCard* credit_card = *iter; local [all...] |
/external/chromium_org/chrome/browser/ui/autofill/ |
autofill_dialog_common.cc | 61 return AutofillType(type).group() == CREDIT_CARD;
|
data_model_wrapper.cc | 20 #include "components/autofill/core/browser/credit_card.h" 199 if (type.group() != CREDIT_CARD) 324 if (type.group() == CREDIT_CARD)
|
autofill_dialog_controller_impl.cc | [all...] |
/external/chromium_org/components/autofill/content/browser/wallet/ |
wallet_items.cc | 13 #include "components/autofill/core/browser/credit_card.h" 349 if (type.group() != CREDIT_CARD)
|
/external/chromium_org/chrome/browser/ui/views/autofill/ |
autofill_dialog_views.cc | [all...] |