Searched defs:m_resource (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceRequest.h57 CachedResource* m_resource; member in class:WebCore::CachedResourceRequest
H A DCachedResourceHandle.h35 ~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
57 CachedResource* m_resource; member in class:WebCore::CachedResourceHandleBase
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSFontFaceSrcValue.h52 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/
H A DApplicationCacheHost.h100 : m_resource(resource)
107 KURL m_resource; member in struct:WebCore::ApplicationCacheHost::ResourceInfo
H A DApplicationCacheStorage.cpp75 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

Completed in 105 milliseconds