HomeSort by relevance Sort by last modified time
    Searched refs:errorCode (Results 1 - 25 of 538) 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/chromium_org/third_party/icu/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/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/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 77 OMXResult errorCode;
83 errorCode = omxVCM4P2_DecodeVLCZigzag_Inter(ppBitStream, pBitOffset,
85 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
88 errorCode = omxVCM4P2_QuantInvInter_I(
91 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
94 errorCode = omxVCM4P2_IDCT8x8blk(pTempBuf1, pDst);
95 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
omxVCM4P2_DecodeBlockCoef_Intra.c 115 OMXResult errorCode;
153 errorCode = omxVCM4P2_DecodeVLCZigzag_IntraDCVLC(
160 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
164 errorCode = omxVCM4P2_DecodeVLCZigzag_IntraACVLC(
170 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
174 errorCode = omxVCM4P2_PredictReconCoefIntra(
183 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c 77 OMXResult errorCode;
83 errorCode = omxVCM4P2_DecodeVLCZigzag_Inter(ppBitStream, pBitOffset,
85 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
88 errorCode = omxVCM4P2_QuantInvInter_I(
91 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
94 errorCode = omxVCM4P2_IDCT8x8blk(pTempBuf1, pDst);
95 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
omxVCM4P2_DecodeBlockCoef_Intra.c 121 OMXResult errorCode;
159 errorCode = omxVCM4P2_DecodeVLCZigzag_IntraDCVLC(
166 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
170 errorCode = omxVCM4P2_DecodeVLCZigzag_IntraACVLC(
176 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
180 errorCode = omxVCM4P2_PredictReconCoefIntra(
189 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
  /external/chromium_org/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::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...]
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...]
charstr.cpp 22 CharString &CharString::copyFrom(const CharString &s, UErrorCode &errorCode) {
23 if(U_SUCCESS(errorCode) && this!=&s && ensureCapacity(s.len+1, 0, errorCode)) {
40 CharString &CharString::append(char c, UErrorCode &errorCode) {
41 if(ensureCapacity(len+2, 0, errorCode)) {
48 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) {
49 if(U_FAILURE(errorCode)) {
53 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
64 errorCode=U_INTERNAL_PROGRAM_ERROR;
73 return append(CharString(s, sLength, errorCode), errorCode)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/common/
ProcessInitException.java 14 * @param errorCode The error code could be one from content/public/common/result_codes.h
17 public ProcessInitException(int errorCode) {
18 mErrorCode = errorCode;
22 * @param errorCode The error code could be one from content/public/common/result_codes.h
26 public ProcessInitException(int errorCode, Throwable throwable) {
28 mErrorCode = errorCode;
  /external/chromium_org/third_party/icu/source/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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c 81 OMXResult errorCode;
96 errorCode = omxVCM4P2_DecodeVLCZigzag_Inter(ppBitStream, pBitOffset,
98 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
101 errorCode = omxVCM4P2_QuantInvInter_I(
104 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
107 errorCode = omxVCM4P2_IDCT8x8blk(pTempBuf1, pDst);
108 armRetDataErrIf((errorCode != OMX_Sts_NoErr), errorCode);
    [all...]
  /external/icu4c/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...]
mutex.cpp 22 UErrorCode &errorCode) {
24 if(U_FAILURE(errorCode)) {
39 instance=instantiator(context, errorCode);
42 if(fInstance==NULL && U_SUCCESS(errorCode)) {
72 UErrorCode &errorCode) {
74 if(U_FAILURE(errorCode)) {
93 errorCode=localErrorCode;
100 instance=instantiator(context, errorCode);
103 if(fInstance==NULL && U_SUCCESS(errorCode)) {
111 fErrorCode=errorCode;
    [all...]
listformatter.cpp 47 static ListFormatData* loadListFormatData(const Locale& locale, UErrorCode& errorCode);
48 static void getStringByKey(const UResourceBundle* rb, const char* key, UnicodeString& result, UErrorCode& errorCode);
50 void ListFormatter::initializeHash(UErrorCode& errorCode) {
51 if (U_FAILURE(errorCode)) {
57 errorCode = U_MEMORY_ALLOCATION_ERROR;
67 const Locale& locale, UErrorCode& errorCode) {
68 if (U_FAILURE(errorCode)) {
76 initializeHash(errorCode);
77 if (U_FAILURE(errorCode)) {
86 result = loadListFormatData(locale, errorCode);
    [all...]
  /external/chromium_org/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/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);

Completed in 853 milliseconds

1 2 3 4 5 6 7 8 91011>>