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

  /external/webkit/Source/WebCore/loader/cache/
CachedResourceHandle.cpp 33 if (resource == m_resource)
35 if (m_resource)
36 m_resource->unregisterHandle(this);
37 m_resource = resource;
38 if (m_resource)
39 m_resource->registerHandle(this);
CachedResourceHandle.h 35 ~CachedResourceHandleBase() { if (m_resource) m_resource->unregisterHandle(this); }
36 CachedResource* get() const { return m_resource; }
38 bool operator!() const { return !m_resource; }
43 operator UnspecifiedBoolType() const { return m_resource ? &CachedResourceHandleBase::m_resource : 0; }
46 CachedResourceHandleBase() : m_resource(0) {}
47 CachedResourceHandleBase(CachedResource* res) { m_resource = res; if (m_resource) m_resource->registerHandle(this);
57 CachedResource* m_resource; member in class:WebCore::CachedResourceHandleBase
    [all...]
CachedResourceRequest.cpp 75 , m_resource(resource)
80 m_resource->setRequest(this);
85 m_resource->setRequest(0);
142 m_resource->setRequestedFromNetworkingLayer();
151 ASSERT(!m_resource->resourceToRevalidate());
152 LOG(ResourceLoading, "Received '%s'.", m_resource->url().latin1().data());
158 m_cachedResourceLoader->decrementRequestCount(m_resource);
163 if (!m_resource->errorOccurred()) {
165 m_resource->data(loader->resourceData(), true);
166 if (!m_resource->errorOccurred()
    [all...]
CachedResourceRequest.h 57 CachedResource* m_resource; member in class:WebCore::CachedResourceRequest
CachedResource.cpp 434 handle->m_resource = m_resourceToRevalidate;
  /external/webkit/Source/WebCore/css/
CSSFontFaceSrcValue.cpp 51 if (!m_resource.startsWith("data:", false) && m_resource.endsWith(".eot", false))
70 result += m_resource;
80 addSubresourceURL(urls, styleSheet->completeURL(m_resource));
CSSFontFaceSrcValue.h 52 const String& resource() const { return m_resource; }
73 : m_resource(resource)
81 String m_resource; member in class:WebCore::CSSFontFaceSrcValue
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheHost.h 100 : m_resource(resource)
107 KURL m_resource; member in struct:WebCore::ApplicationCacheHost::ResourceInfo
ApplicationCacheStorage.cpp 75 Record() : m_resource(0), m_storageID(0) { }
76 Record(T* resource, unsigned storageID) : m_resource(resource), m_storageID(storageID) { }
80 m_resource->setStorageID(m_storageID);
84 T* m_resource; member in class:WebCore::StorageIDJournal::Record
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorApplicationCacheAgent.cpp 116 value->setString("name", resourceInfo.m_resource.string());

Completed in 887 milliseconds