Home
last modified time | relevance | path

Searched refs:m_loading (Results 1 – 24 of 24) sorted by relevance

/external/webkit/WebCore/loader/
DCachedFont.cpp71 m_loading = true; in load()
76 if (!m_loading) in didAddClient()
87 m_loading = false; in data()
105 if (!m_fontData && !m_errorOccurred && !m_loading && m_data) { in ensureCustomFontData()
132 if (!m_externalSVGDocument && !m_errorOccurred && !m_loading && m_data) { in ensureSVGFontData()
186 if (m_loading) in checkNotify()
197 m_loading = false; in error()
DCachedXSLStyleSheet.cpp50 if (!m_loading) in didAddClient()
75 m_loading = false; in data()
81 if (m_loading) in checkNotify()
92 m_loading = false; in error()
DCachedXBLDocument.cpp57 if (!m_loading) in ref()
87 m_loading = false; in data()
93 if (m_loading) in checkNotify()
103 m_loading = false; in error()
DCachedScript.cpp54 if (!m_loading) in didAddClient()
94 m_loading = false; in data()
100 if (m_loading) in checkNotify()
110 m_loading = false; in error()
DCachedCSSStyleSheet.cpp54 if (!m_loading) in didAddClient()
102 m_loading = false; in data()
110 if (m_loading) in checkNotify()
120 m_loading = false; in error()
DCachedImage.cpp68 m_loading = false; in CachedImage()
90 m_loading = false; in load()
106 if (!m_loading) in didAddClient()
306 m_loading = false; in data()
317 m_loading = false; in error()
323 if (m_loading) in checkNotify()
334 if (isSafeToMakePurgeable() && canDeleteImage && !m_loading) { in destroyDecodedData()
DCachedResource.h116 bool isLoaded() const { return !m_loading; } in isLoaded()
117 void setLoading(bool b) { m_loading = b; } in setLoading()
233 bool m_loading; variable
DCachedResource.cpp58 , m_loading(false) in CachedResource()
111 m_loading = true; in load()
376 if (m_loading || m_errorOccurred) in canUseCacheValidator()
392 if (m_loading) in mustRevalidate()
DDocumentLoader.h99 bool isLoading() const { return m_loading; } in isLoading()
100 void setLoading(bool loading) { m_loading = loading; } in setLoading()
263 bool m_loading; variable
DCachedImage.h82 …bool stillNeedsLoad() const { return !m_errorOccurred && m_status == Unknown && m_loading == false… in stillNeedsLoad()
DDocumentLoader.cpp147 , m_loading(false) in DocumentLoader()
273 bool loading = m_loading; in stopLoading()
/external/webkit/WebCore/dom/
DProcessingInstruction.cpp41 , m_loading(false) in ProcessingInstruction()
54 , m_loading(false) in ProcessingInstruction()
146 m_loading = false; in checkStyleSheet()
150 m_loading = true; in checkStyleSheet()
174 if (m_loading) in isLoading()
219 m_loading = false; in parseStyleSheet()
226 ASSERT(!m_loading); in setCSSStyleSheet()
DProcessingInstruction.h89 bool m_loading; variable
/external/webkit/WebCore/xml/
DXSLImportRule.cpp37 , m_loading(false) in XSLImportRule()
67 m_loading = false; in setXSLStyleSheet()
75 return (m_loading || (m_styleSheet && m_styleSheet->isLoading())); in isLoading()
111 m_loading = true; in loadSheet()
DXSLImportRule.h65 bool m_loading; variable
/external/webkit/WebCore/css/
DCSSImportRule.cpp37 , m_loading(false) in CSSImportRule()
64 m_loading = false; in setCSSStyleSheet()
72 return m_loading || (m_styleSheet && m_styleSheet->isLoading()); in isLoading()
106 m_loading = true; in insertedIntoParent()
DCSSImportRule.h72 bool m_loading; variable
/external/webkit/WebCore/html/
DHTMLLinkElement.cpp51 , m_loading(false) in HTMLLinkElement()
69 if (m_loading && !isDisabled() && !isAlternate()) in ~HTMLLinkElement()
230 if (m_loading) in process()
234 m_loading = true; in process()
239 m_loading = false; in process()
291 m_loading = false; in setCSSStyleSheet()
297 if (m_loading) in isLoading()
DHTMLStyleElement.h61 virtual void setLoading(bool loading) { m_loading = loading; } in setLoading()
67 bool m_loading; variable
DHTMLStyleElement.cpp37 , m_loading(false) in HTMLStyleElement()
92 if (m_loading) in isLoading()
DHTMLLinkElement.h113 bool m_loading; variable
/external/webkit/WebCore/
DChangeLog-2002-12-03503 (CachedImage::CachedImage): Initialize m_loading to true.
506 (CachedImage::data): If at eof, set m_loading to false and notify.
507 (CachedImage::error): Set m_loading to false and notify.
DChangeLog-2006-05-1020369 that sets m_loading to do it in a simple way that doesn't need a big comment.
DChangeLog-2007-10-1451605 Save the value of m_loading since calling FrameLoader::stopLoading could set it to false.