Searched defs:isLoading (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLStyleElement.h56 virtual bool isLoading() const { return StyleElement::isLoading(); } function in class:WebCore::HTMLStyleElement
H A DHTMLLinkElement.cpp94 if (isLoading()) {
425 bool HTMLLinkElement::isLoading() const function in class:WebCore::HTMLLinkElement
431 return static_cast<CSSStyleSheet *>(m_sheet.get())->isLoading();
456 if (!isLoading()) {
/external/webkit/Source/WebCore/svg/
H A DSVGStyleElement.h59 virtual bool isLoading() const { return StyleElement::isLoading(); } function in class:WebCore::SVGStyleElement
/external/webkit/Source/WebCore/platform/graphics/
H A DSegmentedFontData.cpp76 bool SegmentedFontData::isLoading() const function in class:WebCore::SegmentedFontData
80 if (it->fontData()->isLoading())
H A DSimpleFontData.cpp50 SimpleFontData::SimpleFontData(const FontPlatformData& platformData, bool isCustomFont, bool isLoading, bool isTextOrientationFallback) argument
56 , m_isLoading(isLoading)
H A DSimpleFontData.h74 SimpleFontData(const FontPlatformData&, bool isCustomFont = false, bool isLoading = false, bool isTextOrientationFallback = false);
139 virtual bool isLoading() const { return m_isLoading; } function in class:WebCore::SimpleFontData
/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 DXSLStyleSheetQt.cpp45 bool XSLStyleSheet::isLoading() function in class:WebCore::XSLStyleSheet
H A DXSLStyleSheetLibxslt.cpp83 bool XSLStyleSheet::isLoading() function in class:WebCore::XSLStyleSheet
90 if (import->isLoading())
99 if (isLoading())
/external/webkit/Source/WebCore/css/
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/WebCore/dom/
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.cpp187 bool ProcessingInstruction::isLoading() const function in class:WebCore::ProcessingInstruction
193 return m_sheet->isLoading();
198 if (!isLoading()) {
/external/webkit/Source/WebKit/win/
H A DWebDataSource.cpp239 HRESULT STDMETHODCALLTYPE WebDataSource::isLoading( function in class:WebDataSource
/external/webkit/Source/WebCore/loader/
H A DDocumentLoader.h108 bool isLoading() const { return m_loading; } function in class:WebCore::DocumentLoader
H A DFrameLoader.cpp1800 bool FrameLoader::isLoading() const function in class:WebCore::FrameLoader
1816 if (isLoading()) {
1854 ASSERT(!m_documentLoader->isLoading());
2445 ASSERT(!pdl->isLoading());
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResource.h128 bool isLoading() const { return m_loading; } function in class:WebCore::CachedResource
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp988 bool WebFrameImpl::isLoading() const function in class:WebKit::WebFrameImpl
992 return m_frame->loader()->isLoading();

Completed in 267 milliseconds