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

  /external/webkit/Source/WebCore/rendering/svg/
SVGResourcesCycleSolver.cpp 41 , m_resources(resources)
44 ASSERT(m_resources);
103 m_resources->dump(m_renderer);
108 m_resources->buildSetOfResources(localResources);
158 m_resources->dump(m_renderer);
167 if (resourceLeadingToCycle == m_resources->linkedResource()) {
168 m_resources->resetLinkedResource();
174 ASSERT(resourceLeadingToCycle == m_resources->masker());
175 m_resources->resetMasker();
178 ASSERT(resourceLeadingToCycle == m_resources->markerStart() || resourceLeadingToCycle == m_resources->markerMid() || resourceLeadingToCycle == (…)
    [all...]
SVGResourcesCycleSolver.h 45 SVGResources* m_resources; member in class:WebCore::SVGResourcesCycleSolver
  /external/webkit/Source/WebCore/inspector/
InspectorDOMStorageAgent.cpp 69 DOMStorageResourcesMap::iterator resourcesEnd = m_resources.end();
70 for (DOMStorageResourcesMap::iterator it = m_resources.begin(); it != resourcesEnd; ++it)
76 DOMStorageResourcesMap::iterator domStorageEnd = m_resources.end();
77 for (DOMStorageResourcesMap::iterator it = m_resources.begin(); it != domStorageEnd; ++it)
124 DOMStorageResourcesMap::iterator domStorageEnd = m_resources.end();
125 for (DOMStorageResourcesMap::iterator it = m_resources.begin(); it != domStorageEnd; ++it) {
134 DOMStorageResourcesMap::iterator it = m_resources.find(storageId);
135 if (it == m_resources.end())
142 DOMStorageResourcesMap::iterator domStorageEnd = m_resources.end();
143 for (DOMStorageResourcesMap::iterator it = m_resources.begin(); it != domStorageEnd; ++it)
    [all...]
InspectorDatabaseAgent.cpp 234 m_resources.set(resource->id(), resource);
242 m_resources.clear();
277 DatabaseResourcesMap::iterator databasesEnd = m_resources.end();
278 for (DatabaseResourcesMap::iterator it = m_resources.begin(); it != databasesEnd; ++it)
334 for (DatabaseResourcesMap::iterator it = m_resources.begin(); it != m_resources.end(); ++it) {
343 for (DatabaseResourcesMap::iterator it = m_resources.begin(); it != m_resources.end(); ++it) {
352 DatabaseResourcesMap::iterator it = m_resources.find(databaseId);
353 if (it == m_resources.end()
    [all...]
InspectorDOMStorageAgent.h 79 DOMStorageResourcesMap m_resources; member in class:WebCore::InspectorDOMStorageAgent
InspectorDatabaseAgent.h 82 DatabaseResourcesMap m_resources; member in class:WebCore::InspectorDatabaseAgent
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCache.cpp 83 ASSERT(!m_resources.contains(url));
95 m_resources.set(url, resource);
100 HashMap<String, RefPtr<ApplicationCacheResource> >::iterator it = m_resources.find(url);
101 if (it == m_resources.end())
107 m_resources.remove(it);
117 return m_resources.get(url).get();
183 ResourceMap::const_iterator end = m_resources.end();
184 for (ResourceMap::const_iterator it = m_resources.begin(); it != end; ++it)
213 HashMap<String, RefPtr<ApplicationCacheResource> >::const_iterator end = m_resources.end();
215 for (HashMap<String, RefPtr<ApplicationCacheResource> >::const_iterator it = m_resources.begin(); it != end; ++it)
    [all...]
ApplicationCache.h 86 ResourceMap::const_iterator begin() const { return m_resources.begin(); }
87 ResourceMap::const_iterator end() const { return m_resources.end(); }
101 ResourceMap m_resources; member in class:WebCore::ApplicationCache
  /external/webkit/Source/WebCore/platform/graphics/
ANGLEWebKitBridge.cpp 66 m_resources = resources;
72 m_fragmentCompiler = ShConstructCompiler(SH_FRAGMENT_SHADER, SH_WEBGL_SPEC, &m_resources);
73 m_vertexCompiler = ShConstructCompiler(SH_VERTEX_SHADER, SH_WEBGL_SPEC, &m_resources);
ANGLEWebKitBridge.h 51 ShBuiltInResources getResources() { return m_resources; }
65 ShBuiltInResources m_resources; member in class:WebCore::ANGLEWebKitBridge
  /external/webkit/Source/WebCore/svg/
SVGDocumentExtensions.cpp 74 m_resources.set(id, resource);
79 if (id.isEmpty() || !m_resources.contains(id))
82 m_resources.remove(id);
90 return m_resources.get(id);
SVGDocumentExtensions.h 74 HashMap<AtomicString, RenderSVGResourceContainer*> m_resources; member in class:WebCore::SVGDocumentExtensions
  /external/webkit/Source/WebCore/loader/cache/
MemoryCache.cpp 91 m_resources.set(resource->url(), resource);
110 ASSERT(!m_resources.get(resource->url()));
111 m_resources.set(resource->url(), resource);
136 CachedResource* resource = m_resources.get(url);
331 m_resources.remove(resource->url());
344 ASSERT(m_resources.get(resource->url()) != resource);
482 CachedResourceMap::iterator e = m_resources.end();
483 for (CachedResourceMap::iterator it = m_resources.begin(); it != e; ++it) {
498 CachedResourceMap::iterator e = m_resources.end();
499 for (CachedResourceMap::iterator it = m_resources.begin(); it != e; ++it
    [all...]
MemoryCache.h 215 HashMap<String, CachedResource*> m_resources; member in class:WebCore::MemoryCache
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ShaderProgram.cpp 256 m_resources.append(newResource);
286 for (unsigned int i = 0; i < m_resources.size(); i++) {
287 glDetachShader(m_resources[i].program, m_resources[i].vertexShader);
288 glDetachShader(m_resources[i].program, m_resources[i].fragmentShader);
289 glDeleteShader(m_resources[i].vertexShader);
290 glDeleteShader(m_resources[i].fragmentShader);
291 glDeleteProgram(m_resources[i].program);
295 m_resources.clear()
    [all...]
ShaderProgram.h 234 Vector<ShaderResource> m_resources; member in class:WebCore::ShaderProgram

Completed in 248 milliseconds