HomeSort by relevance Sort by last modified time
    Searched refs:applicationCache (Results 1 - 10 of 10) sorted by null

  /external/webkit/LayoutTests/http/tests/appcache/resources/
offline-access.js 3 applicationCache.oncached = function() { log("cached") }
4 applicationCache.onnoupdate = function() { log("noupdate") }
5 applicationCache.onerror = function() { log("error") }
  /external/webkit/Source/WebCore/inspector/front-end/
ApplicationCacheItemsView.js 71 this.updateStatus(applicationCache.UNCACHED);
107 statusInformation[applicationCache.UNCACHED] = { src: "Images/warningOrangeDot.png", text: "UNCACHED" };
108 statusInformation[applicationCache.IDLE] = { src: "Images/warningOrangeDot.png", text: "IDLE" };
109 statusInformation[applicationCache.CHECKING] = { src: "Images/successGreenDot.png", text: "CHECKING" };
110 statusInformation[applicationCache.DOWNLOADING] = { src: "Images/successGreenDot.png", text: "DOWNLOADING" };
111 statusInformation[applicationCache.UPDATEREADY] = { src: "Images/successGreenDot.png", text: "UPDATEREADY" };
112 statusInformation[applicationCache.OBSOLETE] = { src: "Images/errorRedDot.png", text: "OBSOLETE" };
300 InspectorBackend.registerDomainDispatcher("ApplicationCache", new WebInspector.ApplicationCacheDispatcher());
inspector.css     [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheHost.cpp 31 #include "ApplicationCache.h"
151 if (!group && applicationCache() && !mainResourceApplicationCache())
152 group = applicationCache()->group();
234 return !applicationCache() && !candidateApplicationCacheGroup();
277 ApplicationCache* cache = applicationCache();
281 ApplicationCache::ResourceMap::const_iterator end = cache->end();
282 for (ApplicationCache::ResourceMap::const_iterator it = cache->begin(); it != end; ++it) {
296 ApplicationCache* cache = applicationCache();
    [all...]
ApplicationCacheHost.h 55 class ApplicationCache;
161 bool getApplicationCacheFallbackResource(const ResourceRequest&, ApplicationCacheResource*&, ApplicationCache* = 0);
189 bool scheduleLoadFallbackResourceFromApplicationCache(ResourceLoader*, ApplicationCache* = 0);
192 void setApplicationCache(PassRefPtr<ApplicationCache> applicationCache);
193 ApplicationCache* applicationCache() const { return m_applicationCache.get(); }
194 ApplicationCache* mainResourceApplicationCache() const { return m_mainResourceApplicationCache.get(); }
198 RefPtr<ApplicationCache> m_applicationCache;
205 RefPtr<ApplicationCache> m_mainResourceApplicationCache
    [all...]
ApplicationCacheGroup.cpp 31 #include "ApplicationCache.h"
99 ApplicationCache* ApplicationCacheGroup::cacheForMainRequest(const ResourceRequest& request, DocumentLoader*)
101 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request))
118 ApplicationCache* ApplicationCacheGroup::fallbackCacheForMainRequest(const ResourceRequest& request, DocumentLoader*)
120 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request))
145 ASSERT(!documentLoader->applicationCacheHost()->applicationCache());
156 ApplicationCache* mainResourceCache = documentLoader->applicationCacheHost()->mainResourceApplicationCache();
188 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request))
218 ASSERT(!documentLoader->applicationCacheHost()->applicationCache());
220 ApplicationCache* mainResourceCache = documentLoader->applicationCacheHost()->mainResourceApplicationCache()
    [all...]
ApplicationCacheStorage.cpp 31 #include "ApplicationCache.h"
50 static const char flatFileSubdirectory[] = "ApplicationCache";
122 RefPtr<ApplicationCache> cache = loadCache(newestCacheStorageID);
208 if (ApplicationCache* cache = group->newestCache()) {
239 RefPtr<ApplicationCache> cache = loadCache(newestCacheID);
276 if (ApplicationCache* cache = group->newestCache()) {
310 RefPtr<ApplicationCache> cache = loadCache(newestCacheID);
358 if (ApplicationCache* newestCache = group->newestCache())
483 bool ApplicationCacheStorage::remainingSizeForOriginExcludingCache(const SecurityOrigin* origin, ApplicationCache* cache, int64_t& remainingSize)
601 m_cacheFile = pathByAppendingComponent(m_cacheDirectory, "ApplicationCache.db")
    [all...]
  /external/webkit/Source/WebCore/page/
DOMWindow.h 412 DOMApplicationCache* applicationCache() const;
DOMWindow.idl 165 readonly attribute [EnabledAtRuntime] DOMApplicationCache applicationCache;
    [all...]
DOMWindow.cpp 597 DOMApplicationCache* DOMWindow::applicationCache() const
    [all...]

Completed in 1381 milliseconds