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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/html/
HTMLParserErrorCodes.cpp 31 const char* htmlParserErrorMessageTemplate(HTMLParserErrorCode errorCode)
55 if (errorCode >= MisplacedTablePartError && errorCode <= IncorrectXMLCloseScriptWarning)
56 return errors[errorCode];
  /external/chromium/third_party/icu/public/common/unicode/
errorcode.h 8 * file name: errorcode.h
22 * \brief C++ API: ErrorCode class intended to make it easier to use
50 * The ErrorCode base class destructor does nothing.
58 * class IcuErrorCode: public icu::ErrorCode {
66 * log_failure(u_errorName(errorCode));
67 * exit(errorCode);
79 class U_COMMON_API ErrorCode: public UMemory {
85 ErrorCode() : errorCode(U_ZERO_ERROR) {}
87 virtual ~ErrorCode() {}
    [all...]
  /external/icu4c/common/unicode/
errorcode.h 8 * file name: errorcode.h
22 * \brief C++ API: ErrorCode class intended to make it easier to use
50 * The ErrorCode base class destructor does nothing.
58 * class IcuErrorCode: public icu::ErrorCode {
66 * log_failure(u_errorName(errorCode));
67 * exit(errorCode);
79 class U_COMMON_API ErrorCode: public UMemory {
85 ErrorCode() : errorCode(U_ZERO_ERROR) {}
87 virtual ~ErrorCode() {}
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsResponse.java 30 * errorCode: See 3GPP 27.005, 3.2.5 for GSM/UMTS,
33 int errorCode;
35 public SmsResponse(int messageRef, String ackPdu, int errorCode) {
38 this.errorCode = errorCode;
43 + ", errorCode = " + errorCode
  /libcore/luni/src/main/native/
ErrorCode.cpp 10 #include "ErrorCode.h"
16 * @param errorCode code to determine if it is an error
17 * @return 0 if errorCode is not an error, 1 if errorCode is an error, but the
19 * @exception thrown if errorCode represents an error
21 UBool icu4jni_error(JNIEnv* env, UErrorCode errorCode)
23 const char* message = u_errorName(errorCode);
24 if (errorCode <= U_ZERO_ERROR || errorCode >= U_ERROR_LIMIT) {
28 switch (errorCode) {
    [all...]
  /external/icu4c/common/
errorcode.cpp 8 * file name: errorcode.cpp
18 #include "unicode/errorcode.h"
22 UErrorCode ErrorCode::reset() {
23 UErrorCode code = errorCode;
24 errorCode = U_ZERO_ERROR;
28 void ErrorCode::assertSuccess() const {
34 const char* ErrorCode::errorName() const {
35 return u_errorName(errorCode);
locresdata.cpp 52 UErrorCode errorCode;
59 errorCode=U_ZERO_ERROR;
60 rb=ures_open(path, locale, &errorCode);
62 if(U_FAILURE(errorCode)) {
64 *pErrorCode=errorCode;
66 } else if(errorCode==U_USING_DEFAULT_WARNING ||
67 (errorCode==U_USING_FALLBACK_WARNING && *pErrorCode!=U_USING_DEFAULT_WARNING)
70 *pErrorCode=errorCode;
76 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
80 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
    [all...]
  /frameworks/base/packages/VpnServices/src/com/android/server/vpn/
VpnConnectingError.java 27 VpnConnectingError(int errorCode) {
28 super("Connecting error: " + errorCode);
29 mErrorCode = errorCode;
  /external/chromium/third_party/icu/source/test/intltest/
itutil.cpp 13 #include "unicode/errorcode.h"
78 ErrorCode errorCode;
79 if(errorCode.get()!=U_ZERO_ERROR || !errorCode.isSuccess() || errorCode.isFailure()) {
80 errln("ErrorCode did not initialize properly");
83 errorCode.check();
84 RefPlusOne(errorCode);
85 if(errorCode.get()!=U_ILLEGAL_ARGUMENT_ERROR || errorCode.isSuccess() || !errorCode.isFailure())
    [all...]
  /external/webkit/WebCore/platform/network/cf/
SocketStreamError.h 41 explicit SocketStreamError(int errorCode)
42 : SocketStreamErrorBase(errorCode)
  /external/webkit/WebCore/platform/network/chromium/
SocketStreamError.h 41 explicit SocketStreamError(int errorCode)
42 : SocketStreamErrorBase(errorCode) { }
ResourceError.h 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /external/webkit/WebCore/platform/network/curl/
SocketStreamError.h 41 explicit SocketStreamError(int errorCode)
42 : SocketStreamErrorBase(errorCode)
ResourceError.h 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /external/webkit/WebCore/platform/network/qt/
SocketStreamError.h 41 explicit SocketStreamError(int errorCode)
42 : SocketStreamErrorBase(errorCode)
ResourceError.h 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /external/webkit/WebCore/platform/network/soup/
SocketStreamError.h 41 explicit SocketStreamError(int errorCode)
42 : SocketStreamErrorBase(errorCode)
ResourceError.h 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /external/icu4c/test/intltest/
itutil.cpp 13 #include "unicode/errorcode.h"
88 ErrorCode errorCode;
89 if(errorCode.get()!=U_ZERO_ERROR || !errorCode.isSuccess() || errorCode.isFailure()) {
90 errln("ErrorCode did not initialize properly");
93 errorCode.assertSuccess();
94 if(errorCode.errorName()!=u_errorName(U_ZERO_ERROR)) {
95 errln("ErrorCode did not format error message string properly")
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
cstrcase.c 43 UErrorCode errorCode;
47 errorCode=U_ZERO_ERROR;
51 &errorCode);
52 if( U_FAILURE(errorCode) ||
59 u_errorName(errorCode),
69 errorCode=U_ZERO_ERROR;
73 &errorCode);
74 if( U_FAILURE(errorCode) ||
81 u_errorName(errorCode),
87 errorCode=U_ZERO_ERROR
    [all...]
  /external/icu4c/test/cintltst/
cstrcase.c 43 UErrorCode errorCode;
47 errorCode=U_ZERO_ERROR;
51 &errorCode);
52 if( U_FAILURE(errorCode) ||
59 u_errorName(errorCode),
69 errorCode=U_ZERO_ERROR;
73 &errorCode);
74 if( U_FAILURE(errorCode) ||
81 u_errorName(errorCode),
87 errorCode=U_ZERO_ERROR
    [all...]
  /external/chromium/third_party/icu/source/common/
errorcode.cpp 8 * file name: errorcode.cpp
18 #include "unicode/errorcode.h"
22 UErrorCode ErrorCode::reset() {
23 UErrorCode code = errorCode;
24 errorCode = U_ZERO_ERROR;
28 void ErrorCode::check() const {
  /external/webkit/WebCore/platform/network/
SocketStreamErrorBase.cpp 45 return a.errorCode() == b.errorCode();
  /external/webkit/WebCore/platform/network/android/
ResourceError.h 38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) { }
  /libcore/luni/src/main/java/org/apache/xml/utils/res/
XResourceBundleBase.java 36 * @param errorCode Error code
40 abstract public String getMessageKey(int errorCode);
45 * @param errorCode Error code
49 abstract public String getWarningKey(int errorCode);

Completed in 994 milliseconds

1 2 3 4 5 6 7 8 91011>>