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

  /external/webkit/WebCore/loader/appcache/
ApplicationCache.cpp 81 ASSERT(!m_resources.contains(url));
93 m_resources.set(url, resource);
98 HashMap<String, RefPtr<ApplicationCacheResource> >::iterator it = m_resources.find(url);
99 if (it == m_resources.end())
105 m_resources.remove(it);
115 return m_resources.get(url).get();
184 ResourceMap::const_iterator end = m_resources.end();
185 for (ResourceMap::const_iterator it = m_resources.begin(); it != end; ++it)
192 HashMap<String, RefPtr<ApplicationCacheResource> >::const_iterator end = m_resources.end();
194 for (HashMap<String, RefPtr<ApplicationCacheResource> >::const_iterator it = m_resources.begin(); it != end; ++it)
    [all...]
ApplicationCache.h 83 ResourceMap::const_iterator begin() const { return m_resources.begin(); }
84 ResourceMap::const_iterator end() const { return m_resources.end(); }
98 ResourceMap m_resources; member in class:WebCore::ApplicationCache
  /external/webkit/WebCore/loader/
Cache.cpp 137 m_resources.set(url.string(), resource); // The size will be added in later once the resource is loaded and calls back to us with the new size.
172 m_resources.set(url, userSheet);
189 ASSERT(resource == m_resources.get(resource->url()));
201 m_resources.set(url, newResource);
217 ASSERT(!m_resources.get(resource->url()));
218 m_resources.set(resource->url(), resource);
241 CachedResource* resource = m_resources.get(url);
407 m_resources.remove(resource->url());
419 ASSERT(m_resources.get(resource->url()) != resource);
669 CachedResourceMap::iterator e = m_resources.end()
    [all...]
Cache.h 207 HashMap<String, CachedResource*> m_resources; member in class:WebCore::Cache
  /external/webkit/WebCore/inspector/
InspectorController.cpp 659 ResourcesMap::iterator resourcesEnd = m_resources.end();
660 for (ResourcesMap::iterator it = m_resources.begin(); it != resourcesEnd; ++it)
693 ResourcesMap::iterator resourcesEnd = m_resources.end();
694 for (ResourcesMap::iterator it = m_resources.begin(); it != resourcesEnd; ++it)
802 m_resources.set(resource->identifier(), resource);
818 m_resources.remove(resource->identifier());
843 return m_resources.get(identifier).get();
    [all...]
InspectorController.h 209 const ResourcesMap& resources() const { return m_resources; }
321 ResourcesMap m_resources; member in class:WebCore::InspectorController

Completed in 437 milliseconds