Home | History | Annotate | Download | only in automation

Lines Matching refs:credit_cards

3972       std::vector<CreditCard*> credit_cards = pdm->credit_cards();
3975 ListValue* cards = GetListFromCreditCards(credit_cards);
3980 return_value->Set("credit_cards", cards);
4003 // It's ok for profiles/credit_cards elements to be missing.
4005 args->GetList("credit_cards", &cards);
4010 std::vector<CreditCard> credit_cards;
4017 credit_cards = GetCreditCardsFromList(*cards, &error_mesg);
4040 pdm->SetCreditCards(&credit_cards);
4311 const std::vector<CreditCard*>& credit_cards) {
4319 credit_cards.begin();
4320 it != credit_cards.end(); ++it) {
4375 std::vector<CreditCard> credit_cards;
4399 credit_cards.push_back(card);
4401 return credit_cards;