HomeSort by relevance Sort by last modified time
    Searched refs:has_all_images (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium/chrome/browser/webdata/
web_apps_table.h 23 // has_all_images Do we have all the images?
42 bool SetWebAppHasAllImages(const GURL& url, bool has_all_images);
web_apps_table.cc 40 "has_all_images INTEGER NOT NULL)")) {
98 bool has_all_images) {
100 "INSERT OR REPLACE INTO web_apps (url, has_all_images) VALUES (?, ?)"));
106 s.BindInt(1, has_all_images ? 1 : 0);
112 "SELECT has_all_images FROM web_apps WHERE url=?"));
web_data_service.h 97 bool has_all_images; member in struct:WDAppImagesResult
345 void SetWebAppHasAllImages(const GURL& app_url, bool has_all_images);
  /external/chromium_org/chrome/browser/webdata/
web_apps_table.h 24 // has_all_images Do we have all the images?
53 bool SetWebAppHasAllImages(const GURL& url, bool has_all_images);
web_data_service.cc 33 WDAppImagesResult::WDAppImagesResult() : has_all_images(false) {}
101 bool has_all_images) {
104 has_all_images));
198 const GURL& app_url, bool has_all_images, WebDatabase* db) {
200 has_all_images);
213 result.has_all_images =
web_data_service.h 74 bool has_all_images; member in struct:WDAppImagesResult
142 void SetWebAppHasAllImages(const GURL& app_url, bool has_all_images);
210 bool has_all_images, WebDatabase* db);
web_apps_table.cc 67 "has_all_images INTEGER NOT NULL)")) {
119 bool has_all_images) {
121 "INSERT OR REPLACE INTO web_apps (url, has_all_images) VALUES (?, ?)"));
123 s.BindInt(1, has_all_images ? 1 : 0);
130 "SELECT has_all_images FROM web_apps WHERE url=?"));
  /external/chromium_org/components/test/data/web_database/
version_25.sql 10 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_26.sql 10 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_48.sql 18 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_22.sql 19 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_27.sql 12 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_29.sql 14 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_37.sql 12 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_38.sql 12 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_39.sql 12 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_40.sql 14 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_41.sql 14 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_42.sql 15 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_44.sql 41 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_45.sql 19 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_45_compatible.sql 19 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_45_invalid.sql 19 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_46.sql 19 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
version_47.sql 40 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);

Completed in 633 milliseconds

1 2