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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGResourcesCycleSolver.cpp 40 , m_resources(resources)
43 ASSERT(m_resources);
102 m_resources->dump(m_renderer);
107 m_resources->buildSetOfResources(localResources);
157 m_resources->dump(m_renderer);
166 if (resourceLeadingToCycle == m_resources->linkedResource()) {
167 m_resources->resetLinkedResource();
173 ASSERT(resourceLeadingToCycle == m_resources->masker());
174 m_resources->resetMasker();
177 ASSERT(resourceLeadingToCycle == m_resources->markerStart() || resourceLeadingToCycle == m_resources->markerMid() || resourceLeadingToCycle == (…)
    [all...]
SVGResourcesCycleSolver.h 45 SVGResources* m_resources; member in class:WebCore::SVGResourcesCycleSolver
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/angle/
ANGLEPlatformBridge.h 74 ShBuiltInResources getResources() { return m_resources; }
91 ShBuiltInResources m_resources; member in class:WebCore::ANGLEPlatformBridge
ANGLEPlatformBridge.cpp 170 m_resources = resources;
176 m_fragmentCompiler = ShConstructCompiler(SH_FRAGMENT_SHADER, m_shaderSpec, m_shaderOutput, &m_resources);
177 m_vertexCompiler = ShConstructCompiler(SH_VERTEX_SHADER, m_shaderSpec, m_shaderOutput, &m_resources);
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLParser.h 68 Vector<RefPtr<ArchiveResource> > m_resources; member in class:WebCore::MHTMLParser
MHTMLParser.cpp 262 m_resources.append(resource);
379 return m_resources.size();
384 return m_resources[index].get();
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PageSerializerTest.cpp 140 PageSerializer serializer(&m_resources);
146 return m_resources;
154 for (size_t i = 0; i < m_resources.size(); ++i) {
155 const SerializedResource& resource = m_resources[i];
183 Vector<SerializedResource> m_resources; member in class:__anon10944::PageSerializerTest
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDatabaseAgent.cpp 203 m_resources.set(resource->id(), resource);
217 m_resources.clear();
251 DatabaseResourcesMap::iterator databasesEnd = m_resources.end();
252 for (DatabaseResourcesMap::iterator it = m_resources.begin(); it != databasesEnd; ++it)
310 for (DatabaseResourcesMap::iterator it = m_resources.begin(); it != m_resources.end(); ++it) {
319 for (DatabaseResourcesMap::iterator it = m_resources.begin(); it != m_resources.end(); ++it) {
328 DatabaseResourcesMap::iterator it = m_resources.find(databaseId);
329 if (it == m_resources.end()
    [all...]
InspectorDatabaseAgent.h 81 DatabaseResourcesMap m_resources; member in class:WebCore::InspectorDatabaseAgent
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.h 87 Vector<SerializedResource>* m_resources; member in class:WebCore::PageSerializer
PageSerializer.cpp 176 : m_resources(resources)
212 m_resources->append(SerializedResource(url, document->suggestedMIMEType(), SharedBuffer::create(frameHTML.data(), frameHTML.length())));
287 m_resources->append(SerializedResource(url, String("text/css"), SharedBuffer::create(text.data(), text.length())));
305 m_resources->append(SerializedResource(url, mimeType, data));
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
MemoryCache.cpp 114 m_resources.set(resource->url(), resource);
124 ASSERT(!m_resources.get(newResource->url()));
125 m_resources.set(newResource->url(), newResource);
139 Resource* resource = m_resources.get(url);
302 m_resources.remove(resource->url());
310 ASSERT(m_resources.get(resource->url()) != resource);
536 ResourceMap::iterator e = m_resources.end();
537 for (ResourceMap::iterator i = m_resources.begin(); i != e; ++i) {
566 ResourceMap::iterator i = m_resources.begin();
567 if (i == m_resources.end()
    [all...]
MemoryCache.h 208 HashMap<String, Resource*> m_resources; member in class:WebCore::MemoryCache
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGDocumentExtensions.h 90 HashMap<AtomicString, RenderSVGResourceContainer*> m_resources; member in class:WebCore::SVGDocumentExtensions
SVGDocumentExtensions.cpp 67 m_resources.set(id, resource);
75 m_resources.remove(id);
83 return m_resources.get(id);

Completed in 1268 milliseconds