Home
last modified time | relevance | path

Searched refs:ResourceMap (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/loader/appcache/
DApplicationCache.h80 typedef HashMap<String, RefPtr<ApplicationCacheResource> > ResourceMap; typedef
81 ResourceMap::const_iterator begin() const { return m_resources.begin(); } in begin()
82 ResourceMap::const_iterator end() const { return m_resources.end(); } in end()
96 ResourceMap m_resources;
DApplicationCache.cpp181 ResourceMap::const_iterator end = m_resources.end(); in clearStorageID()
182 for (ResourceMap::const_iterator it = m_resources.begin(); it != end; ++it) in clearStorageID()
DApplicationCacheStorage.cpp560 ApplicationCache::ResourceMap::const_iterator end = cache->end(); in store()
561 for (ApplicationCache::ResourceMap::const_iterator it = cache->begin(); it != end; ++it) { in store()
954 ApplicationCache::ResourceMap::const_iterator end = cache->end(); in storeCopyOfCache()
955 for (ApplicationCache::ResourceMap::const_iterator it = cache->begin(); it != end; ++it) { in storeCopyOfCache()
DApplicationCacheGroup.cpp657 ApplicationCache::ResourceMap::const_iterator end = m_newestCache->end(); in didFinishLoadingManifest()
658 … for (ApplicationCache::ResourceMap::const_iterator it = m_newestCache->begin(); it != end; ++it) { in didFinishLoadingManifest()
/external/webkit/WebKit/mac/WebCoreSupport/
DWebFrameLoaderClient.h50 typedef HashMap<RefPtr<WebCore::ResourceLoader>, RetainPtr<WebResource> > ResourceMap; typedef