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

1 2

  /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);
  /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/page/
GeolocationError.h 40 enum ErrorCode {
45 static PassRefPtr<GeolocationError> create(ErrorCode code, const String& message) { return adoptRef(new GeolocationError(code, message)); }
47 ErrorCode code() const { return m_code; }
51 GeolocationError(ErrorCode code, const String& message)
57 ErrorCode m_code;
PositionError.h 37 enum ErrorCode {
43 static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); }
45 ErrorCode code() const { return m_code; }
51 PositionError(ErrorCode code, const String& message)
58 ErrorCode m_code;
  /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...]
  /external/chromium/net/tools/flip_server/
balsa_enums.h 26 enum ErrorCode {
96 static const char* ErrorCodeToString(ErrorCode error_code);
balsa_frame.h 141 BalsaFrameEnums::ErrorCode ErrorCode() const { return last_error_; }
271 BalsaFrameEnums::ErrorCode last_error_;
  /external/icu4c/tools/ctestfw/unicode/
testlog.h 14 #include "unicode/errorcode.h"
31 class T_CTEST_EXPORT_API IcuTestErrorCode : public ErrorCode {
  /external/webkit/WebKit/mac/WebCoreSupport/
WebGeolocationMock.mm 54 PositionError::ErrorCode codeEnum = static_cast<PositionError::ErrorCode>(code);
  /external/skia/src/animator/
SkDisplayXMLParser.h 31 enum ErrorCode {
63 void setCode(ErrorCode code) { INHERITED::setCode((INHERITED::ErrorCode) code); }
SkAnimateMaker.h 85 SkXMLParserError::ErrorCode getErrorCode() const { return fError.getErrorCode(); }
101 void setErrorCode(SkXMLParserError::ErrorCode err) { if (fError.hasError() == false) fError.INHERITED::setCode(err); }
102 void setErrorCode(SkDisplayXMLParserError::ErrorCode err) { if (fError.hasError() == false) fError.setCode(err); }
  /libcore/luni/src/main/java/com/ibm/icu4jni/charset/
CharsetEncoderICU.java 17 import com.ibm.icu4jni.common.ErrorCode;
148 if (ErrorCode.isFailure(ec)){
149 throw ErrorCode.getException(ec);
171 if (ErrorCode.isFailure(ec)) {
172 if (ec == ErrorCode.U_BUFFER_OVERFLOW_ERROR) {
174 } else if (ec == ErrorCode.U_TRUNCATED_CHAR_FOUND) {//CSDL: add this truncated character error handling
179 ErrorCode.getException(ec);
234 if (ErrorCode.isFailure(ec)) {
236 if (ec == ErrorCode.U_BUFFER_OVERFLOW_ERROR) {
238 } else if (ec == ErrorCode.U_INVALID_CHAR_FOUND)
    [all...]
CharsetDecoderICU.java 17 import com.ibm.icu4jni.common.ErrorCode;
122 if (ErrorCode.isFailure(ec)){
123 throw ErrorCode.getException(ec);
146 if (ErrorCode.isFailure(ec)) {
147 if (ec == ErrorCode.U_BUFFER_OVERFLOW_ERROR) {
149 } else if (ec == ErrorCode.U_TRUNCATED_CHAR_FOUND) {//CSDL: add this truncated character error handling
154 ErrorCode.getException(ec);
219 if (ec == ErrorCode.U_BUFFER_OVERFLOW_ERROR) {
221 } else if (ec == ErrorCode.U_INVALID_CHAR_FOUND) {
223 } else if (ec == ErrorCode.U_ILLEGAL_CHAR_FOUND)
    [all...]
  /external/skia/include/xml/
SkXMLParser.h 30 enum ErrorCode {
42 ErrorCode getErrorCode() const { return fCode; }
49 void setCode(ErrorCode code) { fCode = code; }
54 ErrorCode fCode;
  /external/webkit/WebCore/platform/gtk/
GeolocationServiceGtk.h 50 void setError(PositionError::ErrorCode, const char* message);
GeolocationServiceGtk.cpp 209 void GeolocationServiceGtk::setError(PositionError::ErrorCode errorCode, const char* message)
212 m_lastError = PositionError::create(errorCode, String::fromUTF8(message));
  /external/webkit/WebKit/android/jni/
MockGeolocation.cpp 62 PositionError::ErrorCode codeEnum = static_cast<PositionError::ErrorCode>(code);
  /libcore/luni/src/main/java/com/ibm/icu4jni/common/
ErrorCode.java 17 public final class ErrorCode extends Exception
  /external/icu4c/tools/toolutil/
toolutil.h 26 #include "unicode/errorcode.h"
31 * ErrorCode subclass for use in ICU command-line tools.
32 * The destructor calls handleFailure() which calls exit(errorCode) when isFailure().
34 class U_TOOLUTIL_API IcuToolErrorCode : public 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/JavaScriptCore/yarr/
RegexParser.h 54 enum ErrorCode {
79 CharacterClassParserDelegate(Delegate& delegate, ErrorCode& err)
185 ErrorCode& m_err;
654 // The order of this array must match the ErrorCode enum.
767 ErrorCode m_err;
  /libcore/luni/src/main/native/
sub.mk 7 ErrorCode.cpp \
  /external/webkit/JavaScriptCore/pcre/
pcre_compile.cpp 92 enum ErrorCode {
100 static const char* errorText(ErrorCode code)
153 static bool compileBracket(int, int*, unsigned char**, const UChar**, const UChar*, ErrorCode*, int, int*, int*, CompileData&);
170 errorCodePtr points to the errorcode variable
180 static int checkEscape(const UChar** ptrPtr, const UChar* patternEnd, ErrorCode* errorCodePtr, int bracount, bool isClass)
384 static const UChar* readRepeatCounts(const UChar* p, int* minp, int* maxp, ErrorCode* errorCodePtr)
570 const UChar** ptrPtr, const UChar* patternEnd, ErrorCode* errorCodePtr, int *firstbyteptr,
2576 ErrorCode errorcode = ERR0; local
    [all...]
  /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...]

Completed in 1026 milliseconds

1 2