HomeSort by relevance Sort by last modified time
    Searched refs:credit_cards (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium/chrome/browser/autofill/
autofill_dialog.h 34 std::vector<CreditCard>* credit_cards) = 0;
autofill_ie_toolbar_import_win_unittest.cc 20 std::vector<CreditCard>* credit_cards);
162 std::vector<CreditCard> credit_cards; local
163 EXPECT_TRUE(ImportCurrentUserProfiles(&profiles, &credit_cards));
185 ASSERT_EQ(credit_cards.size(), 1);
186 EXPECT_EQ(credit_cards[0].GetInfo(CREDIT_CARD_NAME), credit_card[0].value);
187 EXPECT_EQ(credit_cards[0].GetInfo(CREDIT_CARD_NUMBER), L"4111111111111111");
188 EXPECT_EQ(credit_cards[0].GetInfo(CREDIT_CARD_EXP_MONTH),
190 EXPECT_EQ(credit_cards[0].GetInfo(CREDIT_CARD_EXP_4_DIGIT_YEAR),
201 credit_cards.clear();
202 EXPECT_TRUE(ImportCurrentUserProfiles(&profiles, &credit_cards));
    [all...]
personal_data_manager.cc 412 std::vector<CreditCard>* credit_cards) {
419 credit_cards->erase(
421 credit_cards->begin(), credit_cards->end(),
423 credit_cards->end());
433 if (!FindByGUID<CreditCard>(*credit_cards, (*iter)->guid()))
438 for (std::vector<CreditCard>::iterator iter = credit_cards->begin();
439 iter != credit_cards->end(); ++iter) {
445 for (std::vector<CreditCard>::iterator iter = credit_cards->begin();
446 iter != credit_cards->end(); ++iter)
662 const std::vector<CreditCard*>& PersonalDataManager::credit_cards() { function in class:PersonalDataManager
851 std::vector<CreditCard*> credit_cards = r->GetValue(); local
    [all...]
autofill_ie_toolbar_import_win.cc 29 std::vector<CreditCard>* credit_cards);
197 std::vector<CreditCard>* credit_cards) {
199 DCHECK(credit_cards);
251 credit_cards->push_back(credit_card);
255 return (profiles->size() + credit_cards->size()) > 0;
personal_data_manager.h 101 // Sets |credit_cards_| to the contents of |credit_cards| and updates the web
103 void SetCreditCards(std::vector<CreditCard>* credit_cards);
148 virtual const std::vector<CreditCard*>& credit_cards();
personal_data_manager_unittest.cc 192 const std::vector<CreditCard*>& results1 = personal_data_->credit_cards();
207 const std::vector<CreditCard*>& results2 = personal_data_->credit_cards();
226 const std::vector<CreditCard*>& results3 = personal_data_->credit_cards();
282 const std::vector<CreditCard*>& results2 = personal_data_->credit_cards();
404 const std::vector<CreditCard*>& results1 = personal_data_->credit_cards();
421 const std::vector<CreditCard*>& results2 = personal_data_->credit_cards();
637 const std::vector<CreditCard*>& credit_cards = personal_data_->credit_cards(); local
638 ASSERT_EQ(0U, credit_cards.size());
742 const std::vector<CreditCard*>& results = personal_data_->credit_cards();
1285 const std::vector<CreditCard*>& credit_cards = personal_data_->credit_cards(); local
    [all...]
autofill_manager.cc 383 personal_data_->profiles(), personal_data_->credit_cards(), &host) &&
482 const std::vector<CreditCard*>& credit_cards = personal_data_->credit_cards(); local
490 if (!GetHost(profiles, credit_cards, &host) ||
521 for (std::vector<CreditCard*>::const_iterator iter = credit_cards.begin();
522 iter != credit_cards.end(); ++iter) {
761 const std::vector<CreditCard*>& credit_cards,
771 if (profiles.empty() && credit_cards.empty())
    [all...]
  /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));
186 ASSERT_EQ(1U, credit_cards.size());
187 EXPECT_EQ(credit_card[0].value, credit_cards[0].GetRawInfo(CREDIT_CARD_NAME));
189 credit_cards[0].GetRawInfo(CREDIT_CARD_NUMBER));
191 credit_cards[0].GetRawInfo(CREDIT_CARD_EXP_MONTH));
193 credit_cards[0].GetRawInfo(CREDIT_CARD_EXP_4_DIGIT_YEAR));
203 credit_cards.clear();
204 EXPECT_TRUE(ImportCurrentUserProfiles("en-US", &profiles, &credit_cards));
    [all...]
personal_data_manager.cc 519 const std::vector<CreditCard*>& credit_cards = GetCreditCards(); local
520 for (std::vector<CreditCard*>::const_iterator iter = credit_cards.begin();
521 iter != credit_cards.end(); ++iter) {
670 const std::vector<CreditCard*>& credit_cards = GetCreditCards(); local
671 for (std::vector<CreditCard*>::const_iterator iter = credit_cards.begin();
672 iter != credit_cards.end(); ++iter) {
830 std::vector<CreditCard>* credit_cards) {
835 for (std::vector<CreditCard>::iterator it = credit_cards->begin();
836 it != credit_cards->end();) {
838 credit_cards->erase(it)
944 std::vector<CreditCard*> credit_cards = r->GetValue(); local
994 std::vector<CreditCard> credit_cards; local
    [all...]
autofill_ie_toolbar_import_win.cc 37 std::vector<CreditCard>* credit_cards);
248 std::vector<CreditCard>* credit_cards) {
250 DCHECK(credit_cards);
296 credit_cards->push_back(credit_card);
300 return (profiles->size() + credit_cards->size()) > 0;
autofill_manager.cc 135 // Uses the existing personal data in |profiles| and |credit_cards| to determine
142 const std::vector<CreditCard>& credit_cards,
158 for (std::vector<CreditCard>::const_iterator it = credit_cards.begin();
159 it != credit_cards.end(); ++it) {
287 const std::vector<CreditCard*>& credit_cards = local
289 if (!profiles.empty() || !credit_cards.empty()) {
300 copied_credit_cards.reserve(credit_cards.size());
301 for (std::vector<CreditCard*>::const_iterator it = credit_cards.begin();
302 it != credit_cards.end(); ++it) {
    [all...]
personal_data_manager.h 211 // Sets |credit_cards_| to the contents of |credit_cards| and updates the web
213 void SetCreditCards(std::vector<CreditCard>* credit_cards);
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.h 68 // |credit_cards|.
70 std::vector<autofill::CreditCard>* credit_cards);
two_client_autofill_sync_test.cc 470 std::vector<CreditCard> credit_cards; local
471 credit_cards.push_back(card);
472 SetCreditCards(0, &credit_cards);
  /external/chromium_org/components/test/data/web_database/
version_29.sql 19 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY, name_on_card VARCHAR, type VARCHAR, card_number VARCHAR, expiration_month INTEGER, expiration_year INTEGER, verification_code VARCHAR, billing_address VARCHAR, shipping_address VARCHAR, card_number_encrypted BLOB, verification_code_encrypted BLOB); table
20 INSERT INTO "credit_cards" VALUES('',2,'Kris Kringle','','',12,2020,'','1','',X'',X'');
28 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_30.sql 20 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY, name_on_card VARCHAR, type VARCHAR, card_number VARCHAR, expiration_month INTEGER, expiration_year INTEGER, verification_code VARCHAR, billing_address VARCHAR, shipping_address VARCHAR, card_number_encrypted BLOB, verification_code_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0); table
21 INSERT INTO "credit_cards" VALUES('',2,'Jim X Johnson','','',1,2011,'','1','',X'763130B83A1BEE0CFD7C447C270685B5E2BFF5EC0BC700B38F4C4DD60CDD5D8D66EB09',X'',1287508123);
22 INSERT INTO "credit_cards" VALUES('2',4,'Billy X Jean','','',7,2017,'','3','',X'763130EB3DC27FA61AAC9EAC92B303978DD7B62E901B4D9DFB459905E09AAAE7AE7BA1',X'',1287508123);
30 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_25.sql 14 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY,name_on_card VARCHAR, type VARCHAR, card_number VARCHAR,expiration_month INTEGER, expiration_year INTEGER,verification_code VARCHAR, billing_address VARCHAR,shipping_address VARCHAR, card_number_encrypted BLOB,verification_code_encrypted BLOB); table
22 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_26.sql 14 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY,name_on_card VARCHAR, type VARCHAR, card_number VARCHAR,expiration_month INTEGER, expiration_year INTEGER,verification_code VARCHAR, billing_address VARCHAR,shipping_address VARCHAR, card_number_encrypted BLOB,verification_code_encrypted BLOB); table
22 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_31.sql 19 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY, name_on_card VARCHAR, type VARCHAR, card_number VARCHAR, expiration_month INTEGER, expiration_year INTEGER, verification_code VARCHAR, billing_address VARCHAR, shipping_address VARCHAR, card_number_encrypted BLOB, verification_code_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0, guid VARCHAR NOT NULL DEFAULT ""); table
20 INSERT INTO "credit_cards" VALUES('',2,'Jim J Jones','','',1,2011,'','0','',X'7631309863E9F1F33C2BDBFBFC86708448BDD8B37A495B628C8459A60D0CCD1047E69F',X'',1288642516,'B77F749C-8B0E-44B2-D299-3C80A95E0ADD');
28 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_27.sql 16 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY, name_on_card VARCHAR, type VARCHAR, card_number VARCHAR, expiration_month INTEGER, expiration_year INTEGER, verification_code VARCHAR, billing_address VARCHAR, shipping_address VARCHAR, card_number_encrypted BLOB, verification_code_encrypted BLOB); table
25 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_22_corrupt.sql 23 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY, name_on_card VARCHAR, type VARCHAR,card_number VARCHAR, expiration_month INTEGER, expiration_year INTEGER, verification_code VARCHAR, billing_address VARCHAR, shipping_address VARCHAR, card_number_encrypted BLOB, verification_code_encrypted BLOB); table
31 CREATE INDEX credit_cards_label_index ON credit_cards (label);
  /external/chromium/chrome/browser/ui/webui/options/
autofill_options_handler.cc 262 ListValue credit_cards; local
264 personal_data_->credit_cards().begin();
265 i != personal_data_->credit_cards().end(); ++i) {
273 credit_cards.Append(entry);
277 credit_cards);
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_webdata_backend_impl.cc 286 std::vector<CreditCard*> credit_cards; local
287 AutofillTable::FromWebDatabase(db)->GetCreditCards(&credit_cards);
291 credit_cards,
380 std::vector<CreditCard*> credit_cards = r->GetValue(); local
381 STLDeleteElements(&credit_cards);
  /external/chromium_org/chrome/browser/autofill/android/
personal_data_manager_android.cc 227 const std::vector<CreditCard*>& credit_cards = local
230 DCHECK_LT(index_size_t, credit_cards.size());
231 return CreateJavaCreditCardFromNative(env, *credit_cards[index_size_t]);
  /external/chromium/chrome/browser/webdata/
autofill_table.h 98 // credit_cards This table contains credit card data added by the user
220 // Records a single credit card in the credit_cards table.
226 // Removes a row from the credit_cards table. |guid| is the identifer of the
236 virtual bool GetCreditCards(std::vector<CreditCard*>* credit_cards);
238 // Removes rows from autofill_profiles and credit_cards if they were created

Completed in 268 milliseconds

1 2 3