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

123

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebGeolocationController.cpp42 void WebGeolocationController::errorOccurred(const WebGeolocationError& webError) function in class:blink::WebGeolocationController
44 m_private->errorOccurred(static_cast<GeolocationError*>(webError));
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLImageLoader.cpp53 bool errorOccurred = image()->errorOccurred();
54 if (isHTMLObjectElement(*element()) && !errorOccurred)
55 errorOccurred = (image()->response().httpStatusCode() >= 400); // An <object> considers a 404 to be an error and should fire onerror.
56 element()->dispatchEvent(Event::create(errorOccurred ? EventTypeNames::error : EventTypeNames::load));
71 bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400;
H A DHTMLStyleElement.cpp155 void HTMLStyleElement::notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) argument
159 m_loadedSheet = !errorOccurred;
H A DHTMLStyleElement.h68 virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) OVERRIDE;
H A DHTMLLinkElement.h73 void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred);
188 virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPendingScript.cpp101 ScriptSourceCode PendingScript::getSource(const KURL& documentURL, bool& errorOccurred) const
104 errorOccurred = resource()->errorOccurred();
110 errorOccurred = false;
H A DPendingScript.h112 ScriptSourceCode getSource(const KURL& documentURL, bool& errorOccurred) const;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebGeolocationController.h41 BLINK_EXPORT void errorOccurred(const WebGeolocationError&);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptStreamerTest.cpp162 bool errorOccurred = false; local
163 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred);
164 EXPECT_FALSE(errorOccurred);
195 bool errorOccurred = false; local
196 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred);
197 EXPECT_FALSE(errorOccurred);
250 bool errorOccurred = false; local
251 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred);
252 EXPECT_FALSE(errorOccurred);
274 bool errorOccurred local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGImageLoader.cpp39 if (image()->errorOccurred()) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderImageResource.h60 virtual bool errorOccurred() const { return m_cachedImage && m_cachedImage->errorOccurred(); } function in class:blink::RenderImageResource
H A DRenderImageResourceStyleImage.h50 virtual bool errorOccurred() const OVERRIDE { return m_styleImage->errorOccurred(); }
H A DRenderImageResource.cpp73 if (m_cachedImage->errorOccurred())
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleFetchedImage.cpp60 bool StyleFetchedImage::errorOccurred() const function in class:blink::StyleFetchedImage
62 return m_image->errorOccurred();
H A DStyleFetchedImageSet.cpp65 bool StyleFetchedImageSet::errorOccurred() const function in class:blink::StyleFetchedImageSet
67 return m_bestFitImage->errorOccurred();
H A DStyleFetchedImage.h47 virtual bool errorOccurred() const OVERRIDE;
H A DStyleImage.h56 virtual bool errorOccurred() const { return false; } function in class:blink::StyleImage
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DImageResource.h66 bool canRender(const RenderObject& renderer, float multiplier) { return !errorOccurred() && !imageSizeForRenderer(&renderer, multiplier).isEmpty(); }
102 virtual bool stillNeedsLoad() const OVERRIDE { return !errorOccurred() && status() == Unknown && !isLoading(); }
H A DImageResource.cpp93 if (m_data && !m_image && !errorOccurred()) {
148 } else if (m_image && !errorOccurred()) {
156 if (m_image && !errorOccurred())
174 return errorOccurred();
181 if (errorOccurred()) {
198 if (errorOccurred()) {
376 error(errorOccurred() ? status() : DecodeError);
H A DFontResource.cpp140 if (!m_fontData && !errorOccurred() && !isLoading()) {
167 if (!m_externalSVGDocument && !errorOccurred() && !isLoading()) {
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationController.h58 void errorOccurred(GeolocationError*);
H A DGeolocationController.cpp156 errorOccurred(GeolocationError::create(GeolocationError::PositionUnavailable, "PositionUnavailable"));
166 void GeolocationController::errorOccurred(GeolocationError* error) function in class:blink::GeolocationController
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesis.h82 void handleSpeakingCompleted(SpeechSynthesisUtterance*, bool errorOccurred);
H A DSpeechSynthesis.cpp151 void SpeechSynthesis::handleSpeakingCompleted(SpeechSynthesisUtterance* utterance, bool errorOccurred) argument
167 fireEvent(errorOccurred ? EventTypeNames::error : EventTypeNames::end, utterance, 0, String());
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRemoteFontFaceSource.cpp57 return !m_font->errorOccurred();
182 if (font->errorOccurred())

Completed in 1258 milliseconds

123