/external/webkit/WebCore/loader/ |
D | CachedFont.cpp | 71 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()
|
D | CachedXSLStyleSheet.cpp | 50 if (!m_loading) in didAddClient() 75 m_loading = false; in data() 81 if (m_loading) in checkNotify() 92 m_loading = false; in error()
|
D | CachedXBLDocument.cpp | 57 if (!m_loading) in ref() 87 m_loading = false; in data() 93 if (m_loading) in checkNotify() 103 m_loading = false; in error()
|
D | CachedScript.cpp | 54 if (!m_loading) in didAddClient() 94 m_loading = false; in data() 100 if (m_loading) in checkNotify() 110 m_loading = false; in error()
|
D | CachedCSSStyleSheet.cpp | 54 if (!m_loading) in didAddClient() 102 m_loading = false; in data() 110 if (m_loading) in checkNotify() 120 m_loading = false; in error()
|
D | CachedImage.cpp | 68 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()
|
D | CachedResource.h | 116 bool isLoaded() const { return !m_loading; } in isLoaded() 117 void setLoading(bool b) { m_loading = b; } in setLoading() 233 bool m_loading; variable
|
D | CachedResource.cpp | 58 , 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()
|
D | DocumentLoader.h | 99 bool isLoading() const { return m_loading; } in isLoading() 100 void setLoading(bool loading) { m_loading = loading; } in setLoading() 263 bool m_loading; variable
|
D | CachedImage.h | 82 …bool stillNeedsLoad() const { return !m_errorOccurred && m_status == Unknown && m_loading == false… in stillNeedsLoad()
|
D | DocumentLoader.cpp | 147 , m_loading(false) in DocumentLoader() 273 bool loading = m_loading; in stopLoading()
|
/external/webkit/WebCore/dom/ |
D | ProcessingInstruction.cpp | 41 , 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()
|
D | ProcessingInstruction.h | 89 bool m_loading; variable
|
/external/webkit/WebCore/xml/ |
D | XSLImportRule.cpp | 37 , 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()
|
D | XSLImportRule.h | 65 bool m_loading; variable
|
/external/webkit/WebCore/css/ |
D | CSSImportRule.cpp | 37 , 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()
|
D | CSSImportRule.h | 72 bool m_loading; variable
|
/external/webkit/WebCore/html/ |
D | HTMLLinkElement.cpp | 51 , 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()
|
D | HTMLStyleElement.h | 61 virtual void setLoading(bool loading) { m_loading = loading; } in setLoading() 67 bool m_loading; variable
|
D | HTMLStyleElement.cpp | 37 , m_loading(false) in HTMLStyleElement() 92 if (m_loading) in isLoading()
|
D | HTMLLinkElement.h | 113 bool m_loading; variable
|
/external/webkit/WebCore/ |
D | ChangeLog-2002-12-03 | 503 (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.
|
D | ChangeLog-2006-05-10 | 20369 that sets m_loading to do it in a simple way that doesn't need a big comment.
|
D | ChangeLog-2007-10-14 | 51605 Save the value of m_loading since calling FrameLoader::stopLoading could set it to false.
|