Searched refs:errorOccurred (Results 1 - 25 of 64) sorted by relevance

123

/external/webkit/Source/WebKit/chromium/src/
H A DWebGeolocationController.cpp47 void WebGeolocationController::errorOccurred(const WebGeolocationError& webError) function in class:WebKit::WebGeolocationController
49 m_private->errorOccurred(PassRefPtr<GeolocationError>(webError).get());
/external/webkit/Source/WebCore/html/
H A DHTMLImageLoader.cpp56 bool errorOccurred = image()->errorOccurred();
57 if (!errorOccurred && image()->response().httpStatusCode() >= 400)
58 errorOccurred = element()->hasTagName(HTMLNames::objectTag); // An <object> considers a 404 to be an error and should fire onerror.
59 element()->dispatchEvent(Event::create(errorOccurred ? eventNames().errorEvent : eventNames().loadEvent, false, false));
80 bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400;
/external/webkit/Source/WebCore/rendering/style/
H A DStyleCachedImage.cpp47 bool StyleCachedImage::errorOccurred() const function in class:WebCore::StyleCachedImage
49 return m_image->errorOccurred();
H A DStyleCachedImage.h47 virtual bool errorOccurred() const;
H A DStyleImage.h54 virtual bool errorOccurred() const { return false; } function in class:WebCore::StyleImage
/external/webkit/Source/WebKit/chromium/public/
H A DWebGeolocationController.h44 WEBKIT_API void errorOccurred(const WebGeolocationError&);
/external/webkit/Source/WebCore/svg/
H A DSVGImageLoader.cpp41 if (image()->errorOccurred())
/external/webkit/Source/WebCore/wml/
H A DWMLImageLoader.cpp59 if (!image->errorOccurred())
/external/webkit/Source/WebCore/rendering/
H A DRenderImageResource.h58 virtual bool errorOccurred() const { return m_cachedImage && m_cachedImage->errorOccurred(); } function in class:WebCore::RenderImageResource
H A DRenderImageResourceStyleImage.h50 virtual bool errorOccurred() const { return m_styleImage->errorOccurred(); } function in class:WebCore::RenderImageResourceStyleImage
H A DRenderImageResource.cpp74 if (m_cachedImage->errorOccurred())
H A DRenderImage.cpp154 if (m_imageResource->errorOccurred()) {
174 if (!m_imageResource->errorOccurred())
252 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred()) {
279 if (m_imageResource->errorOccurred() && !image->isNull() && usableWidth >= image->width() && usableHeight >= image->height()) {
386 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred() || rect.width() <= 0 || rect.height() <= 0)
402 return m_imageResource->errorOccurred() ? intrinsicSize().height() : 0;
563 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred())
574 if (!m_imageResource->hasImage() || m_imageResource->errorOccurred())
/external/webkit/Source/WebCore/html/parser/
H A DHTMLScriptRunner.cpp94 ScriptSourceCode HTMLScriptRunner::sourceFromPendingScript(const PendingScript& script, bool& errorOccurred) const
97 errorOccurred = script.cachedScript()->errorOccurred();
101 errorOccurred = false;
128 bool errorOccurred = false; local
129 ScriptSourceCode sourceCode = sourceFromPendingScript(pendingScript, errorOccurred);
140 if (errorOccurred)
H A DHTMLScriptRunner.h85 ScriptSourceCode sourceFromPendingScript(const PendingScript&, bool& errorOccurred) const;
/external/webkit/Source/WebCore/page/
H A DGeolocationController.h56 void errorOccurred(GeolocationError*);
H A DGeolocationController.cpp107 void GeolocationController::errorOccurred(GeolocationError* error) function in class:WebCore::GeolocationController
/external/webkit/Source/WebCore/platform/
H A DGeolocationService.cpp77 void GeolocationService::errorOccurred() function in class:WebCore::GeolocationService
H A DGeolocationService.h61 void errorOccurred();
/external/webkit/Source/WebCore/loader/cache/
H A DCachedCSSStyleSheet.cpp122 ASSERT(errorOccurred());
129 if (errorOccurred())
H A DCachedImage.h50 bool canRender(float multiplier) const { return !errorOccurred() && !imageSize(multiplier).isEmpty(); }
78 bool stillNeedsLoad() const { return (!errorOccurred() && status() == Unknown && !isLoading()) || (m_autoLoadWasPreventedBySettings && !inCache()); }
H A DCachedImage.cpp103 if (m_data && !m_image && !errorOccurred()) {
116 if (m_image && !errorOccurred())
132 if (errorOccurred() && m_shouldPaintBrokenImage)
298 error(errorOccurred() ? status() : DecodeError);
323 ASSERT(errorOccurred());
340 } else if (m_image && !errorOccurred())
H A DCachedFont.cpp106 if (!m_fontData && !errorOccurred() && !isLoading() && m_data) {
132 if (!m_externalSVGDocument && !errorOccurred() && !isLoading() && m_data) {
202 ASSERT(errorOccurred());
H A DCachedXSLStyleSheet.cpp93 ASSERT(errorOccurred());
H A DCachedScript.cpp110 ASSERT(errorOccurred());
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DGeolocationClientImpl.cpp179 m_webViewCore->mainFrame()->page()->geolocationController()->errorOccurred(m_lastError.get());
220 m_webViewCore->mainFrame()->page()->geolocationController()->errorOccurred(m_lastError.get());

Completed in 825 milliseconds

123