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

123

/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLImageLoader.cpp55 bool errorOccurred = image()->errorOccurred();
56 if (!errorOccurred && image()->response().httpStatusCode() >= 400)
57 errorOccurred = isHTMLObjectElement(element()); // An <object> considers a 404 to be an error and should fire onerror.
58 element().dispatchEvent(Event::create(errorOccurred ? eventNames().errorEvent : eventNames().loadEvent, false, false));
79 bool loadError = cachedImage->errorOccurred() || cachedImage->response().httpStatusCode() >= 400;
H A DHTMLStyleElement.cpp131 void HTMLStyleElement::notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) argument
135 m_loadedSheet = !errorOccurred;
H A DHTMLStyleElement.h63 virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) override;
/macosx-10.10/WebCore-7600.1.25/platform/geoclue/
H A DGeolocationProviderGeoclue1.cpp36 provider->errorOccurred(error->message);
51 provider->errorOccurred(error->message);
61 provider->errorOccurred(error->message);
69 provider->errorOccurred(error->message);
158 errorOccurred("Position could not be determined.");
172 void GeolocationProviderGeoclue::errorOccurred(const char* message) function in class:GeolocationProviderGeoclue
H A DGeolocationProviderGeoclue2.cpp109 provider->errorOccurred(error->message);
121 provider->errorOccurred(error->message);
134 provider->errorOccurred(error->message);
152 static_cast<GeolocationProviderGeoclue*>(provider)->errorOccurred(error->message);
166 provider->errorOccurred(error->message);
192 void GeolocationProviderGeoclue::errorOccurred(const char* message) function in class:GeolocationProviderGeoclue
H A DGeolocationProviderGeoclue.h70 void errorOccurred(const char*);
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderImageResource.cpp75 if (m_cachedImage->errorOccurred())
98 bool RenderImageResource::errorOccurred() const function in class:WebCore::RenderImageResource
100 return m_cachedImage && m_cachedImage->errorOccurred();
H A DRenderImageResourceStyleImage.h48 virtual bool errorOccurred() const override { return m_styleImage->errorOccurred(); }
H A DRenderImageResource.h54 virtual bool errorOccurred() const;
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGImageLoader.cpp43 if (image()->errorOccurred())
/macosx-10.10/WebKit-7600.1.25/ios/Misc/
H A DWebGeolocationCoreLocationProvider.h48 - (void)errorOccurred:(NSString *)errorMessage;
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DStyleCachedImage.cpp59 bool StyleCachedImage::errorOccurred() const function in class:WebCore::StyleCachedImage
61 return m_image->errorOccurred();
H A DStyleCachedImageSet.cpp67 bool StyleCachedImageSet::errorOccurred() const function in class:WebCore::StyleCachedImageSet
69 return m_bestFitImage->errorOccurred();
H A DStyleCachedImage.h50 virtual bool errorOccurred() const override;
H A DStyleCachedImageSet.h66 virtual bool errorOccurred() const override;
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DHTMLScriptRunner.cpp89 ScriptSourceCode HTMLScriptRunner::sourceFromPendingScript(const PendingScript& script, bool& errorOccurred) const
92 errorOccurred = script.cachedScript()->errorOccurred();
96 errorOccurred = false;
125 bool errorOccurred = false; local
126 ScriptSourceCode sourceCode = sourceFromPendingScript(pendingScript, errorOccurred);
140 if (errorOccurred)
H A DHTMLScriptRunner.h79 ScriptSourceCode sourceFromPendingScript(const PendingScript&, bool& errorOccurred) const;
/macosx-10.10/WebCore-7600.1.25/loader/cache/
H A DCachedImage.cpp124 if (m_data && !m_image && !errorOccurred()) {
172 if (m_image && !errorOccurred())
189 return errorOccurred() && m_shouldPaintBrokenImage;
196 if (errorOccurred() && m_shouldPaintBrokenImage) {
213 if (errorOccurred() && m_shouldPaintBrokenImage) {
401 error(errorOccurred() ? status() : DecodeError);
440 error(errorOccurred() ? status() : DecodeError);
477 } else if (m_image && !errorOccurred())
528 if (isLoading() || errorOccurred())
H A DCachedFont.cpp97 if (!m_fontData && !errorOccurred() && !isLoading() && m_data) {
136 if (!m_externalSVGDocument && !errorOccurred() && !isLoading() && m_data) {
H A DCachedImage.h67 bool canRender(const RenderObject* renderer, float multiplier) { return !errorOccurred() && !imageSizeForRenderer(renderer, multiplier).isEmpty(); }
123 virtual bool stillNeedsLoad() const override { return !errorOccurred() && status() == Unknown && !isLoading(); }
/macosx-10.10/WebCore-7600.1.25/xml/parser/
H A DXMLDocumentParser.cpp229 bool errorOccurred = m_pendingScript->errorOccurred(); local
244 if (errorOccurred)
/macosx-10.10/WebCore-7600.1.25/Modules/geolocation/
H A DGeolocationController.h58 void errorOccurred(GeolocationError*);
/macosx-10.10/WebCore-7600.1.25/Modules/speech/
H A DSpeechSynthesis.cpp173 void SpeechSynthesis::handleSpeakingCompleted(SpeechSynthesisUtterance* utterance, bool errorOccurred) argument
181 fireEvent(errorOccurred ? eventNames().errorEvent : eventNames().endEvent, utterance, 0, String());
H A DSpeechSynthesis.h76 void handleSpeakingCompleted(SpeechSynthesisUtterance*, bool errorOccurred);
/macosx-10.10/WebCore-7600.1.25/loader/
H A DLinkLoader.cpp79 if (m_cachedLinkResource->errorOccurred())

Completed in 294 milliseconds

123