/external/chromium_org/components/test/data/autofill/merge/tools/ |
serialize_profiles.py | 14 """Serializes the autofill_profiles table from the specified database.""" 57 # Read the autofill_profiles table. 59 cursor.execute("SELECT * from autofill_profiles;") 61 print "Failed to read the autofill_profiles table from \"%s\"" % database
|
reserialize_profiles_from_query.py | 12 """Serializes the output of the query 'SELECT * from autofill_profiles;'.
|
autofill_merge_common.py | 38 autofill_profiles table in the Chromium "Web Data" database.
|
/external/chromium/chrome/browser/webdata/ |
web_database_migration_unittest.cc | 312 EXPECT_TRUE(connection.DoesTableExist("autofill_profiles")); 506 std::string stmt = "INSERT INTO autofill_profiles" 576 std::string stmt = "INSERT INTO autofill_profiles" 672 // Makes sure date_modified is added correctly to autofill_profiles and 684 EXPECT_FALSE(connection.DoesColumnExist("autofill_profiles", 709 EXPECT_TRUE(connection.DoesColumnExist("autofill_profiles", 715 "SELECT date_modified FROM autofill_profiles ")); 738 // Makes sure guids are added to autofill_profiles and credit_cards tables. 749 EXPECT_FALSE(connection.DoesColumnExist("autofill_profiles", "guid")); 769 ASSERT_TRUE(connection.DoesColumnExist("autofill_profiles", "guid")) [all...] |
autofill_table.cc | 893 "INSERT INTO autofill_profiles" 922 "FROM autofill_profiles " 961 "FROM autofill_profiles")); 1035 "UPDATE autofill_profiles " 1079 "DELETE FROM autofill_profiles WHERE guid = ?")); 1094 "DELETE FROM autofill_profiles")); [all...] |
autofill_table_unittest.cc | 683 "FROM autofill_profiles WHERE guid=?")); 708 "SELECT date_modified FROM autofill_profiles WHERE guid=?")); 727 "SELECT date_modified FROM autofill_profiles WHERE guid=?")); 760 "SELECT date_modified FROM autofill_profiles WHERE guid=?")); [all...] |
autofill_table.h | 45 // autofill_profiles This table contains Autofill profile data added by the 200 // Records a single Autofill profile in the autofill_profiles table. 210 // Removes a row from the autofill_profiles table. |guid| is the identifier 238 // Removes rows from autofill_profiles and credit_cards if they were created
|
/external/chromium_org/chrome/browser/sync/test/integration/performance/ |
autofill_sync_perf_test.cc | 90 std::vector<AutofillProfile> autofill_profiles; local 92 autofill_profiles.push_back(*all_profiles[i]); 95 autofill_profiles.push_back(NextAutofillProfile()); 97 SetProfiles(profile, &autofill_profiles); 103 std::vector<AutofillProfile> autofill_profiles; local 105 autofill_profiles.push_back(*all_profiles[i]); 106 autofill_profiles.back().SetRawInfo(autofill::NAME_FIRST, 109 SetProfiles(profile, &autofill_profiles);
|
/external/chromium_org/components/test/data/web_database/ |
version_32.sql | 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, label VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, email VARCHAR, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, phone VARCHAR, fax VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0); table 18 INSERT INTO "autofill_profiles" VALUES('00580526-FF81-EE2A-0546-1AC593A32E2F','John Doe, 1 Main St','John','','Doe','john@doe.com','Doe Enterprises','1 Main St','Apt 1','Los Altos','CA','94022','USA','4151112222','4153334444',1297882100); 19 INSERT INTO "autofill_profiles" VALUES('589636FD-9037-3053-200C-80ABC97D7344','John P. Doe, 1 Main St','John','P.','Doe','john@doe.com','Doe Enterprises','1 Main St','Apt 1','Los Altos','CA','94022','USA','4151112222','4153334444',1297882100); 20 INSERT INTO "autofill_profiles" VALUES('4C74A9D8-7EEE-423E-F9C2-E7FA70ED1396','Dave Smith, 2 Main Street','Dave','','Smith','','','2 Main Street','','Los Altos','CA','94022','USA','','',1297882100); 21 INSERT INTO "autofill_profiles" VALUES('722DF5C4-F74A-294A-46F0-31FFDED0D635','Dave Smith, 2 Main St','Dave','','Smith','','','2 Main St','','Los Altos','CA','94022','USA','','',1297882100); 22 INSERT INTO "autofill_profiles" VALUES('584282AC-5D21-8D73-A2DB-4F892EF61F3F','Alfred E Newman, a@e.com','Alfred','E','Newman','a@e.com','','','','','','','','','',1297882100); 23 INSERT INTO "autofill_profiles" VALUES('9E5FE298-62C7-83DF-6293-381BC589183F','3 Main St, Los Altos','','','','','','3 Main St','','Los Altos','CA','94022','USA','','',1297882100); 31 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
|
version_35.sql | 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0); table 23 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000001','Acme Inc.','1 Main Street','Apt 2','San Francisco','CA','94102','United States','US',1300131704); 30 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000002','','1 Main Street','Apt 2','San Francisco','CA','94102','United States','US',1300131704); 37 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000003','','','Apt 3','San Francisco','CA','94102','United States','US',1300131704); 41 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000004','Acme Inc.','4 Main Street','Apt 2','San Francisco','CA','94102','United States','US',1300131704); 45 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000005','Acme Inc.','6 Main Street','Apt 2','San Francisco','BS','94102','United States','US',1300131704); 49 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000006','Acme Inc.','7 Main Street','Apt 2','San Francisco','CA','bogus','United States','US',1300131704);
|
version_25.sql | 13 CREATE TABLE autofill_profiles ( label VARCHAR,unique_id INTEGER PRIMARY KEY, first_name VARCHAR,middle_name VARCHAR, last_name VARCHAR, email VARCHAR,company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR,city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR,phone VARCHAR, fax VARCHAR); table 21 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
|
version_26.sql | 13 CREATE TABLE autofill_profiles ( label VARCHAR,unique_id INTEGER PRIMARY KEY, first_name VARCHAR,middle_name VARCHAR, last_name VARCHAR, email VARCHAR,company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR,city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR,phone VARCHAR, fax VARCHAR); table 21 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
|
version_29.sql | 17 CREATE TABLE autofill_profiles ( label VARCHAR, unique_id INTEGER PRIMARY KEY, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, email VARCHAR, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, phone VARCHAR, fax VARCHAR); table 18 INSERT INTO "autofill_profiles" VALUES('Santa Claus, 1 Reindeer Lane',1,'Santa','','Claus','','','1 Reindeer Lane','P.O. Box 56009','North Pole','','H0H 0H0','CANADA','',''); 27 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
|
version_31.sql | 17 CREATE TABLE autofill_profiles ( label VARCHAR, unique_id INTEGER PRIMARY KEY, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, email VARCHAR, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, phone VARCHAR, fax VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, guid VARCHAR NOT NULL DEFAULT ""); table 18 INSERT INTO "autofill_profiles" VALUES('Elvis Presley, 1122 PBJ Lane',1,'Elvis','','Presley','elvis@elvis.com','Hip Shake Inc.','1122 PBJ Lane','Suite 1','Memphis','TN','38116','UK','9013323322','',1288642516,'A4FF32F6-EF3F-379A-87F2-40A8811182A7'); 27 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
|
version_27.sql | 15 CREATE TABLE autofill_profiles ( label VARCHAR, unique_id INTEGER PRIMARY KEY, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, email VARCHAR, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, phone VARCHAR, fax VARCHAR); table 24 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
|
version_30.sql | 17 CREATE TABLE autofill_profiles ( label VARCHAR, unique_id INTEGER PRIMARY KEY, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, email VARCHAR, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, phone VARCHAR, fax VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0); table 18 INSERT INTO "autofill_profiles" VALUES('Jim Johnson, 789 4th Street',1,'Jim','','Johnson','jim@acme.com','Acme Inc.','789 4th Street','Apt. #4','San Francisco','CA','94102','USA','4155512255','4155512233',1287508123); 19 INSERT INTO "autofill_profiles" VALUES('Billy Jean, 1 Ghost Blvd.',3,'Billy','','Jean','billy@thriller.com','Thriller Inc.','1 Ghost Blvd.','','Santa Monica','CA','98990','USA','4431110000','',1287508123); 29 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
|
version_53.sql | 22 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, origin VARCHAR DEFAULT ''); table 23 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000001','Google, Inc.','1950 Charleston Rd.','(2nd floor)','Mountain View','CA','94043','United States','US',1386046731,'Chrome settings'); 24 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000002','Google!','1600 Amphitheatre Pkwy.','','Mtn. View','California','94043-1234','United States','US',1386046800,'Chrome settings'); 25 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000003','','','Only line 2???','','','','','',1386046834,'Chrome settings'); 26 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000004','','','','','Texas','','','',1386046847,'Chrome settings');
|
version_33.sql | 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0); table 18 INSERT INTO "autofill_profiles" VALUES('45285F35-4A04-5F47-DBCC-CA8C2F2A5944','Hip Shake Inc.','1122 PBJ Lane','Suite 1','Memphis','TN','38116','United States',1298621949);
|
version_48.sql | 12 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0); table
|
version_37.sql | 15 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0); table
|
/external/chromium_org/components/webdata/common/ |
web_database_migration_unittest.cc | 278 EXPECT_TRUE(connection.DoesTableExist("autofill_profiles")); 423 std::string stmt = "INSERT INTO autofill_profiles" 488 std::string stmt = "INSERT INTO autofill_profiles" 606 // Makes sure date_modified is added correctly to autofill_profiles and 618 EXPECT_FALSE(connection.DoesColumnExist("autofill_profiles", 638 EXPECT_TRUE(connection.DoesColumnExist("autofill_profiles", 644 "SELECT date_modified FROM autofill_profiles ")); 667 // Makes sure guids are added to autofill_profiles and credit_cards tables. 678 EXPECT_FALSE(connection.DoesColumnExist("autofill_profiles", "guid")); 693 ASSERT_TRUE(connection.DoesColumnExist("autofill_profiles", "guid")) [all...] |
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_table.cc | 967 "INSERT INTO autofill_profiles" 986 "FROM autofill_profiles " 1015 "FROM autofill_profiles")); [all...] |
autofill_table_unittest.cc | 546 "FROM autofill_profiles WHERE guid=?")); 571 "SELECT date_modified FROM autofill_profiles WHERE guid=?")); 588 "SELECT date_modified FROM autofill_profiles WHERE guid=?")); 624 "SELECT date_modified FROM autofill_profiles WHERE guid=?")); [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
autofill_helper.cc | 239 void SetProfiles(int profile, std::vector<AutofillProfile>* autofill_profiles) { 245 pdm->SetProfiles(autofill_profiles); 263 std::vector<AutofillProfile> autofill_profiles; local 265 autofill_profiles.push_back(*all_profiles[i]); 266 autofill_profiles.push_back(autofill_profile); 267 autofill_helper::SetProfiles(profile, &autofill_profiles); 272 std::vector<AutofillProfile> autofill_profiles; local 275 autofill_profiles.push_back(*all_profiles[i]); 277 autofill_helper::SetProfiles(profile, &autofill_profiles);
|
autofill_helper.h | 63 // |autofill_profiles|. 65 std::vector<autofill::AutofillProfile>* autofill_profiles);
|