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

  /external/webkit/WebCore/loader/mac/
DocumentLoaderMac.cpp 39 static void scheduleAll(const ResourceLoaderSet& loaders, SchedulePair* pair)
41 const ResourceLoaderSet copy = loaders;
42 ResourceLoaderSet::const_iterator end = copy.end();
43 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
48 static void unscheduleAll(const ResourceLoaderSet& loaders, SchedulePair* pair)
50 const ResourceLoaderSet copy = loaders;
51 ResourceLoaderSet::const_iterator end = copy.end();
52 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
  /external/webkit/WebCore/loader/
DocumentLoader.h 55 typedef HashSet<RefPtr<ResourceLoader> > ResourceLoaderSet;
229 ResourceLoaderSet m_subresourceLoaders;
230 ResourceLoaderSet m_multipartSubresourceLoaders;
231 ResourceLoaderSet m_plugInStreamLoaders;
DocumentLoader.cpp 60 static void cancelAll(const ResourceLoaderSet& loaders)
62 const ResourceLoaderSet copy = loaders;
63 ResourceLoaderSet::const_iterator end = copy.end();
64 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
68 static void setAllDefersLoading(const ResourceLoaderSet& loaders, bool defers)
70 const ResourceLoaderSet copy = loaders;
71 ResourceLoaderSet::const_iterator end = copy.end();
72 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)

Completed in 308 milliseconds