Searched defs:errorCode (Results 1 - 25 of 305) sorted by relevance

1234567891011>>

/external/lzma/CPP/Common/
H A DMyException.h11 CSystemException(HRESULT errorCode): ErrorCode(errorCode) {} argument
/external/swiftshader/src/OpenGL/libGLES_CM/
H A Dmain.h34 void error(GLenum errorCode);
37 const T &error(GLenum errorCode, const T &returnValue) argument
39 error(errorCode);
/external/icu/icu4c/source/tools/gencolusb/
H A Dverify_uset.cpp21 UErrorCode errorCode = U_ZERO_ERROR; local
31 if(U_SUCCESS(errorCode)) {
32 UnicodeSet us(unsafeBackwardPattern, errorCode);
33 fprintf(stderr, "\n%s:%d: err creating set %s\n", __FILE__, __LINE__, u_errorName(errorCode));
51 UnicodeSet u(unsafe_serializedData, unsafe_serializedCount, UnicodeSet::kSerialized, errorCode);
52 fprintf(stderr, "\n%s:%d: err creating set %s\n", __FILE__, __LINE__, u_errorName(errorCode));
57 // errorCode = U_MEMORY_ALLOCATION_ERROR;
58 // fprintf(stderr, "\n%s:%d: err %s\n", __FILE__, __LINE__, u_errorName(errorCode));
61 if(U_SUCCESS(errorCode)) {
62 Collator *col = Collator::createInstance(Locale::getEnglish(), errorCode);
[all...]
/external/swiftshader/src/OpenGL/libGLESv2/
H A Dmain.h36 void error(GLenum errorCode);
39 const T &error(GLenum errorCode, const T &returnValue) argument
41 error(errorCode);
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DXResourceBundleBase.java36 * @param errorCode Error code
40 abstract public String getMessageKey(int errorCode); argument
45 * @param errorCode Error code
49 abstract public String getWarningKey(int errorCode); argument
/external/icu/icu4c/source/common/
H A Dcpputils.h91 uprv_checkCanGetBuffer(const icu::UnicodeString &s, UErrorCode &errorCode) { argument
92 if(U_SUCCESS(errorCode) && s.isBogus()) {
93 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
H A Dunistr_titlecase_brkiter.cpp75 UErrorCode errorCode=U_ZERO_ERROR; local
76 bi=BreakIterator::createWordInstance(locale, errorCode);
77 if(U_FAILURE(errorCode)) {
/external/icu/icu4c/source/samples/props/
H A Dprops.cpp34 UErrorCode errorCode; local
37 errorCode=U_ZERO_ERROR;
38 u_charName(codePoint, U_UNICODE_CHAR_NAME, buffer, sizeof(buffer), &errorCode);
/external/icu/icu4c/source/test/intltest/
H A Dtstnrapi.cpp63 UErrorCode errorCode=U_ZERO_ERROR; local
64 Normalizer::compose(tel, TRUE, 0, nfkc, errorCode);
65 Normalizer::decompose(tel, TRUE, 0, nfkd, errorCode);
66 if(U_FAILURE(errorCode)) {
67 dataerrln("error in Normalizer::(de)compose(): %s", u_errorName(errorCode));
83 errorCode=U_ZERO_ERROR;
84 copy.setText(iter, errorCode);
85 if(U_FAILURE(errorCode)) {
86 errln("error Normalizer::setText() failed: %s", u_errorName(errorCode));
99 errorCode
[all...]
/external/libmojo/base/android/java/src/org/chromium/base/library_loader/
H A DProcessInitException.java14 * @param errorCode This will be one of the LoaderErrors error codes.
16 public ProcessInitException(int errorCode) { argument
17 mErrorCode = errorCode;
21 * @param errorCode This will be one of the LoaderErrors error codes.
24 public ProcessInitException(int errorCode, Throwable throwable) { argument
26 mErrorCode = errorCode;
/external/lzma/CPP/7zip/UI/Explorer/
H A DMyMessages.cpp29 void ShowErrorMessageDWORD(HWND window, DWORD errorCode) argument
31 ShowErrorMessage(window, NError::MyFormatMessage(errorCode));
/external/lzma/CPP/Windows/
H A DErrorMsg.cpp18 static bool MyFormatMessage(DWORD errorCode, UString &message) argument
26 NULL, errorCode, 0, (LPTSTR) &msgBuf, 0, NULL) == 0)
35 NULL, errorCode, 0, (LPWSTR) &msgBuf, 0, NULL) == 0)
43 UString MyFormatMessage(DWORD errorCode) argument
46 if (!MyFormatMessage(errorCode, message))
51 unsigned t = errorCode & 0xF;
52 errorCode >>= 4;
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPException.java19 /** the errorCode of the XMP toolkit */
20 private int errorCode; field in class:XMPException
26 * @param errorCode the error code
28 public XMPException(String message, int errorCode) argument
31 this.errorCode = errorCode;
38 * @param errorCode the error code
41 public XMPException(String message, int errorCode, Throwable t) argument
44 this.errorCode = errorCode;
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/exceptions/
H A DReplyErrorCodeException.java42 private int errorCode; field in class:ReplyErrorCodeException
47 * @param errorCode error code of received reply packet
49 public ReplyErrorCodeException(int errorCode) { argument
50 super("Error " + errorCode + ": " + JDWPConstants.Error.getName(errorCode));
51 this.errorCode = errorCode;
60 return errorCode;
/external/icu/icu4c/source/common/unicode/
H A Derrorcode.h68 * log_failure(u_errorName(errorCode));
69 * exit(errorCode);
87 ErrorCode() : errorCode(U_ZERO_ERROR) {}
91 operator UErrorCode & () { return errorCode; }
93 operator UErrorCode * () { return &errorCode; }
95 UBool isSuccess() const { return U_SUCCESS(errorCode); }
97 UBool isFailure() const { return U_FAILURE(errorCode); }
99 UErrorCode get() const { return errorCode; }
101 void set(UErrorCode value) { errorCode=value; }
127 UErrorCode errorCode; member in class:ErrorCode
[all...]
H A Dsimpleformatter.h40 * UErrorCode errorCode = U_ZERO_ERROR;
41 * SimpleFormatter fmt("{1} '{born}' in {0}", errorCode);
45 * fmt.format("england", "paul", result, errorCode);
66 * @param errorCode ICU error code in/out parameter.
71 SimpleFormatter(const UnicodeString& pattern, UErrorCode &errorCode) { argument
72 applyPattern(pattern, errorCode);
83 * @param errorCode ICU error code in/out parameter.
90 UErrorCode &errorCode) {
91 applyPatternMinMaxArguments(pattern, min, max, errorCode);
117 * @param errorCode IC
89 SimpleFormatter(const UnicodeString& pattern, int32_t min, int32_t max, UErrorCode &errorCode) argument
123 applyPattern(const UnicodeString &pattern, UErrorCode &errorCode) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationroot.cpp51 CollationRoot::load(UErrorCode &errorCode) { argument
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) { argument
76 umtx_initOnce(initOnce, CollationRoot::load, errorCode);
77 if(U_FAILURE(errorCode)) { retur
82 getRoot(UErrorCode &errorCode) argument
89 getData(UErrorCode &errorCode) argument
96 getSettings(UErrorCode &errorCode) argument
[all...]
H A Dstandardplural.cpp105 int32_t StandardPlural::indexFromString(const char *keyword, UErrorCode &errorCode) { argument
106 if (U_FAILURE(errorCode)) { return OTHER; }
111 errorCode = U_ILLEGAL_ARGUMENT_ERROR;
116 int32_t StandardPlural::indexFromString(const UnicodeString &keyword, UErrorCode &errorCode) { argument
117 if (U_FAILURE(errorCode)) { return OTHER; }
122 errorCode = U_ILLEGAL_ARGUMENT_ERROR;
H A Dstandardplural.h68 static Form fromString(const char *keyword, UErrorCode &errorCode) { argument
69 return static_cast<Form>(indexFromString(keyword, errorCode));
78 static Form fromString(const UnicodeString &keyword, UErrorCode &errorCode) { argument
79 return static_cast<Form>(indexFromString(keyword, errorCode));
118 static int32_t indexFromString(const char *keyword, UErrorCode &errorCode);
126 static int32_t indexFromString(const UnicodeString &keyword, UErrorCode &errorCode);
/external/icu/icu4c/source/samples/case/
H A Ducase.c30 UErrorCode errorCode = U_ZERO_ERROR; local
57 sizeof(upper)/sizeof(upper[0]), "tr", &errorCode);
58 if(U_FAILURE(errorCode) || buffer[length]!=0) {
60 u_errorName(errorCode));
70 sizeof(upper)/sizeof(upper[0]), "en", &errorCode);
71 if(U_FAILURE(errorCode) || buffer[length]!=0) {
73 u_errorName(errorCode));
82 &errorCode);
83 if(U_FAILURE(errorCode) || buffer[length]!=0) {
85 u_errorName(errorCode));
[all...]
/external/icu/icu4c/source/samples/udata/
H A Dwriter.c68 UErrorCode errorCode=U_ZERO_ERROR; local
81 U_COPYRIGHT_STRING, &errorCode);
88 if(U_FAILURE(errorCode)) {
89 fprintf(stderr, "Error: unable to create data memory, error %d\n", errorCode);
90 exit(errorCode);
101 dataLength=udata_finish(pData, &errorCode);
102 if(U_FAILURE(errorCode)) {
103 fprintf(stderr, "Error: error %d writing the output file\n", errorCode);
104 exit(errorCode);
/external/icu/icu4c/source/test/perf/ucnvavailperf/
H A Ducnvavailperf.cpp88 UErrorCode errorCode = U_ZERO_ERROR; local
92 u_setMemoryFunctions(NULL, my_alloc, my_realloc, my_free, &errorCode);
93 if(U_FAILURE(errorCode)) {
96 u_errorName(errorCode));
97 return errorCode;
109 ucnv_close(ucnv_open("ibm-1208", &errorCode));
110 if(U_FAILURE(errorCode)) {
113 u_errorName(errorCode));
114 return errorCode;
/external/icu/icu4c/source/tools/toolutil/
H A Dcollationinfo.cpp121 UErrorCode errorCode = U_ZERO_ERROR; local
122 UVector32 ranges(errorCode);
123 data.makeReorderRanges(codes, length, ranges, errorCode);
124 if(U_FAILURE(errorCode)) {
125 printf(" error building reorder ranges: %s\n", u_errorName(errorCode));
/external/mesa3d/src/glx/
H A Dglx_error.c38 __glXSendError(Display * dpy, int_fast8_t errorCode, uint_fast32_t resourceID, argument
53 error.errorCode = errorCode;
56 error.errorCode = glx_dpy->codes->first_error + errorCode;
77 error.errorCode = err->error_code;
/external/swiftshader/src/OpenGL/libEGL/
H A Dmain.h60 void error(EGLint errorCode);
63 const T &error(EGLint errorCode, const T &returnValue) argument
65 egl::error(errorCode);

Completed in 528 milliseconds

1234567891011>>