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

1 2 3 4 5 6 7 8 91011>>

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPException.java 19 /** the errorCode of the XMP toolkit */
20 private int errorCode;
26 * @param errorCode the error code
28 public XMPException(String message, int errorCode)
31 this.errorCode = errorCode;
38 * @param errorCode the error code
41 public XMPException(String message, int errorCode, Throwable t)
44 this.errorCode = errorCode;
    [all...]
  /frameworks/base/core/java/android/os/
ServiceSpecificException.java 32 public final int errorCode;
34 public ServiceSpecificException(int errorCode, String message) {
36 this.errorCode = errorCode;
39 public ServiceSpecificException(int errorCode) {
40 this.errorCode = errorCode;
45 return super.toString() + " (code " + errorCode + ")";
  /external/icu/icu4c/source/common/unicode/
errorcode.h 10 * file name: errorcode.h
24 * \brief C++ API: ErrorCode class intended to make it easier to use
52 * The ErrorCode base class destructor does nothing.
60 * class IcuErrorCode: public icu::ErrorCode {
68 * log_failure(u_errorName(errorCode));
69 * exit(errorCode);
81 class U_COMMON_API ErrorCode: public UMemory {
87 ErrorCode() : errorCode(U_ZERO_ERROR) {}
89 virtual ~ErrorCode();
    [all...]
  /external/lzma/CPP/Common/
MyException.h 10 HRESULT ErrorCode;
11 CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/exceptions/
ReplyErrorCodeException.java 42 private int errorCode;
47 * @param errorCode error code of received reply packet
49 public ReplyErrorCodeException(int errorCode) {
50 super("Error " + errorCode + ": " + JDWPConstants.Error.getName(errorCode));
51 this.errorCode = errorCode;
60 return errorCode;
  /external/icu/icu4c/source/i18n/
collationroot.h 33 static const CollationCacheEntry *getRootCacheEntry(UErrorCode &errorCode);
34 static const CollationTailoring *getRoot(UErrorCode &errorCode);
35 static const CollationData *getData(UErrorCode &errorCode);
36 static const CollationSettings *getSettings(UErrorCode &errorCode);
39 static void U_CALLCONV load(UErrorCode &errorCode);
collationroot.cpp 51 CollationRoot::load(UErrorCode &errorCode) {
52 if(U_FAILURE(errorCode)) { return; }
55 errorCode = U_MEMORY_ALLOCATION_ERROR;
60 CollationDataReader::isAcceptable, t->version, &errorCode);
61 if(U_FAILURE(errorCode)) { return; }
63 CollationDataReader::read(NULL, inBytes, udata_getLength(t->memory), *t, errorCode);
64 if(U_FAILURE(errorCode)) { return; }
75 CollationRoot::getRootCacheEntry(UErrorCode &errorCode) {
76 umtx_initOnce(initOnce, CollationRoot::load, errorCode);
77 if(U_FAILURE(errorCode)) { return NULL;
    [all...]
ucol_imp.h 73 UnicodeString &rules, UErrorCode &errorCode);
75 static const CollationCacheEntry *loadTailoring(const Locale &locale, UErrorCode &errorCode);
78 const CollationCacheEntry *createCacheEntry(UErrorCode &errorCode);
81 static void U_CALLCONV loadRootRules(UErrorCode &errorCode);
89 CollationLoader(const CollationCacheEntry *re, const Locale &requested, UErrorCode &errorCode);
93 const CollationCacheEntry *loadFromLocale(UErrorCode &errorCode);
94 const CollationCacheEntry *loadFromBundle(UErrorCode &errorCode);
95 const CollationCacheEntry *loadFromCollations(UErrorCode &errorCode);
96 const CollationCacheEntry *loadFromData(UErrorCode &errorCode);
99 const CollationCacheEntry *getCacheEntry(UErrorCode &errorCode);
    [all...]
dayperiodrules.cpp 53 virtual void put(const char *key, ResourceValue &value, UBool, UErrorCode &errorCode) {
54 ResourceTable dayPeriodData = value.getTable(errorCode);
55 if (U_FAILURE(errorCode)) { return; }
59 ResourceTable locales = value.getTable(errorCode);
60 if (U_FAILURE(errorCode)) { return; }
63 UnicodeString setNum_str = value.getUnicodeString(errorCode);
64 int32_t setNum = parseSetNum(setNum_str, errorCode);
65 uhash_puti(data->localeToRuleSetNumMap, const_cast<char *>(key), setNum, &errorCode);
71 errorCode = U_MEMORY_ALLOCATION_ERROR;
74 ResourceTable rules = value.getTable(errorCode);
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/library_loader/
ProcessInitException.java 14 * @param errorCode This will be one of the LoaderErrors error codes.
16 public ProcessInitException(int errorCode) {
17 mErrorCode = errorCode;
21 * @param errorCode This will be one of the LoaderErrors error codes.
24 public ProcessInitException(int errorCode, Throwable throwable) {
26 mErrorCode = errorCode;
  /external/lzma/CPP/Windows/
ErrorMsg.h 11 UString MyFormatMessage(DWORD errorCode);
  /external/icu/icu4c/source/common/
locresdata.cpp 54 UErrorCode errorCode;
61 errorCode=U_ZERO_ERROR;
62 rb=ures_open(path, locale, &errorCode);
64 if(U_FAILURE(errorCode)) {
66 *pErrorCode=errorCode;
68 } else if(errorCode==U_USING_DEFAULT_WARNING ||
69 (errorCode==U_USING_FALLBACK_WARNING && *pErrorCode!=U_USING_DEFAULT_WARNING)
72 *pErrorCode=errorCode;
78 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
82 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
    [all...]
charstr.h 44 CharString(StringPiece s, UErrorCode &errorCode) : len(0) {
46 append(s, errorCode);
48 CharString(const CharString &s, UErrorCode &errorCode) : len(0) {
50 append(s, errorCode);
52 CharString(const char *s, int32_t sLength, UErrorCode &errorCode) : len(0) {
54 append(s, sLength, errorCode);
64 CharString &copyFrom(const CharString &other, UErrorCode &errorCode);
80 CharString &append(char c, UErrorCode &errorCode);
81 CharString &append(StringPiece s, UErrorCode &errorCode) {
82 return append(s.data(), s.length(), errorCode);
    [all...]
errorcode.cpp 10 * file name: errorcode.cpp
20 #include "unicode/errorcode.h"
24 ErrorCode::~ErrorCode() {}
26 UErrorCode ErrorCode::reset() {
27 UErrorCode code = errorCode;
28 errorCode = U_ZERO_ERROR;
32 void ErrorCode::assertSuccess() const {
38 const char* ErrorCode::errorName() const {
39 return u_errorName(errorCode);
    [all...]
charstr.cpp 26 CharString &CharString::copyFrom(const CharString &s, UErrorCode &errorCode) {
27 if(U_SUCCESS(errorCode) && this!=&s && ensureCapacity(s.len+1, 0, errorCode)) {
53 CharString &CharString::append(char c, UErrorCode &errorCode) {
54 if(ensureCapacity(len+2, 0, errorCode)) {
61 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) {
62 if(U_FAILURE(errorCode)) {
66 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
77 errorCode=U_INTERNAL_PROGRAM_ERROR;
86 return append(CharString(s, sLength, errorCode), errorCode)
    [all...]
loadednormalizer2impl.cpp 38 void load(const char *packageName, const char *name, UErrorCode &errorCode);
76 LoadedNormalizer2Impl::load(const char *packageName, const char *name, UErrorCode &errorCode) {
77 if(U_FAILURE(errorCode)) {
80 memory=udata_openChoice(packageName, "nrm", name, isAcceptable, this, &errorCode);
81 if(U_FAILURE(errorCode)) {
88 errorCode=U_INVALID_FORMAT_ERROR; // Not enough indexes.
96 &errorCode);
97 if(U_FAILURE(errorCode)) {
117 UErrorCode &errorCode) {
118 if(U_FAILURE(errorCode)) {
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
ErrorCode.java 19 public enum ErrorCode {
65 private ErrorCode(int httpCode, int spdyRstCode, int spdyGoAwayCode) {
71 public static ErrorCode fromSpdy3Rst(int code) {
72 for (ErrorCode errorCode : ErrorCode.values()) {
73 if (errorCode.spdyRstCode == code) return errorCode;
78 public static ErrorCode fromHttp2(int code) {
79 for (ErrorCode errorCode : ErrorCode.values())
    [all...]
  /system/security/keystore/include/keystore/
keystore_return_types.h 26 using keymaster::ErrorCode;
33 * ErrorCode, which has negative error codes and use 0 for ERROR_OK;
37 * ErrorCode::OK (0), because this is what (java) clients expect.
44 KeyStoreServiceReturnCode(const ErrorCode& errorCode) : errorCode_(int32_t(errorCode)) {}
45 KeyStoreServiceReturnCode(const ResponseCode& errorCode) : errorCode_(int32_t(errorCode)) {}
46 KeyStoreServiceReturnCode(const KeyStoreServiceReturnCode& errorCode)
47 : errorCode_(errorCode.errorCode_) {
    [all...]
  /external/apache-xml/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);
  /frameworks/base/keystore/java/android/security/
KeyStoreException.java 32 public KeyStoreException(int errorCode, String message) {
34 mErrorCode = errorCode;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptResultException.java 26 AaptResultException(int errorCode, String[] output) {
27 super(errorCode, output);
ProguardResultException.java 26 ProguardResultException(int errorCode, String[] output) {
27 super(errorCode, output);
  /external/swiftshader/src/OpenGL/libGLES_CM/
main.h 34 void error(GLenum errorCode);
37 const T &error(GLenum errorCode, const T &returnValue)
39 error(errorCode);
  /system/chre/platform/shared/include/chre/target_platform/
platform_wifi_base.h 40 static void scanMonitorStatusChangeCallback(bool enabled, uint8_t errorCode);
41 static void scanResponseCallback(bool pending, uint8_t errorCode);
43 static void rangingEventCallback(uint8_t errorCode,
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
DataModelException.java 61 public DataModelException(final int errorCode, final Exception innerException,
66 if (errorCode < FIRST || errorCode > LAST) {
67 throw new IllegalArgumentException("error code out of range: " + errorCode);
70 mErrorCode = errorCode;
81 public DataModelException(final int errorCode) {
82 this(errorCode, null, 0, false, null);
85 public DataModelException(final int errorCode, final Exception innerException) {
86 this(errorCode, innerException, 0, false, null);
89 public DataModelException(final int errorCode, final String message)
    [all...]

Completed in 477 milliseconds

1 2 3 4 5 6 7 8 91011>>