/external/icu/icu4c/source/test/cintltst/ |
cbiditst.c | 170 UErrorCode errorCode=U_ZERO_ERROR; 174 pBiDi=ubidi_openSized(MAXLEN, 0, &errorCode); 184 log_err("ubidi_openSized() returned NULL, errorCode %s\n", myErrorName(errorCode)); 202 UErrorCode errorCode; 207 errorCode=U_ZERO_ERROR; 210 ubidi_setPara(pBiDi, string, -1, paraLevel, NULL, &errorCode); 211 if(U_SUCCESS(errorCode)) { 218 ubidi_setLine(pBiDi, lineStart, tests[testNumber].lineLimit, pLine, &errorCode); 219 if(U_SUCCESS(errorCode)) { [all...] |
cldrtest.c | 75 UErrorCode errorCode = U_ZERO_ERROR; 84 errorCode = U_ZERO_ERROR; 87 subBundle = ures_getNextResource(currentBundle, NULL, &errorCode); 88 if (U_FAILURE(errorCode)) { 89 log_err("Can't open a resource for lnocale %s. Error: %s\n", locale, u_errorName(errorCode)); 95 subRootBundle = ures_getByKey(root, subBundleKey, NULL, &errorCode); 96 if (U_FAILURE(errorCode)) { 121 const int32_t *subRootBundleArr = ures_getIntVector(subRootBundle, &minSize, &errorCode); 122 const int32_t *subBundleArr = ures_getIntVector(subBundle, &subBundleSize, &errorCode); 157 UResourceBundle *subSubBundle = ures_getByIndex(subBundle, 0, NULL, &errorCode); [all...] |
sorttest.c | 38 UErrorCode errorCode; 41 errorCode=U_ZERO_ERROR; 42 uprv_sortArray(small, LENGTHOF(small), sizeof(small[0]), uprv_uint16Comparator, NULL, TRUE, &errorCode); 43 if(U_FAILURE(errorCode)) { 44 log_err("uprv_sortArray(small) failed - %s\n", u_errorName(errorCode)); 60 uprv_sortArray(medium, LENGTHOF(medium), sizeof(medium[0]), uprv_int32Comparator, NULL, TRUE, &errorCode); 61 if(U_FAILURE(errorCode)) { 62 log_err("uprv_sortArray(medium) failed - %s\n", u_errorName(errorCode)); 73 errorCode=U_ZERO_ERROR; 74 uprv_sortArray(large, LENGTHOF(large), sizeof(large[0]), uprv_uint32Comparator, NULL, FALSE, &errorCode); [all...] |
/external/icu/icu4c/source/i18n/ |
collationdatareader.cpp | 47 CollationTailoring &tailoring, UErrorCode &errorCode) { 48 if(U_FAILURE(errorCode)) { return; } 51 errorCode = U_ILLEGAL_ARGUMENT_ERROR; 57 errorCode = U_INVALID_FORMAT_ERROR; 61 errorCode = U_COLLATOR_VERSION_MISMATCH; 72 errorCode = U_ILLEGAL_ARGUMENT_ERROR; 78 errorCode = U_INVALID_FORMAT_ERROR; // Not enough indexes. 100 errorCode = U_INVALID_FORMAT_ERROR; 114 errorCode = U_INVALID_FORMAT_ERROR; 130 errorCode = U_INVALID_FORMAT_ERROR; // Reordering table without reordering codes [all...] |
collationdatawriter.h | 33 UErrorCode &errorCode); 37 UErrorCode &errorCode); 46 UErrorCode &errorCode);
|
/external/icu/icu4c/source/tools/toolutil/ |
ppucd.h | 96 PreparsedUCD(const char *filename, UErrorCode &errorCode); 108 LineType readLine(UErrorCode &errorCode); 129 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode); 135 * Returns U_SUCCESS(errorCode). 137 UBool getRangeForAlgNames(UChar32 &start, UChar32 &end, UErrorCode &errorCode); 148 UErrorCode &errorCode); 149 UChar32 parseCodePoint(const char *s, UErrorCode &errorCode); 150 UBool parseCodePointRange(const char *s, UChar32 &start, UChar32 &end, UErrorCode &errorCode); 151 void parseString(const char *s, UnicodeString &uni, UErrorCode &errorCode); 152 void parseScriptExtensions(const char *s, UnicodeSet &scx, UErrorCode &errorCode); [all...] |
/external/icu/icu4c/source/test/iotest/ |
iotest.cpp | 197 UErrorCode errorCode; 222 errorCode=U_ZERO_ERROR; 223 dataModule=TestDataModule::getTestDataModule("icuio", logger, errorCode); 224 if(U_SUCCESS(errorCode)) { 225 testData=dataModule->createTestData("printf", errorCode); 226 if(U_SUCCESS(errorCode)) { 227 for(i=0; testData->nextCase(testCase, errorCode); ++i) { 228 if(U_FAILURE(errorCode)) { 230 i, u_errorName(errorCode)); 231 errorCode=U_ZERO_ERROR [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyStream.java | 73 private ErrorCode errorCode = null; 107 if (errorCode != null) { 144 while (responseHeaders == null && errorCode == null) { 158 throw new IOException("stream was reset: " + errorCode); 170 public synchronized ErrorCode getErrorCode() { 171 return errorCode; 239 public void close(ErrorCode rstStatusCode) throws IOException { 250 public void closeLater(ErrorCode errorCode) { [all...] |
/external/icu/icu4c/source/common/unicode/ |
messagepattern.h | 362 * @param errorCode Standard ICU error code. Its input value must 368 MessagePattern(UErrorCode &errorCode); 373 * @param errorCode Standard ICU error code. Its input value must 379 MessagePattern(UMessagePatternApostropheMode mode, UErrorCode &errorCode); 388 * @param errorCode Standard ICU error code. Its input value must 399 MessagePattern(const UnicodeString &pattern, UParseError *parseError, UErrorCode &errorCode); 428 * @param errorCode Standard ICU error code. Its input value must 440 UParseError *parseError, UErrorCode &errorCode); 448 * @param errorCode Standard ICU error code. Its input value must 460 UParseError *parseError, UErrorCode &errorCode); [all...] |
/external/chromium_org/third_party/angle/src/libEGL/ |
main.h | 42 void error(EGLint errorCode); 45 const T &error(EGLint errorCode, const T &returnValue) 47 error(errorCode);
|
/external/chromium_org/third_party/icu/source/tools/gentest/ |
gentest.c | 65 UErrorCode errorCode = U_ZERO_ERROR; 96 createData(options[2].value, &errorCode); 98 return U_FAILURE(errorCode); 103 createData(const char* outputDirectory, UErrorCode *errorCode) { 112 U_COPYRIGHT_STRING, errorCode); 113 if(U_FAILURE(*errorCode)) { 114 fprintf(stderr, "gentest: unable to create data memory, %s\n", u_errorName(*errorCode)); 115 exit(*errorCode); 124 dataLength=udata_finish(pData, errorCode); 125 if(U_FAILURE(*errorCode)) { [all...] |
/external/icu/icu4c/source/samples/props/ |
props.cpp | 28 UErrorCode errorCode; 31 errorCode=U_ZERO_ERROR; 32 u_charName(codePoint, U_UNICODE_CHAR_NAME, buffer, sizeof(buffer), &errorCode);
|
/external/icu/icu4c/source/tools/gentest/ |
gentest.c | 65 UErrorCode errorCode = U_ZERO_ERROR; 96 createData(options[2].value, &errorCode); 98 return U_FAILURE(errorCode); 103 createData(const char* outputDirectory, UErrorCode *errorCode) { 112 U_COPYRIGHT_STRING, errorCode); 113 if(U_FAILURE(*errorCode)) { 114 fprintf(stderr, "gentest: unable to create data memory, %s\n", u_errorName(*errorCode)); 115 exit(*errorCode); 124 dataLength=udata_finish(pData, errorCode); 125 if(U_FAILURE(*errorCode)) { [all...] |
/frameworks/opt/net/voip/src/java/android/net/sip/ |
SipSessionAdapter.java | 49 public void onCallChangeFailed(ISipSession session, int errorCode, 53 public void onError(ISipSession session, int errorCode, String message) { 62 public void onRegistrationFailed(ISipSession session, int errorCode,
|
ISipSessionListener.aidl | 87 * @param errorCode error code defined in {@link SipErrorCode} 90 void onError(in ISipSession session, int errorCode, String errorMessage); 96 * @param errorCode error code defined in {@link SipErrorCode} 99 void onCallChangeFailed(in ISipSession session, int errorCode, 121 * @param errorCode error code defined in {@link SipErrorCode} 124 void onRegistrationFailed(in ISipSession session, int errorCode,
|
/frameworks/base/core/java/android/nfc/tech/ |
NdefFormatable.java | 126 int errorCode = tagService.formatNdef(serviceHandle, MifareClassic.KEY_DEFAULT); 127 switch (errorCode) { 145 errorCode = tagService.ndefWrite(serviceHandle, firstMessage); 146 switch (errorCode) { 161 errorCode = tagService.ndefMakeReadOnly(serviceHandle); 162 switch (errorCode) {
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
glx_error.h | 34 void __glXSendError(Display * dpy, int_fast8_t errorCode,
|
/external/icu/icu4c/source/common/ |
ucharstrieiterator.cpp | 23 UErrorCode &errorCode) 29 if(U_FAILURE(errorCode)) { 38 stack_=new UVector32(errorCode); 40 errorCode=U_MEMORY_ALLOCATION_ERROR; 45 UErrorCode &errorCode) 51 if(U_FAILURE(errorCode)) { 54 stack_=new UVector32(errorCode); 55 if(U_FAILURE(errorCode)) { 59 errorCode=U_MEMORY_ALLOCATION_ERROR; 99 UCharsTrie::Iterator::next(UErrorCode &errorCode) { [all...] |
bytestriebuilder.cpp | 38 void setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode); 90 CharString &strings, UErrorCode &errorCode) { 91 if(U_FAILURE(errorCode)) { 97 errorCode=U_INDEX_OUTOFBOUNDS_ERROR; 103 strings.append((char)(length>>8), errorCode); 105 strings.append((char)length, errorCode); 108 strings.append(s, errorCode); 127 BytesTrieBuilder::BytesTrieBuilder(UErrorCode &errorCode) 130 if(U_FAILURE(errorCode)) { 135 errorCode=U_MEMORY_ALLOCATION_ERROR [all...] |
/external/mesa3d/src/glx/ |
glx_error.h | 34 void __glXSendError(Display * dpy, int_fast8_t errorCode,
|
/libcore/luni/src/main/java/java/util/logging/ |
ErrorManager.java | 86 * @param errorCode 90 public void error(String message, Exception exception, int errorCode) { 97 System.err.println(this.getClass().getName() + ": " + FAILURES[errorCode]);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
ExecResultException.java | 29 protected ExecResultException(int errorCode, String[] output) { 30 mErrorCode = errorCode;
|
/external/chromium_org/third_party/icu/source/common/ |
unistr_case.cpp | 65 UErrorCode errorCode=U_ZERO_ERROR; 67 options|U_COMPARE_IGNORE_CASE, &errorCode); 134 UErrorCode errorCode; 137 errorCode = U_ZERO_ERROR; 141 locale, &errorCode); 145 locale, &errorCode); 148 errorCode=U_UNSUPPORTED_ERROR; 152 (UBreakIterator *)titleIter, locale, options, &errorCode); 158 &errorCode); 161 } while(errorCode==U_BUFFER_OVERFLOW_ERROR && cloneArrayIfNeeded(newLength, newLength, FALSE)) [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
uts46test.cpp | 57 IcuTestErrorCode errorCode(*this, "init/createUTS46Instance()"); 60 errorCode); 64 errorCode); 65 if(errorCode.logDataIfFailureAndReset("createUTS46Instance()")) { 110 UErrorCode errorCode=U_ZERO_ERROR; 115 trans->nameToASCII(input, result, info, errorCode); 116 if(U_FAILURE(errorCode) || info.hasErrors() || result!=expected) { 118 (long)info.getErrors(), result==expected, u_errorName(errorCode)); 120 errorCode=U_USELESS_COLLATOR_ERROR; 121 trans->nameToUnicode(input, result, info, errorCode); [all...] |
/external/icu/icu4c/source/test/intltest/ |
uts46test.cpp | 57 IcuTestErrorCode errorCode(*this, "init/createUTS46Instance()"); 61 trans=IDNA::createUTS46Instance(commonOptions, errorCode); 65 errorCode); 66 if(errorCode.logDataIfFailureAndReset("createUTS46Instance()")) { 111 UErrorCode errorCode=U_ZERO_ERROR; 116 trans->nameToASCII(input, result, info, errorCode); 117 if(U_FAILURE(errorCode) || info.hasErrors() || result!=expected) { 119 (long)info.getErrors(), result==expected, u_errorName(errorCode)); 121 errorCode=U_USELESS_COLLATOR_ERROR; 122 trans->nameToUnicode(input, result, info, errorCode); [all...] |