Searched refs:isLoading (Results 1 - 25 of 63) sorted by relevance

123

/external/webkit/Source/WebCore/html/
H A DHTMLStyleElement.h56 virtual bool isLoading() const { return StyleElement::isLoading(); } function in class:WebCore::HTMLStyleElement
/external/webkit/Source/WebCore/svg/
H A DSVGStyleElement.h59 virtual bool isLoading() const { return StyleElement::isLoading(); } function in class:WebCore::SVGStyleElement
/external/chromium/chrome/browser/ui/cocoa/toolbar/
H A Dreload_button.h37 // |isLoading|. If |force|, always sets the indicated mode. If
42 - (void)setIsLoading:(BOOL)isLoading force:(BOOL)force;
/external/webkit/Source/WebCore/dom/
H A DStyleElement.h42 bool isLoading() const;
H A DStyleElement.cpp136 if (m_sheet->isLoading())
162 bool StyleElement::isLoading() const function in class:WebCore::StyleElement
166 return m_sheet ? m_sheet->isLoading() : false;
172 if (isLoading())
H A DProcessingInstruction.h77 bool isLoading() const;
H A DProcessingInstruction.cpp187 bool ProcessingInstruction::isLoading() const function in class:WebCore::ProcessingInstruction
193 return m_sheet->isLoading();
198 if (!isLoading()) {
/external/webkit/Source/WebCore/platform/graphics/
H A DFontData.h51 virtual bool isLoading() const = 0;
H A DSegmentedFontData.cpp76 bool SegmentedFontData::isLoading() const function in class:WebCore::SegmentedFontData
80 if (it->fontData()->isLoading())
H A DSegmentedFontData.h71 virtual bool isLoading() const;
H A DFontFallbackList.cpp108 if (result->isLoading())
/external/webkit/Source/WebCore/loader/cache/
H A DCachedXSLStyleSheet.cpp51 if (!isLoading())
82 if (isLoading())
H A DCachedFont.cpp80 if (!isLoading())
106 if (!m_fontData && !errorOccurred() && !isLoading() && m_data) {
132 if (!m_externalSVGDocument && !errorOccurred() && !isLoading() && m_data) {
190 if (isLoading())
H A DCachedCSSStyleSheet.cpp55 if (!isLoading())
111 if (isLoading())
H A DCachedImage.h78 bool stillNeedsLoad() const { return (!errorOccurred() && status() == Unknown && !isLoading()) || (m_autoLoadWasPreventedBySettings && !inCache()); }
/external/webkit/Source/WebCore/xml/
H A DXSLImportRule.cpp73 bool XSLImportRule::isLoading() function in class:WebCore::XSLImportRule
75 return (m_loading || (m_styleSheet && m_styleSheet->isLoading()));
H A DXSLImportRule.h52 bool isLoading();
H A DXSLStyleSheetQt.cpp45 bool XSLStyleSheet::isLoading() function in class:WebCore::XSLStyleSheet
H A DXSLStyleSheet.h74 virtual bool isLoading();
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDataSource.h115 @method isLoading
118 - (BOOL)isLoading;
/external/webkit/Source/WebCore/css/
H A DCSSImportRule.h53 bool isLoading() const;
H A DStyleSheet.h60 virtual bool isLoading() = 0;
H A DCSSImportRule.cpp107 bool CSSImportRule::isLoading() const function in class:WebCore::CSSImportRule
109 return m_loading || (m_styleSheet && m_styleSheet->isLoading());
H A DCSSStyleSheet.cpp208 bool CSSStyleSheet::isLoading() function in class:WebCore::CSSStyleSheet
213 if (rule->isImportRule() && static_cast<CSSImportRule*>(rule)->isLoading())
221 if (isLoading())
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebDataSource.idl132 @method isLoading
134 - (BOOL)isLoading;
136 HRESULT isLoading([out, retval] BOOL* loading);

Completed in 273 milliseconds

123