Searched refs:m_loading (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/xml/
H A DXSLImportRule.cpp37 , m_loading(false)
67 m_loading = false;
75 return (m_loading || (m_styleSheet && m_styleSheet->isLoading()));
111 m_loading = true;
H A DXSLImportRule.h66 bool m_loading; member in class:WebCore::XSLImportRule
/external/webkit/Source/WebCore/dom/
H A DStyleElement.h57 bool m_loading; member in class:WebCore::StyleElement
H A DProcessingInstruction.cpp43 , m_loading(false)
148 m_loading = false;
161 m_loading = true;
180 m_loading = false;
189 if (m_loading)
240 m_loading = false;
247 ASSERT(!m_loading);
H A DStyleElement.cpp42 , m_loading(false)
149 m_loading = true;
154 m_loading = false;
164 if (m_loading)
H A DProcessingInstruction.h91 bool m_loading; member in class:WebCore::ProcessingInstruction
/external/webkit/Source/WebKit/chromium/src/
H A DSharedWorkerRepository.cpp74 , m_loading(false)
100 bool m_loading; member in class:WebCore::SharedWorkerScriptLoader
126 if (m_loading)
132 ASSERT(!m_loading);
140 m_loading = true;
/external/webkit/Source/WebCore/css/
H A DCSSImportRule.cpp39 , m_loading(false)
101 m_loading = false;
109 return m_loading || (m_styleSheet && m_styleSheet->isLoading());
147 m_loading = true;
H A DCSSImportRule.h73 bool m_loading; member in class:WebCore::CSSImportRule
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResource.h126 bool isLoaded() const { return !m_loading; } // FIXME. Method name is inaccurate. Loading might not have started yet.
128 bool isLoading() const { return m_loading; }
129 void setLoading(bool b) { m_loading = b; }
267 bool m_loading : 1;
H A DCachedResource.cpp93 , m_loading(false)
134 m_loading = true;
502 if (m_loading || errorOccurred())
/external/webkit/Source/WebCore/loader/
H A DDocumentLoader.h108 bool isLoading() const { return m_loading; }
109 void setLoading(bool loading) { m_loading = loading; }
296 bool m_loading; member in class:WebCore::DocumentLoader
H A DDocumentLoader.cpp91 , m_loading(false)
218 // In some rare cases, calling FrameLoader::stopLoading could set m_loading to false.
221 bool loading = m_loading;
375 bool wasLoading = m_loading;
378 if (wasLoading && !m_loading) {
/external/webkit/Source/WebCore/html/
H A DHTMLLinkElement.cpp58 , m_loading(false)
288 m_loading = true;
311 m_loading = false;
421 m_loading = false;
427 if (m_loading)
H A DHTMLLinkElement.h143 bool m_loading; member in class:WebCore::HTMLLinkElement

Completed in 139 milliseconds