HomeSort by relevance Sort by last modified time
    Searched full:autofill_dates (Results 26 - 36 of 36) sorted by null

12

  /external/chromium/chrome/browser/webdata/
autofill_table.h 38 // autofill_dates This table associates a row to each separate time the
139 // Removes rows from autofill_dates if they were created on or after
149 // Removes from autofill_dates rows with given pair_id where date_created lies
178 // Adds a new row to the autofill_dates table.
309 // Insert a single AutofillEntry into the autofill/autofill_dates tables.
autofill_table.cc 469 "FROM autofill_dates ad JOIN autofill a ON ad.pair_id = a.pair_id "
517 "DELETE FROM autofill_dates WHERE pair_id = ? AND "
642 "INSERT INTO autofill_dates "
709 "autofill_dates ad ON a.pair_id=ad.pair_id"));
767 "autofill_dates ad ON a.pair_id=ad.pair_id "
    [all...]
web_database_migration_unittest.cc 311 EXPECT_TRUE(connection.DoesTableExist("autofill_dates"));
    [all...]
  /external/chromium_org/components/test/data/web_database/
version_22_corrupt.sql 21 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_30.sql 16 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_32.sql 16 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table
30 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
version_35.sql 16 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table
58 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
version_52.sql 21 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table
32 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
version_53.sql 21 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); table
49 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table.cc 500 "FROM autofill_dates ad JOIN autofill a ON ad.pair_id = a.pair_id "
555 "FROM autofill_dates WHERE date_created >= ?)"));
569 "SELECT pair_id FROM autofill_dates WHERE date_created >= ?)"));
575 "DELETE FROM autofill_dates WHERE pair_id NOT IN ("
576 "SELECT pair_id FROM autofill_dates WHERE date_created >= ?)"));
586 "DELETE FROM autofill_dates "
620 "DELETE FROM autofill_dates WHERE pair_id = ? AND "
636 "SELECT COUNT(*) FROM autofill_dates WHERE pair_id = ?"));
732 "INSERT INTO autofill_dates "
744 "DELETE FROM autofill_dates WHERE pair_id = ? and date_created IN
    [all...]
  /external/chromium_org/components/webdata/common/
web_database_migration_unittest.cc 277 EXPECT_TRUE(connection.DoesTableExist("autofill_dates"));
    [all...]

Completed in 414 milliseconds

12