/external/chromium_org/components/precache/core/ |
precache_switches.cc | 5 #include "components/precache/core/precache_switches.h" 7 namespace precache { namespace 11 const char kPrecacheConfigSettingsURL[] = "precache-config-settings-url"; 13 // Precache manifests will be served from URLs with this prefix. 14 const char kPrecacheManifestURLPrefix[] = "precache-manifest-url-prefix"; 17 } // namespace precache
|
precache_switches.h | 8 namespace precache { namespace 17 } // namespace precache
|
precache_url_table.h | 18 namespace precache { namespace 23 // since then. Manages one table { URL (primary key), precache timestamp }. 29 // Initialize the precache URL table for use with the specified database 35 // precache timestamp. Replaces the row if one already exists. 59 } // namespace precache
|
precache_database.cc | 5 #include "components/precache/core/precache_database.h" 10 #include "components/precache/core/precache_url_table.h" 17 // The number of days old that an entry in the precache URL table can be before 23 namespace precache { namespace 43 db_->set_histogram_tag("Precache"); 68 // Delete old precache history that has expired. 89 // Since the precache came from the cache, and there's no entry in the URL 91 // because of user browsing. Thus, this precache had no effect, so ignore 97 // The precache only counts as overhead if it was downloaded over the 99 UMA_HISTOGRAM_COUNTS("Precache.DownloadedPrecacheMotivated", size) [all...] |
precache_database.h | 24 namespace precache { namespace 36 // Initializes the precache database, using the specified database file path. 40 // Deletes precache history from the precache URL table that is more than 60 44 // Report precache-related metrics in response to a URL being fetched, where 49 // Report precache-related metrics in response to a URL being fetched, where 77 } // namespace precache
|
precache_fetcher.h | 20 namespace precache { namespace 36 // PrecacheFetcher to work. This includes the URL that the precache 37 // configuration settings are fetched from and the prefix of URLs where precache 79 // Starts fetching resources to precache. URLs are fetched sequentially. Can 93 // Called when the precache configuration settings have been fetched. 95 // |starting_urls_| and information from the precache configuration settings. 99 // Called when a precache manifest has been fetched. Builds the list of 125 } // namespace precache
|
precache_url_table.cc | 5 #include "components/precache/core/precache_url_table.h" 24 namespace precache { namespace 90 } // namespace precache
|
precache_url_table_unittest.cc | 5 #include "components/precache/core/precache_url_table.h" 15 namespace precache { namespace 116 } // namespace precache
|
precache_fetcher.cc | 5 #include "components/precache/core/precache_fetcher.h" 13 #include "components/precache/core/precache_switches.h" 14 #include "components/precache/core/proto/precache.pb.h" 24 namespace precache { namespace 38 // The precache config settings URL could not be determined, so return an 54 // The precache manifest URL prefix could not be determined, so return an 60 // Construct the URL of the precache manifest for the given starting URL. 139 DCHECK(precache_delegate_); // Precache delegate must be non-NULL. 142 << "Could not determine the precache config settings URL." [all...] |
precache_database_unittest.cc | 5 #include "components/precache/core/precache_database.h" 17 #include "components/precache/core/precache_url_table.h" 29 const char* kHistogramNames[] = {"Precache.DownloadedPrecacheMotivated", 30 "Precache.DownloadedNonPrecache", 31 "Precache.DownloadedNonPrecache.Cellular", 32 "Precache.Saved", 33 "Precache.Saved.Cellular"}; 54 namespace precache { namespace 74 UMA_HISTOGRAM_COUNTS("Precache.DownloadedPrecacheMotivated", 0); 75 UMA_HISTOGRAM_COUNTS("Precache.DownloadedNonPrecache", 0) [all...] |
precache_fetcher_unittest.cc | 5 #include "components/precache/core/precache_fetcher.h" 17 #include "components/precache/core/precache_switches.h" 18 #include "components/precache/core/proto/precache.pb.h" 26 namespace precache { namespace 220 // OnDone to be called on the precache delegate. 234 // If the default precache configuration settings URL is defined, then test that 263 // If the default precache manifest URL prefix is defined, then test that it 300 } // namespace precache
|
/frameworks/base/libs/hwui/ |
PathCache.cpp | 462 void PathCache::precache(SkPath* path, SkPaint* paint) { function in class:android::uirenderer::PathCache 484 // attempt to precache the same path several times
|
FontRenderer.cpp | 266 // If the new glyph didn't fit and we are not just trying to precache it, 678 void FontRenderer::precache(SkPaint* paint, const char* text, int numGlyphs, const mat4& matrix) { function in class:android::uirenderer::FontRenderer 680 font->precache(paint, text, numGlyphs);
|
/frameworks/base/libs/hwui/font/ |
Font.cpp | 352 void Font::precache(SkPaint* paint, const char* text, int numGlyphs) { function in class:android::uirenderer::Font
|
/external/chromium_org/third_party/qcms/src/ |
transform.c | 867 * This can lead to us prematurely deleting the precache if threads get unlucky 1173 bool precache = false; local [all...] |