/external/chromium_org/components/test/data/web_database/ |
version_34.sql | 27 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 28 INSERT INTO "autofill_dates" VALUES(1,1299093389); 29 INSERT INTO "autofill_dates" VALUES(2,1299093389); 30 INSERT INTO "autofill_dates" VALUES(3,1299093389); 31 INSERT INTO "autofill_dates" VALUES(4,1299093389); 32 INSERT INTO "autofill_dates" VALUES(5,1299093389); 33 INSERT INTO "autofill_dates" VALUES(6,1299093389); 34 INSERT INTO "autofill_dates" VALUES(7,1299093389); 35 INSERT INTO "autofill_dates" VALUES(8,1299093389); 36 INSERT INTO "autofill_dates" VALUES(9,1299093389) [all...] |
version_25.sql | 12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0,date_created INTEGER DEFAULT 0); table 20 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_26.sql | 12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0,date_created INTEGER DEFAULT 0); table 20 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_48.sql | 11 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 24 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_27.sql | 14 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 23 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_37.sql | 14 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 25 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_38.sql | 14 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 25 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_39.sql | 14 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 25 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_44.sql | 32 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 47 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_45.sql | 12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 45 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_45_compatible.sql | 12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 45 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_45_invalid.sql | 12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 45 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_46.sql | 12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_47.sql | 33 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 46 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_22.sql | 21 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0,date_created INTEGER DEFAULT 0); table 27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_29.sql | 16 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 26 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_31.sql | 16 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 26 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_33.sql | 16 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 31 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_40.sql | 16 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_41.sql | 16 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_42.sql | 17 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 28 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_43.sql | 18 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 29 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_49.sql | 10 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
version_50.sql | 10 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table 27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
|
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_table.h | 45 // autofill_dates This table associates a row to each separate time the 163 // Removes rows from autofill_dates if they were created on or after 173 // Removes rows from autofill_dates if they were accessed strictly before 179 // Removes from autofill_dates rows with given pair_id where date_created lies 189 // Counts how many timestamp data rows are in the |autofill_dates| table for 212 // Adds a new row to the autofill_dates table. 215 // Deletes last access to the Autofill data from the autofill_dates table. 362 // Insert a single AutofillEntry into the autofill/autofill_dates tables.
|