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

  /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::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;
Geolocation.cpp 74 PositionError::ErrorCode code = PositionError::POSITION_UNAVAILABLE;
  /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...]
urename.h     [all...]
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
RuleBasedCollator.java 16 import com.ibm.icu4jni.common.ErrorCode;
300 throw ErrorCode.getException(ErrorCode.U_ILLEGAL_ARGUMENT_ERROR);
339 throw ErrorCode.getException(ErrorCode.U_ILLEGAL_ARGUMENT_ERROR);
414 throw ErrorCode.getException(ErrorCode.U_ILLEGAL_ARGUMENT_ERROR);
469 throw ErrorCode.getException(ErrorCode.U_ILLEGAL_ARGUMENT_ERROR);
493 throw ErrorCode.getException(ErrorCode.U_ILLEGAL_ARGUMENT_ERROR)
    [all...]
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/charset/
CharsetEncoderICU.java 24 import com.ibm.icu4jni.common.ErrorCode;
89 if (ErrorCode.isFailure(ec)) {
90 throw ErrorCode.getException(ec);
109 if (ErrorCode.isFailure(ec)) {
110 throw ErrorCode.getException(ec);
131 if (ErrorCode.isFailure(ec)) {
132 throw ErrorCode.getException(ec);
153 if (ErrorCode.isFailure(ec)) {
154 throw ErrorCode.getException(ec);
176 if (ErrorCode.isFailure(ec))
    [all...]
CharsetDecoderICU.java 17 import com.ibm.icu4jni.common.ErrorCode;
89 if(ErrorCode.isFailure(ec)){
90 throw ErrorCode.getException(ec);
112 if(ErrorCode.isFailure(ec)){
113 throw ErrorCode.getException(ec);
135 if(ErrorCode.isFailure(ec)){
136 throw ErrorCode.getException(ec);
156 if(ErrorCode.isFailure(ec)){
157 throw ErrorCode.getException(ec);
183 if (ErrorCode.isFailure(ec))
    [all...]
  /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); }
  /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);
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/common/
ErrorCode.java 17 public final class ErrorCode extends Exception
  /dalvik/libcore/icu/src/main/native/
sub.mk 7 ErrorCode.cpp \
  /external/icu4c/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;
  /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/webkit/WebCore/platform/mac/
GeolocationServiceMac.mm 203 PositionError::ErrorCode code;
  /external/netperf/
netlib.c 875 DWORD ErrorCode;
879 ErrorCode = WaitForSingleObject(hAlarm, seconds*1000);
880 if (ErrorCode == WAIT_FAILED)
886 if (ErrorCode == WAIT_TIMEOUT)
    [all...]

Completed in 2599 milliseconds