Searched defs:cards (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/components/autofill/core/browser/
H A Dpersonal_data_manager_unittest.cc234 // Add two test credit cards to the database.
265 // to the web database, and that we can load the credit cards from the web
269 // Verify that we've loaded the credit cards from the web database.
389 // Add two test credit cards to the database.
482 // to the web database, and that we can load the credit cards from the web
486 // Verify that we've loaded the credit cards from the web database.
732 const std::vector<CreditCard*>& cards = personal_data_->GetCreditCards(); local
733 ASSERT_EQ(0U, cards.size());
877 // Add the test credit cards to the database.
886 // to the web database, and that we can load the credit cards fro
1374 const std::vector<CreditCard*>& cards = personal_data_->GetCreditCards(); local
[all...]
/external/chromium_org/chrome/browser/autofill/
H A Dautofill_browsertest.cc150 void SetCards(std::vector<CreditCard>* cards) { argument
152 personal_data_manager()->SetCreditCards(cards);
157 std::vector<CreditCard> cards; local
158 cards.push_back(card);
159 SetCards(&cards);
372 std::vector<CreditCard> cards; local
380 cards.push_back(card1);
387 cards.push_back(card2);
403 cards.push_back(card3);
416 cards
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dautofill_options_handler.cc395 const std::vector<CreditCard*>& cards = personal_data_->GetCreditCards(); local
396 for (std::vector<CreditCard*>::const_iterator iter = cards.begin();
397 iter != cards.end(); ++iter) {
/external/kernel-headers/original/linux/mmc/
H A Dhost.h104 struct list_head cards; /* devices attached to this host */ member in struct:mmc_host
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_remover_unittest.cc427 // Add two profiles and two credit cards to the database. In each pair, one
449 std::vector<autofill::CreditCard> cards; local
455 cards.push_back(card);
459 cards.push_back(card);
461 personal_data_manager_->SetCreditCards(&cards);
/external/kernel-headers/original/linux/
H A Dpnp.h138 struct list_head global_list; /* node in global list of cards */
139 struct list_head protocol_list; /* node in protocol's list of cards */
186 struct list_head rdev_list; /* node in cards list of requested devices */
340 struct list_head cards; member in struct:pnp_protocol
346 for((card) = protocol_to_pnp_card((protocol)->cards.next); \
347 (card) != protocol_to_pnp_card(&(protocol)->cards); \
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_controller_impl.cc99 // This string is stored along with saved addresses and credit cards in the
2547 const std::vector<CreditCard*>& cards = manager->GetCreditCards(); local
2549 for (size_t i = 0; i < cards.size(); ++i) {
2550 if (!HasCompleteAndVerifiedData(*cards[i], requested_cc_fields_))
2554 cards[i]->guid(),
2555 cards[i]->Label(),
2556 rb.GetImageNamed(CreditCard::IconResourceId(cards[i]->type())));
3384 // Consider a user to be an Autofill user if the user has any credit cards
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider.cc3975 ListValue* cards = GetListFromCreditCards(credit_cards); local
3980 return_value->Set("credit_cards", cards);
4001 ListValue* cards = NULL; local
4005 args->GetList("credit_cards", &cards);
4016 if (cards) {
4017 credit_cards = GetCreditCardsFromList(*cards, &error_mesg);
4039 if (cards)
4312 ListValue* cards = new ListValue; local
4333 cards->Append(card_info);
4335 return cards;
4373 GetCreditCardsFromList( const ListValue& cards, std::string* error_message) argument
[all...]

Completed in 2493 milliseconds