OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ResourceError
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebURLError.cpp
34
#include "platform/network/
ResourceError
.h"
42
WebURLError::WebURLError(const
ResourceError
& error)
47
WebURLError& WebURLError::operator=(const
ResourceError
& error)
62
WebURLError::operator
ResourceError
() const
65
return
ResourceError
();
67
ResourceError
resourceError
=
ResourceError
(domain, reason, String::fromUTF8(spec.data(), spec.length()), localizedDescription);
68
resourceError
.setIsCancellation(isCancellation);
69
resourceError
.setStaleCopyInCache(staleCopyInCache)
[
all
...]
/external/deqp/framework/common/
tcuDefs.hpp
79
class
ResourceError
: public Exception
82
ResourceError
(const char* message, const char* expr, const char* file, int line);
83
ResourceError
(const std::string& message);
84
virtual ~
ResourceError
(void) throw() {}
tcuDefs.cpp
96
ResourceError
::
ResourceError
(const char* message, const char* expr, const char* file, int line)
101
ResourceError
::
ResourceError
(const std::string& message)
/external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceError.h
37
class PLATFORM_EXPORT
ResourceError
{
39
static
ResourceError
cancelledError(const String& failingURL);
41
ResourceError
()
50
ResourceError
(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
62
// Makes a deep copy. Useful for when you need to use a
ResourceError
on another thread.
63
ResourceError
copy() const;
80
static bool compare(const
ResourceError
&, const
ResourceError
&);
93
inline bool operator==(const
ResourceError
& a, const
ResourceError
& b) { return ResourceError::compare(a, b);
[
all
...]
/external/chromium_org/third_party/WebKit/public/platform/
WebApplicationCacheHost.h
76
ResourceError
,
Completed in 374 milliseconds