HomeSort by relevance Sort by last modified time
    Searched refs:errorOccurred (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageLoader.cpp 51 bool errorOccurred = image()->errorOccurred();
52 if (!errorOccurred && image()->response().httpStatusCode() >= 400)
53 errorOccurred = element()->hasTagName(HTMLNames::objectTag); // An <object> considers a 404 to be an error and should fire onerror.
54 element()->dispatchEvent(Event::create(errorOccurred ? eventNames().errorEvent : eventNames().loadEvent, false, false));
69 bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400;
HTMLStyleElement.h 83 virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred);
HTMLLinkElement.h 71 void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred);
178 virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationController.cpp 47 void WebGeolocationController::errorOccurred(const WebGeolocationError& webError)
49 m_private->errorOccurred(PassRefPtr<GeolocationError>(webError).get());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImageResourceStyleImage.h 50 virtual bool errorOccurred() const { return m_styleImage->errorOccurred(); }
RenderImageResource.h 59 virtual bool errorOccurred() const { return m_cachedImage && m_cachedImage->errorOccurred(); }
RenderImageResource.cpp 74 if (m_cachedImage->errorOccurred())
RenderImage.cpp 174 if (m_imageResource->errorOccurred() || !newImage) {
193 if (m_imageResource->errorOccurred() || !m_imageResource->hasImage())
291 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred()) {
316 if (m_imageResource->errorOccurred() && !image->isNull() && usableWidth >= image->width() && usableHeight >= image->height()) {
450 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred() || alignedRect.width() <= 0 || alignedRect.height() <= 0)
475 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred())
501 return m_imageResource->errorOccurred() ? intrinsicSize().height() : LayoutUnit();
570 if (m_imageResource && m_imageResource->errorOccurred()) {
  /external/chromium_org/third_party/WebKit/public/web/
WebGeolocationController.h 44 WEBKIT_EXPORT void errorOccurred(const WebGeolocationError&);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGImageLoader.cpp 40 if (image()->errorOccurred())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleFetchedImage.cpp 59 bool StyleFetchedImage::errorOccurred() const
61 return m_image->errorOccurred();
StyleFetchedImageSet.cpp 65 bool StyleFetchedImageSet::errorOccurred() const
67 return m_bestFitImage->errorOccurred();
StyleFetchedImage.h 47 virtual bool errorOccurred() const;
StyleFetchedImageSet.h 61 virtual bool errorOccurred() const;
StyleImage.h 56 virtual bool errorOccurred() const { return false; }
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.cpp 87 ScriptSourceCode HTMLScriptRunner::sourceFromPendingScript(const PendingScript& script, bool& errorOccurred) const
90 errorOccurred = script.resource()->errorOccurred();
94 errorOccurred = false;
121 bool errorOccurred = false;
122 ScriptSourceCode sourceCode = sourceFromPendingScript(pendingScript, errorOccurred);
136 if (errorOccurred)
HTMLScriptRunner.h 85 ScriptSourceCode sourceFromPendingScript(const PendingScript&, bool& errorOccurred) const;
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationController.h 56 void errorOccurred(GeolocationError*);
GeolocationController.cpp 104 errorOccurred(GeolocationError::create(GeolocationError::PositionUnavailable, "PositionUnavailable").get());
114 void GeolocationController::errorOccurred(GeolocationError* error)
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ImageResource.h 61 bool canRender(const RenderObject* renderer, float multiplier) { return !errorOccurred() && !imageSizeForRenderer(renderer, multiplier).isEmpty(); }
87 virtual bool stillNeedsLoad() const OVERRIDE { return !errorOccurred() && status() == Unknown && !isLoading(); }
ImageResource.cpp 78 if (m_data && !m_image && !errorOccurred()) {
125 if (m_image && !errorOccurred())
143 return errorOccurred();
150 if (errorOccurred()) {
167 if (errorOccurred()) {
343 error(errorOccurred() ? status() : DecodeError);
390 } else if (m_image && !errorOccurred()) {
FontResource.cpp 84 if (!m_fontData && !errorOccurred() && !isLoading() && m_data) {
105 if (!m_externalSVGDocument && !errorOccurred() && !isLoading() && m_data) {
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.h 75 void handleSpeakingCompleted(SpeechSynthesisUtterance*, bool errorOccurred);
SpeechSynthesis.cpp 142 void SpeechSynthesis::handleSpeakingCompleted(SpeechSynthesisUtterance* utterance, bool errorOccurred)
148 fireEvent(errorOccurred ? eventNames().errorEvent : eventNames().endEvent, utterance, 0, String());
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceSource.cpp 84 return !m_font->errorOccurred();
262 if (font->errorOccurred())

Completed in 1132 milliseconds

1 2 3