/external/chromium/chrome/browser/autofill/ |
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;
|
autofill_dialog.h | 34 std::vector<CreditCard>* credit_cards) = 0;
|
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...] |
/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 | 503 const std::vector<CreditCard*>& credit_cards = GetCreditCards(); local 505 FindElementByGUID<CreditCard>(credit_cards, guid); 506 return (iter != credit_cards.end()) ? *iter : NULL; 650 const std::vector<CreditCard*>& credit_cards = GetCreditCards(); local 651 for (std::vector<CreditCard*>::const_iterator iter = credit_cards.begin(); 652 iter != credit_cards.end(); ++iter) { 812 std::vector<CreditCard>* credit_cards) { 817 credit_cards->erase(std::remove_if(credit_cards->begin(), credit_cards->end() 916 std::vector<CreditCard*> credit_cards = r->GetValue(); local 968 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;
|
/external/chromium/chrome/browser/webdata/ |
web_database_migration_unittest.cc | 313 EXPECT_TRUE(connection.DoesTableExist("credit_cards")); 332 ASSERT_FALSE(connection.DoesColumnExist("credit_cards", "guid")); 334 connection.DoesColumnExist("credit_cards", "card_number_encrypted")); 354 EXPECT_TRUE(connection.DoesColumnExist("credit_cards", "guid")); 356 connection.DoesColumnExist("credit_cards", "card_number_encrypted")); 361 // version 22 database. The corruption is that the |credit_cards| table exists 379 ASSERT_TRUE(connection.DoesColumnExist("credit_cards", "unique_id")); 381 connection.DoesColumnExist("credit_cards", "card_number_encrypted")); 404 EXPECT_FALSE(connection.DoesColumnExist("credit_cards", "unique_id")); 405 EXPECT_TRUE(connection.DoesColumnExist("credit_cards", "guid")) [all...] |
autofill_table.cc | [all...] |
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
|
autofill_table_unittest.cc | [all...] |
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_table.cc | [all...] |
autofill_webdata_backend_impl.cc | 291 std::vector<CreditCard*> credit_cards; local 292 AutofillTable::FromWebDatabase(db)->GetCreditCards(&credit_cards); 296 credit_cards, 385 std::vector<CreditCard*> credit_cards = r->GetValue(); local 386 STLDeleteElements(&credit_cards);
|
autofill_table_unittest.cc | [all...] |
autofill_table.h | 110 // credit_cards This table contains credit card data added by the user 254 // Records a single credit card in the credit_cards table. 260 // Removes a row from the credit_cards table. |guid| is the identifer of the 270 virtual bool GetCreditCards(std::vector<CreditCard*>* credit_cards); 272 // Removes rows from autofill_profiles and credit_cards if they were created 284 // Removes origin URLs from the autofill_profiles and credit_cards tables if
|
/external/chromium_org/components/test/data/web_database/ |
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_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_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_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_48.sql | 10 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/components/webdata/common/ |
web_database_migration_unittest.cc | 279 EXPECT_TRUE(connection.DoesTableExist("credit_cards")); 306 ASSERT_FALSE(connection.DoesColumnExist("credit_cards", "guid")); 308 connection.DoesColumnExist("credit_cards", "card_number_encrypted")); 323 EXPECT_TRUE(connection.DoesColumnExist("credit_cards", "guid")); 325 connection.DoesColumnExist("credit_cards", "card_number_encrypted")); 330 // version 22 database. The corruption is that the |credit_cards| table exists 348 ASSERT_TRUE(connection.DoesColumnExist("credit_cards", "unique_id")); 350 connection.DoesColumnExist("credit_cards", "card_number_encrypted")); 367 EXPECT_FALSE(connection.DoesColumnExist("credit_cards", "unique_id")); 368 EXPECT_TRUE(connection.DoesColumnExist("credit_cards", "guid")) [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
autofill_helper.h | 68 // |credit_cards|. 70 std::vector<autofill::CreditCard>* credit_cards);
|