HomeSort by relevance Sort by last modified time
    Searched refs:errorCode (Results 1 - 25 of 620) 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...]
  /external/icu/icu4c/source/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/lzma/CPP/Common/
MyException.h 10 HRESULT ErrorCode;
11 CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c 92 OMXResult errorCode;
98 errorCode = omxVCM4P2_DecodeVLCZigzag_Inter(ppBitStream, pBitOffset,
100 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
103 errorCode = omxVCM4P2_QuantInvInter_I(
106 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
109 errorCode = omxVCM4P2_IDCT8x8blk(pTempBuf1, pDst);
110 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
omxVCM4P2_DecodeBlockCoef_Intra.c 130 OMXResult errorCode;
168 errorCode = omxVCM4P2_DecodeVLCZigzag_IntraDCVLC(
175 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
179 errorCode = omxVCM4P2_DecodeVLCZigzag_IntraACVLC(
185 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
189 errorCode = omxVCM4P2_PredictReconCoefIntra(
198 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c 92 OMXResult errorCode;
98 errorCode = omxVCM4P2_DecodeVLCZigzag_Inter(ppBitStream, pBitOffset,
100 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
103 errorCode = omxVCM4P2_QuantInvInter_I(
106 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
109 errorCode = omxVCM4P2_IDCT8x8blk(pTempBuf1, pDst);
110 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
omxVCM4P2_DecodeBlockCoef_Intra.c 136 OMXResult errorCode;
174 errorCode = omxVCM4P2_DecodeVLCZigzag_IntraDCVLC(
181 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
185 errorCode = omxVCM4P2_DecodeVLCZigzag_IntraACVLC(
191 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
195 errorCode = omxVCM4P2_PredictReconCoefIntra(
204 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
  /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 31 static const CollationCacheEntry *getRootCacheEntry(UErrorCode &errorCode);
32 static const CollationTailoring *getRoot(UErrorCode &errorCode);
33 static const CollationData *getData(UErrorCode &errorCode);
34 static const CollationSettings *getSettings(UErrorCode &errorCode);
37 static void load(UErrorCode &errorCode);
collationroot.cpp 49 CollationRoot::load(UErrorCode &errorCode) {
50 if(U_FAILURE(errorCode)) { return; }
53 errorCode = U_MEMORY_ALLOCATION_ERROR;
58 CollationDataReader::isAcceptable, t->version, &errorCode);
59 if(U_FAILURE(errorCode)) { return; }
61 CollationDataReader::read(NULL, inBytes, udata_getLength(t->memory), *t, errorCode);
62 if(U_FAILURE(errorCode)) { return; }
73 CollationRoot::getRootCacheEntry(UErrorCode &errorCode) {
74 umtx_initOnce(initOnce, CollationRoot::load, errorCode);
75 if(U_FAILURE(errorCode)) { return NULL;
    [all...]
ucol_imp.h 71 UnicodeString &rules, UErrorCode &errorCode);
73 static const CollationCacheEntry *loadTailoring(const Locale &locale, UErrorCode &errorCode);
76 const CollationCacheEntry *createCacheEntry(UErrorCode &errorCode);
79 static void loadRootRules(UErrorCode &errorCode);
87 CollationLoader(const CollationCacheEntry *re, const Locale &requested, UErrorCode &errorCode);
91 const CollationCacheEntry *loadFromLocale(UErrorCode &errorCode);
92 const CollationCacheEntry *loadFromBundle(UErrorCode &errorCode);
93 const CollationCacheEntry *loadFromCollations(UErrorCode &errorCode);
94 const CollationCacheEntry *loadFromData(UErrorCode &errorCode);
97 const CollationCacheEntry *getCacheEntry(UErrorCode &errorCode);
    [all...]
uitercollationiterator.h 43 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
45 virtual UChar32 previousCodePoint(UErrorCode &errorCode);
48 virtual uint32_t handleNextCE32(UChar32 &c, UErrorCode &errorCode);
52 virtual void forwardNumCodePoints(int32_t num, UErrorCode &errorCode);
54 virtual void backwardNumCodePoints(int32_t num, UErrorCode &errorCode);
75 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
77 virtual UChar32 previousCodePoint(UErrorCode &errorCode);
80 virtual uint32_t handleNextCE32(UChar32 &c, UErrorCode &errorCode);
84 virtual void forwardNumCodePoints(int32_t num, UErrorCode &errorCode);
86 virtual void backwardNumCodePoints(int32_t num, UErrorCode &errorCode);
    [all...]
  /frameworks/base/keystore/java/android/security/
KeyStoreException.java 29 public KeyStoreException(int errorCode, String message) {
31 mErrorCode = errorCode;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c 96 OMXResult errorCode;
111 errorCode = omxVCM4P2_DecodeVLCZigzag_Inter(ppBitStream, pBitOffset,
113 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
116 errorCode = omxVCM4P2_QuantInvInter_I(
119 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
122 errorCode = omxVCM4P2_IDCT8x8blk(pTempBuf1, pDst);
123 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
  /external/icu/icu4c/source/common/
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...]
charstr.h 42 CharString(const StringPiece &s, UErrorCode &errorCode) : len(0) {
44 append(s, errorCode);
46 CharString(const CharString &s, UErrorCode &errorCode) : len(0) {
48 append(s, errorCode);
50 CharString(const char *s, int32_t sLength, UErrorCode &errorCode) : len(0) {
52 append(s, sLength, errorCode);
62 CharString &copyFrom(const CharString &other, UErrorCode &errorCode);
75 CharString &append(char c, UErrorCode &errorCode);
76 CharString &append(const StringPiece &s, UErrorCode &errorCode) {
77 return append(s.data(), s.length(), errorCode);
    [all...]
errorcode.cpp 8 * file name: errorcode.cpp
18 #include "unicode/errorcode.h"
22 ErrorCode::~ErrorCode() {}
24 UErrorCode ErrorCode::reset() {
25 UErrorCode code = errorCode;
26 errorCode = U_ZERO_ERROR;
30 void ErrorCode::assertSuccess() const {
36 const char* ErrorCode::errorName() const {
37 return u_errorName(errorCode);
    [all...]
loadednormalizer2impl.cpp 36 void load(const char *packageName, const char *name, UErrorCode &errorCode);
74 LoadedNormalizer2Impl::load(const char *packageName, const char *name, UErrorCode &errorCode) {
75 if(U_FAILURE(errorCode)) {
78 memory=udata_openChoice(packageName, "nrm", name, isAcceptable, this, &errorCode);
79 if(U_FAILURE(errorCode)) {
86 errorCode=U_INVALID_FORMAT_ERROR; // Not enough indexes.
94 &errorCode);
95 if(U_FAILURE(errorCode)) {
115 UErrorCode &errorCode) {
116 if(U_FAILURE(errorCode)) {
    [all...]
listformatter.cpp 81 UErrorCode& errorCode);
87 UErrorCode& errorCode);
112 void ListFormatter::initializeHash(UErrorCode& errorCode) {
113 if (U_FAILURE(errorCode)) {
119 errorCode = U_MEMORY_ALLOCATION_ERROR;
129 const Locale& locale, const char *style, UErrorCode& errorCode) {
130 if (U_FAILURE(errorCode)) {
133 CharString keyBuffer(locale.getName(), errorCode);
134 keyBuffer.append(':', errorCode).append(style, errorCode);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
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...]
  /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);
  /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);
  /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...]
  /external/icu/icu4c/source/test/cintltst/
cstrcase.c 42 UErrorCode errorCode;
46 errorCode=U_ZERO_ERROR;
50 &errorCode);
51 if( U_FAILURE(errorCode) ||
58 u_errorName(errorCode),
68 errorCode=U_ZERO_ERROR;
72 &errorCode);
73 if( U_FAILURE(errorCode) ||
80 u_errorName(errorCode),
86 errorCode=U_ZERO_ERROR
    [all...]

Completed in 595 milliseconds

1 2 3 4 5 6 7 8 91011>>