HomeSort by relevance Sort by last modified time
    Searched defs:credit_cards (Results 26 - 41 of 41) sorted by null

12

  /external/chromium_org/components/test/data/web_database/
version_57.sql 14 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0, origin VARCHAR DEFAULT ''); table
version_34.sql 46 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
version_43.sql 23 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
version_44.sql 31 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
version_45.sql 11 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
version_45_compatible.sql 11 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
version_45_invalid.sql 11 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
version_46.sql 11 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
version_47.sql 32 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
  /external/chromium_org/chrome/browser/autofill/android/
personal_data_manager_android.cc 240 const std::vector<CreditCard*>& credit_cards = local
243 DCHECK_LT(index_size_t, credit_cards.size());
244 return CreateJavaCreditCardFromNative(env, *credit_cards[index_size_t]);
  /external/chromium_org/components/autofill/core/browser/
autofill_ie_toolbar_import_win_unittest.cc 23 std::vector<CreditCard>* credit_cards);
163 std::vector<CreditCard> credit_cards; local
164 EXPECT_TRUE(ImportCurrentUserProfiles("en-US", &profiles, &credit_cards));
185 ASSERT_EQ(1U, credit_cards.size());
186 EXPECT_EQ(credit_card[0].value, credit_cards[0].GetRawInfo(CREDIT_CARD_NAME));
188 credit_cards[0].GetRawInfo(CREDIT_CARD_NUMBER));
190 credit_cards[0].GetRawInfo(CREDIT_CARD_EXP_MONTH));
192 credit_cards[0].GetRawInfo(CREDIT_CARD_EXP_4_DIGIT_YEAR));
202 credit_cards.clear();
203 EXPECT_TRUE(ImportCurrentUserProfiles("en-US", &profiles, &credit_cards));
    [all...]
autofill_manager.cc 125 // Uses the existing personal data in |profiles| and |credit_cards| to determine
132 const std::vector<CreditCard>& credit_cards,
147 for (std::vector<CreditCard>::const_iterator it = credit_cards.begin();
148 it != credit_cards.end(); ++it) {
352 const std::vector<CreditCard*>& credit_cards = local
354 if (!profiles.empty() || !credit_cards.empty()) {
365 copied_credit_cards.reserve(credit_cards.size());
366 for (std::vector<CreditCard*>::const_iterator it = credit_cards.begin();
367 it != credit_cards.end(); ++it) {
    [all...]
personal_data_manager.cc 510 const std::vector<CreditCard*>& credit_cards = GetCreditCards(); local
512 FindElementByGUID<CreditCard>(credit_cards, guid);
513 return (iter != credit_cards.end()) ? *iter : NULL;
661 const std::vector<CreditCard*>& credit_cards = GetCreditCards(); local
662 for (std::vector<CreditCard*>::const_iterator iter = credit_cards.begin();
663 iter != credit_cards.end(); ++iter) {
872 std::vector<CreditCard>* credit_cards) {
877 credit_cards->erase(std::remove_if(credit_cards->begin(), credit_cards->end()
976 std::vector<CreditCard*> credit_cards = r->GetValue(); local
1032 std::vector<CreditCard> credit_cards; local
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_webdata_backend_impl.cc 302 std::vector<CreditCard*> credit_cards; local
303 AutofillTable::FromWebDatabase(db)->GetCreditCards(&credit_cards);
307 credit_cards,
396 std::vector<CreditCard*> credit_cards = r->GetValue(); local
397 STLDeleteElements(&credit_cards);
  /external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_handler.cc 444 base::ListValue credit_cards; local
457 credit_cards.Append(entry);
461 credit_cards);
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_remover_unittest.cc 464 const std::vector<autofill::CreditCard*>& credit_cards = local
467 credit_cards.begin();
468 it != credit_cards.end(); ++it) {
    [all...]

Completed in 3407 milliseconds

12