Home | History | Annotate | Download | only in webdata

Lines Matching full:date_modified

895       " zipcode, country, country_code, date_modified)"
921 " zipcode, country, country_code, date_modified "
1038 " date_modified=? "
1140 "card_number_encrypted, date_modified)"
1163 "card_number_encrypted, date_modified "
1219 " expiration_year=?, card_number_encrypted=?, date_modified=? "
1261 "WHERE date_modified >= ? AND date_modified < ?"));
1278 "WHERE date_modified >= ? AND date_modified < ?"));
1296 "WHERE date_modified >= ? AND date_modified < ?"));
1313 "WHERE date_modified >= ? AND date_modified < ?"));
1454 "date_modified INTEGER NOT NULL DEFAULT 0)")) {
1492 "date_modified INTEGER NOT NULL DEFAULT 0)")) {
1754 // Add date_modified to autofill_profiles.
1755 if (!db_->DoesColumnExist("autofill_profiles", "date_modified")) {
1757 "date_modified INTEGER NON NULL DEFAULT 0")) {
1762 "UPDATE autofill_profiles SET date_modified=?"));
1772 // Add date_modified to credit_cards.
1773 if (!db_->DoesColumnExist("credit_cards", "date_modified")) {
1775 "date_modified INTEGER NON NULL DEFAULT 0")) {
1780 "UPDATE credit_cards SET date_modified=?"));
1875 "date_modified INTEGER NOT NULL DEFAULT 0)")) {
1883 "zipcode, country, phone, fax, date_modified "
1905 "date_modified INTEGER NOT NULL DEFAULT 0)")) {
1912 "expiration_year, card_number_encrypted, date_modified "
1944 "date_modified INTEGER NOT NULL DEFAULT 0)")) {
1952 "zipcode, country, phone, fax, date_modified "
1972 int64 date_modified = s.ColumnInt64(14);
1977 " state, zipcode, country, date_modified)"
1990 s_insert.BindInt64(8, date_modified);
2017 "date_modified INTEGER NOT NULL DEFAULT 0)")) {
2024 "expiration_year, card_number_encrypted, date_modified "
2092 "SELECT guid, date_modified FROM autofill_profiles"));
2102 int64 date_modified = s.ColumnInt64(1);
2104 std::pair<std::string, int64>(guid, date_modified));
2154 "UPDATE autofill_profiles SET date_modified=? "