Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/dom/
DProcessingInstruction.cpp43 , m_loading(false) in ProcessingInstruction()
148 m_loading = false; in checkStyleSheet()
161 m_loading = true; in checkStyleSheet()
180 m_loading = false; in checkStyleSheet()
189 if (m_loading) in isLoading()
240 m_loading = false; in parseStyleSheet()
247 ASSERT(!m_loading); in setCSSStyleSheet()
DStyleElement.cpp42 , m_loading(false) in StyleElement()
149 m_loading = true; in createSheet()
154 m_loading = false; in createSheet()
164 if (m_loading) in isLoading()
DStyleElement.h57 bool m_loading; variable
DProcessingInstruction.h99 bool m_loading; variable
/external/webkit/Source/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.h82 bool m_loading; variable
/external/webkit/Source/WebKit/chromium/src/
DSharedWorkerRepository.cpp74 , m_loading(false) in SharedWorkerScriptLoader()
100 bool m_loading; member in WebCore::SharedWorkerScriptLoader
126 if (m_loading) in ~SharedWorkerScriptLoader()
132 ASSERT(!m_loading); in load()
140 m_loading = true; in load()
/external/webkit/Source/WebCore/css/
DCSSImportRule.cpp39 , m_loading(false) in CSSImportRule()
101 m_loading = false; in setCSSStyleSheet()
109 return m_loading || (m_styleSheet && m_styleSheet->isLoading()); in isLoading()
147 m_loading = true; in insertedIntoParent()
DCSSImportRule.h81 bool m_loading; variable
/external/webkit/Source/WebCore/loader/cache/
DCachedResource.h126 …bool isLoaded() const { return !m_loading; } // FIXME. Method name is inaccurate. Loading might no… in isLoaded()
128 bool isLoading() const { return m_loading; } in isLoading()
129 void setLoading(bool b) { m_loading = b; } in setLoading()
266 bool m_loading : 1; variable
DCachedResource.cpp93 , m_loading(false) in CachedResource()
134 m_loading = true; in load()
502 if (m_loading || errorOccurred()) in canUseCacheValidator()
/external/webkit/Source/WebCore/html/
DHTMLLinkElement.cpp58 , m_loading(false) in HTMLLinkElement()
288 m_loading = true; in process()
311 m_loading = false; in process()
421 m_loading = false; in setCSSStyleSheet()
427 if (m_loading) in isLoading()
DHTMLLinkElement.h151 bool m_loading; variable
/external/webkit/Source/WebCore/loader/
DDocumentLoader.h108 bool isLoading() const { return m_loading; } in isLoading()
109 void setLoading(bool loading) { m_loading = loading; } in setLoading()
296 bool m_loading; variable
DDocumentLoader.cpp91 , m_loading(false) in DocumentLoader()
221 bool loading = m_loading; in stopLoading()
375 bool wasLoading = m_loading; in updateLoading()
378 if (wasLoading && !m_loading) { in updateLoading()
/external/webkit/Source/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.
DChangeLog-2010-12-0690314 …teSheet): No need to call the virtual setLoading() function, just store m_loading in StyleElement,…