Home
last modified time | relevance | path

Searched refs:errorOccurred (Results 1 – 25 of 53) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLImageLoader.cpp51 bool errorOccurred = image()->errorOccurred(); in dispatchLoadEvent() local
52 if (!errorOccurred && image()->response().httpStatusCode() >= 400) in dispatchLoadEvent()
53errorOccurred = element()->hasTagName(HTMLNames::objectTag); // An <object> considers a 404 to be … in dispatchLoadEvent()
54 …element()->dispatchEvent(Event::create(errorOccurred ? EventTypeNames::error : EventTypeNames::loa… in dispatchLoadEvent()
69 … bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400; in notifyFinished()
DHTMLLinkElement.h72 void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred);
177 virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) OVERRIDE;
DHTMLLinkElement.cpp275 void HTMLLinkElement::notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) in notifyLoadedSheetAndAllCriticalSubresources() argument
278 linkStyle()->notifyLoadedSheetAndAllCriticalSubresources(errorOccurred); in notifyLoadedSheetAndAllCriticalSubresources()
447 void LinkStyle::notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) in notifyLoadedSheetAndAllCriticalSubresources() argument
451 m_loadedSheet = !errorOccurred; in notifyLoadedSheetAndAllCriticalSubresources()
DHTMLStyleElement.cpp264 void HTMLStyleElement::notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) in notifyLoadedSheetAndAllCriticalSubresources() argument
268 m_loadedSheet = !errorOccurred; in notifyLoadedSheetAndAllCriticalSubresources()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLScriptRunner.cpp87 …e HTMLScriptRunner::sourceFromPendingScript(const PendingScript& script, bool& errorOccurred) const in sourceFromPendingScript()
90 errorOccurred = script.resource()->errorOccurred(); in sourceFromPendingScript()
94 errorOccurred = false; in sourceFromPendingScript()
121 bool errorOccurred = false; in executePendingScriptAndDispatchEvent() local
122 ScriptSourceCode sourceCode = sourceFromPendingScript(pendingScript, errorOccurred); in executePendingScriptAndDispatchEvent()
136 if (errorOccurred) in executePendingScriptAndDispatchEvent()
DHTMLScriptRunner.h85 ScriptSourceCode sourceFromPendingScript(const PendingScript&, bool& errorOccurred) const;
/external/chromium_org/third_party/WebKit/Source/web/
DWebGeolocationController.cpp47 void WebGeolocationController::errorOccurred(const WebGeolocationError& webError) in errorOccurred() function in blink::WebGeolocationController
49 m_private->errorOccurred(PassRefPtr<GeolocationError>(webError).get()); in errorOccurred()
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DImageResource.cpp81 if (m_data && !m_image && !errorOccurred()) { in didAddClient()
128 if (m_image && !errorOccurred()) in allClientsRemoved()
146 return errorOccurred(); in willPaintBrokenImage()
153 if (errorOccurred()) { in image()
170 if (errorOccurred()) { in imageForRenderer()
348 error(errorOccurred() ? status() : DecodeError); in updateImage()
402 } else if (m_image && !errorOccurred()) { in destroyDecodedData()
DImageResource.h64 …bool canRender(const RenderObject* renderer, float multiplier) { return !errorOccurred() && !image… in canRender()
99 …virtual bool stillNeedsLoad() const OVERRIDE { return !errorOccurred() && status() == Unknown && !… in stillNeedsLoad()
DFontResource.cpp86 if (!m_fontData && !errorOccurred() && !isLoading()) { in ensureCustomFontData()
108 if (!m_externalSVGDocument && !errorOccurred() && !isLoading()) { in ensureSVGFontData()
DResource.cpp209 ASSERT(!errorOccurred()); in appendData()
222 ASSERT(!errorOccurred()); in setResourceBuffer()
237 ASSERT(errorOccurred()); in error()
253 ASSERT(!errorOccurred()); in finish()
256 if (!errorOccurred()) in finish()
756 if (m_loading || errorOccurred()) in canUseCacheValidator()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderImageResourceStyleImage.h50 virtual bool errorOccurred() const { return m_styleImage->errorOccurred(); } in errorOccurred() function
DRenderImageResource.h59 virtual bool errorOccurred() const { return m_cachedImage && m_cachedImage->errorOccurred(); } in errorOccurred() function
DRenderImage.cpp182 if (m_imageResource->errorOccurred() || !newImage) { in imageChanged()
201 if (m_imageResource->errorOccurred() || !m_imageResource->hasImage()) in updateIntrinsicSizeIfNeeded()
312 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred()) { in paintReplaced()
334 …if (m_imageResource->errorOccurred() && !image->isNull() && usableWidth >= image->width() && usabl… in paintReplaced()
465 …if (!m_imageResource->hasImage() || m_imageResource->errorOccurred() || alignedRect.width() <= 0 |… in paintIntoRect()
492 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred()) in foregroundIsKnownToBeOpaqueInRect()
525 return m_imageResource->errorOccurred() ? intrinsicSize().height() : LayoutUnit(); in minimumReplacedHeight()
625 if (m_imageResource && m_imageResource->errorOccurred() && !isVideo()) { in computeIntrinsicRatioInformation()
DRenderImageResource.cpp73 if (m_cachedImage->errorOccurred()) in setImageResource()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DStyleFetchedImage.cpp59 bool StyleFetchedImage::errorOccurred() const in errorOccurred() function in WebCore::StyleFetchedImage
61 return m_image->errorOccurred(); in errorOccurred()
DStyleFetchedImageSet.cpp65 bool StyleFetchedImageSet::errorOccurred() const in errorOccurred() function in WebCore::StyleFetchedImageSet
67 return m_bestFitImage->errorOccurred(); in errorOccurred()
DStyleFetchedImage.h47 virtual bool errorOccurred() const;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
DGeolocationController.cpp121errorOccurred(GeolocationError::create(GeolocationError::PositionUnavailable, "PositionUnavailable… in positionChanged()
131 void GeolocationController::errorOccurred(GeolocationError* error) in errorOccurred() function in WebCore::GeolocationController
DGeolocationController.h57 void errorOccurred(GeolocationError*);
/external/chromium_org/third_party/WebKit/public/web/
DWebGeolocationController.h44 BLINK_EXPORT void errorOccurred(const WebGeolocationError&);
/external/chromium_org/third_party/WebKit/Source/modules/speech/
DSpeechSynthesis.cpp150 …d SpeechSynthesis::handleSpeakingCompleted(SpeechSynthesisUtterance* utterance, bool errorOccurred) in handleSpeakingCompleted() argument
167 fireEvent(errorOccurred ? EventTypeNames::error : EventTypeNames::end, utterance, 0, String()); in handleSpeakingCompleted()
DSpeechSynthesis.h83 void handleSpeakingCompleted(SpeechSynthesisUtterance*, bool errorOccurred);
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGImageLoader.cpp40 if (image()->errorOccurred()) in dispatchLoadEvent()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSFontFaceSource.cpp107 return !m_font->errorOccurred(); in isValid()
302 if (font->errorOccurred()) in histogramName()

123