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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationController.cpp 42 void WebGeolocationController::errorOccurred(const WebGeolocationError& webError)
44 m_private->errorOccurred(static_cast<GeolocationError*>(webError));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageLoader.cpp 53 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;
HTMLStyleElement.h 68 virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) OVERRIDE;
HTMLStyleElement.cpp 155 void HTMLStyleElement::notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred)
159 m_loadedSheet = !errorOccurred;
HTMLLinkElement.h 73 void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred);
188 virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PendingScript.cpp 101 ScriptSourceCode PendingScript::getSource(const KURL& documentURL, bool& errorOccurred) const
104 errorOccurred = resource()->errorOccurred();
110 errorOccurred = false;
PendingScript.h 112 ScriptSourceCode getSource(const KURL& documentURL, bool& errorOccurred) const;
  /external/chromium_org/third_party/WebKit/public/web/
WebGeolocationController.h 41 BLINK_EXPORT void errorOccurred(const WebGeolocationError&);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImageResourceStyleImage.h 50 virtual bool errorOccurred() const OVERRIDE { return m_styleImage->errorOccurred(); }
RenderImageResource.h 60 virtual bool errorOccurred() const { return m_cachedImage && m_cachedImage->errorOccurred(); }
RenderImageResource.cpp 73 if (m_cachedImage->errorOccurred())
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptStreamerTest.cpp 162 bool errorOccurred = false;
163 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred);
164 EXPECT_FALSE(errorOccurred);
195 bool errorOccurred = false;
196 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred);
197 EXPECT_FALSE(errorOccurred);
250 bool errorOccurred = false;
251 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred);
252 EXPECT_FALSE(errorOccurred);
274 bool errorOccurred = false
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGImageLoader.cpp 39 if (image()->errorOccurred()) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleFetchedImage.cpp 60 bool StyleFetchedImage::errorOccurred() const
62 return m_image->errorOccurred();
StyleFetchedImageSet.cpp 65 bool StyleFetchedImageSet::errorOccurred() const
67 return m_bestFitImage->errorOccurred();
StyleFetchedImage.h 47 virtual bool errorOccurred() const OVERRIDE;
StyleFetchedImageSet.h 61 virtual bool errorOccurred() const OVERRIDE;
StyleImage.h 56 virtual bool errorOccurred() const { return false; }
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ImageResource.h 66 bool canRender(const RenderObject& renderer, float multiplier) { return !errorOccurred() && !imageSizeForRenderer(&renderer, multiplier).isEmpty(); }
102 virtual bool stillNeedsLoad() const OVERRIDE { return !errorOccurred() && status() == Unknown && !isLoading(); }
ImageResource.cpp 93 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);
FontResource.cpp 140 if (!m_fontData && !errorOccurred() && !isLoading()) {
167 if (!m_externalSVGDocument && !errorOccurred() && !isLoading()) {
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationController.h 58 void errorOccurred(GeolocationError*);
GeolocationController.cpp 156 errorOccurred(GeolocationError::create(GeolocationError::PositionUnavailable, "PositionUnavailable"));
166 void GeolocationController::errorOccurred(GeolocationError* error)
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.h 82 void handleSpeakingCompleted(SpeechSynthesisUtterance*, bool errorOccurred);
  /external/chromium_org/third_party/WebKit/Source/core/css/
RemoteFontFaceSource.cpp 57 return !m_font->errorOccurred();
182 if (font->errorOccurred())

Completed in 1286 milliseconds

1 2 3