Searched refs:localizedDescription (Results 1 - 25 of 37) sorted by relevance

12

/external/webkit/Source/WebCore/platform/network/android/
H A DResourceError.h38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) { }
/external/webkit/Source/WebCore/platform/network/cf/
H A DSocketStreamError.h45 SocketStreamError(int errorCode, const String& failingURL, const String& localizedDescription) argument
46 : SocketStreamErrorBase(errorCode, failingURL, localizedDescription)
H A DResourceError.h52 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
53 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
65 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate);
H A DResourceErrorCF.cpp49 ResourceError::ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate) argument
50 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/chromium/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/qt/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceError.h38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/
H A DSocketStreamErrorBase.cpp57 if (a.localizedDescription() != b.localizedDescription())
H A DSocketStreamErrorBase.h50 const String& localizedDescription() const { return m_localizedDescription; } function in class:WebCore::SocketStreamErrorBase
67 SocketStreamErrorBase(int errorCode, const String& failingURL, const String& localizedDescription) argument
70 , m_localizedDescription(localizedDescription)
H A DResourceErrorBase.cpp71 if (a.localizedDescription() != b.localizedDescription())
H A DResourceErrorBase.h47 const String& localizedDescription() const { lazyInit(); return m_localizedDescription; } function in class:WebCore::ResourceErrorBase
62 ResourceErrorBase(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
66 , m_localizedDescription(localizedDescription)
/external/webkit/Source/WebKit2/Shared/gtk/
H A DWebCoreArgumentCodersGtk.cpp66 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
74 String localizedDescription; local
75 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
77 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
/external/webkit/Source/WebKit2/Shared/qt/
H A DWebCoreArgumentCodersQt.cpp65 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
73 String localizedDescription; local
74 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
76 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
/external/webkit/Source/WebKit2/Shared/
H A DWebError.h56 const String& localizedDescription() const { return m_platformError.localizedDescription(); } function in class:WebKit::WebError
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKError.cpp61 return toCopiedAPI(toImpl(errorRef)->localizedDescription());
/external/webkit/Source/WebKit2/Shared/win/
H A DWebCoreArgumentCodersWin.cpp124 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
136 String localizedDescription; local
137 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
148 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription, WebCore::copyCertificateToData(certificateChain.first()).get());
153 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebKitErrors.m114 NSString *localizedDescription = [descriptionsForWebKitErrorDomain objectForKey:[NSNumber numberWithInt:code]];
115 if (localizedDescription)
116 [userInfo setObject:localizedDescription forKey:NSLocalizedDescriptionKey];
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebError.idl145 - (NSString *)localizedDescription
147 HRESULT localizedDescription([out, retval] BSTR* result);
/external/webkit/Source/WebKit/win/
H A DWebError.cpp130 HRESULT STDMETHODCALLTYPE WebError::localizedDescription( function in class:WebError
136 *result = BString(m_error.localizedDescription()).release();
H A DWebError.h60 virtual HRESULT STDMETHODCALLTYPE localizedDescription(
H A DDefaultPolicyDelegate.cpp186 error->localizedDescription(&errorStr);
/external/qemu/android/camera/
H A Dcamera-capture-mac.m153 [[error localizedDescription] UTF8String]);
173 [[error localizedDescription] UTF8String]);
186 [[error localizedDescription] UTF8String]);
/external/webkit/Source/WebCore/inspector/
H A DInspectorConsoleAgent.cpp221 if (!error.localizedDescription().isEmpty())
222 message += ": " + error.localizedDescription();

Completed in 288 milliseconds

12