Home
last modified time | relevance | path

Searched refs:localizedDescription (Results 1 – 25 of 44) sorted by relevance

12

/external/webkit/Source/WebKit2/Shared/qt/
DWebCoreArgumentCodersQt.cpp65 …n(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription())); in encodeResourceError()
73 String localizedDescription; in decodeResourceError() local
74 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription))) in decodeResourceError()
76 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription); in decodeResourceError()
/external/webkit/Source/WebKit2/Shared/gtk/
DWebCoreArgumentCodersGtk.cpp66 …n(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription())); in encodeResourceError()
74 String localizedDescription; in decodeResourceError() local
75 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription))) in decodeResourceError()
77 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription); in decodeResourceError()
/external/webkit/Source/WebKit2/Shared/win/
DWebCoreArgumentCodersWin.cpp124 …n(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription())); in encodeResourceError()
136 String localizedDescription; in decodeResourceError() local
137 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription))) in decodeResourceError()
148 …resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription, WebCor… in decodeResourceError()
153 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription); in decodeResourceError()
/external/webkit/Source/WebCore/platform/network/
DSocketStreamErrorBase.h50 const String& localizedDescription() const { return m_localizedDescription; } in localizedDescription() function
67 … SocketStreamErrorBase(int errorCode, const String& failingURL, const String& localizedDescription) in SocketStreamErrorBase() argument
70 , m_localizedDescription(localizedDescription) in SocketStreamErrorBase()
DResourceErrorBase.h47 const String& localizedDescription() const { lazyInit(); return m_localizedDescription; } in localizedDescription() function
62 …(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) in ResourceErrorBase() argument
66 , m_localizedDescription(localizedDescription) in ResourceErrorBase()
DSocketStreamErrorBase.cpp57 if (a.localizedDescription() != b.localizedDescription()) in compare()
DResourceErrorBase.cpp71 if (a.localizedDescription() != b.localizedDescription()) in compare()
/external/webkit/Source/WebCore/platform/network/cf/
DResourceError.h52 …(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) in ResourceError() argument
53 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) in ResourceError()
65 …g& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef …
DSocketStreamError.h45 SocketStreamError(int errorCode, const String& failingURL, const String& localizedDescription) in SocketStreamError() argument
46 : SocketStreamErrorBase(errorCode, failingURL, localizedDescription) in SocketStreamError()
DResourceErrorCF.cpp49 …g& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef … in ResourceError() argument
50 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) in ResourceError()
/external/webkit/Source/WebCore/platform/network/curl/
DResourceError.h40 …(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) in ResourceError() argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) in ResourceError()
/external/webkit/Source/WebCore/platform/network/soup/
DResourceError.h40 …(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) in ResourceError() argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) in ResourceError()
/external/webkit/Source/WebCore/platform/network/android/
DResourceError.h38 …(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) in ResourceError() argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) { } in ResourceError()
/external/webkit/Source/WebCore/platform/network/qt/
DResourceError.h40 …(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) in ResourceError() argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) in ResourceError()
/external/webkit/Source/WebCore/platform/network/win/
DResourceError.h38 …(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) in ResourceError() argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) in ResourceError()
/external/webkit/Source/WebCore/platform/network/chromium/
DResourceError.h40 …(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) in ResourceError() argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) in ResourceError()
/external/webkit/Source/WebKit2/Shared/
DWebError.h56 const String& localizedDescription() const { return m_platformError.localizedDescription(); } in localizedDescription() function
/external/webkit/Source/WebKit/win/
DWebError.cpp130 HRESULT STDMETHODCALLTYPE WebError::localizedDescription( in localizedDescription() function in WebError
136 *result = BString(m_error.localizedDescription()).release(); in localizedDescription()
DWebError.h60 virtual HRESULT STDMETHODCALLTYPE localizedDescription(
/external/webkit/Source/WebKit2/Shared/API/c/
DWKError.cpp61 return toCopiedAPI(toImpl(errorRef)->localizedDescription()); in WKErrorCopyLocalizedDescription()
/external/webkit/Source/WebKit/mac/Misc/
DWebKitErrors.m114 …NSString *localizedDescription = [descriptionsForWebKitErrorDomain objectForKey:[NSNumber numberWi…
115 if (localizedDescription)
116 [userInfo setObject:localizedDescription forKey:NSLocalizedDescriptionKey];
/external/webkit/Source/WebKit/win/Interfaces/
DIWebError.idl145 - (NSString *)localizedDescription
147 HRESULT localizedDescription([out, retval] BSTR* result);
/external/webkit/Source/WebCore/inspector/
DInspectorConsoleAgent.cpp221 if (!error.localizedDescription().isEmpty()) in didFailLoading()
222 message += ": " + error.localizedDescription(); in didFailLoading()
/external/webkit/Source/WebCore/websockets/
DWebSocketChannel.cpp218 else if (error.localizedDescription().isNull()) in didFail()
221 message = makeString("WebSocket network error: ", error.localizedDescription()); in didFail()
/external/webkit/Source/WebCore/inspector/front-end/
DNetworkManager.js203 loadingFailed: function(identifier, time, localizedDescription, canceled) argument
211 resource.localizedFailDescription = localizedDescription;

12