HomeSort by relevance Sort by last modified time
    Searched refs:m_loading (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/WebCore/xml/
XSLImportRule.cpp 37 , m_loading(false)
67 m_loading = false;
75 return (m_loading || (m_styleSheet && m_styleSheet->isLoading()));
111 m_loading = true;
XSLImportRule.h 66 bool m_loading; member in class:WebCore::XSLImportRule
  /external/webkit/Source/WebCore/dom/
StyleElement.h 57 bool m_loading; member in class:WebCore::StyleElement
ProcessingInstruction.cpp 43 , 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);
StyleElement.cpp 42 , m_loading(false)
149 m_loading = true;
154 m_loading = false;
164 if (m_loading)
ProcessingInstruction.h 91 bool m_loading; member in class:WebCore::ProcessingInstruction
  /external/webkit/Source/WebKit/chromium/src/
SharedWorkerRepository.cpp 74 , 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/
CSSImportRule.cpp 39 , m_loading(false)
101 m_loading = false;
109 return m_loading || (m_styleSheet && m_styleSheet->isLoading());
147 m_loading = true;
CSSImportRule.h 73 bool m_loading; member in class:WebCore::CSSImportRule
  /external/webkit/Source/WebCore/loader/cache/
CachedResource.h 126 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;
CachedResource.cpp 93 , m_loading(false)
134 m_loading = true;
502 if (m_loading || errorOccurred())
  /external/webkit/Source/WebCore/html/
HTMLLinkElement.h 143 bool m_loading; member in class:WebCore::HTMLLinkElement
HTMLLinkElement.cpp 58 , m_loading(false)
288 m_loading = true;
311 m_loading = false;
421 m_loading = false;
427 if (m_loading)
  /external/webkit/Source/WebCore/loader/
DocumentLoader.h 108 bool isLoading() const { return m_loading; }
109 void setLoading(bool loading) { m_loading = loading; }
296 bool m_loading; member in class:WebCore::DocumentLoader
DocumentLoader.cpp 91 , 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) {

Completed in 934 milliseconds