Searched refs:ResourceMap (Results 1 – 5 of 5) sorted by relevance
80 typedef HashMap<String, RefPtr<ApplicationCacheResource> > ResourceMap; typedef81 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;
181 ResourceMap::const_iterator end = m_resources.end(); in clearStorageID()182 for (ResourceMap::const_iterator it = m_resources.begin(); it != end; ++it) in clearStorageID()
560 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()
657 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()
50 typedef HashMap<RefPtr<WebCore::ResourceLoader>, RetainPtr<WebResource> > ResourceMap; typedef