HomeSort by relevance Sort by last modified time
    Searched defs:errorCode (Results 276 - 300 of 313) sorted by null

<<111213

  /external/icu/icu4c/source/test/cintltst/
cucdtst.c 342 UErrorCode errorCode;
371 errorCode=U_ZERO_ERROR;
374 length=uset_getItem(aa, i, &start, &end, NULL, 0, &errorCode);
375 if(errorCode==U_INDEX_OUTOFBOUNDS_ERROR) {
378 if(U_FAILURE(errorCode)) {
380 a_name, b_name, i, u_errorName(errorCode));
507 UErrorCode errorCode;
511 errorCode=U_ZERO_ERROR;
512 digits=uset_openPattern(digitsPattern, 6, &errorCode);
513 decimalValues=uset_openPattern(decimalValuesPattern, 24, &errorCode);
    [all...]
ccapitst.c     [all...]
cloctst.c 653 UErrorCode errorCode=U_ZERO_ERROR;
667 errorCode=U_ZERO_ERROR;
668 length=uloc_getDisplayLanguage(NULL, NULL, buffer, LENGTHOF(buffer), &errorCode);
669 if(U_FAILURE(errorCode) || (length<=3 && buffer[0]<=0x7f)) {
671 log_data_err("unable to get a display string for the language of the default locale - %s (Are you missing data?)\n", u_errorName(errorCode));
675 errorCode=U_ZERO_ERROR;
676 length=uloc_getDisplayLanguage("qq", "rr", buffer, LENGTHOF(buffer), &errorCode);
677 if(errorCode!=U_USING_DEFAULT_WARNING || length!=2 || buffer[0]!=0x71 || buffer[1]!=0x71) {
678 log_err("error getting the display string for an unknown language - %s\n", u_errorName(errorCode));
682 errorCode=U_ZERO_ERROR
    [all...]
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...]
nucnvtst.c 181 UErrorCode errorCode=U_ZERO_ERROR;
186 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
187 if(errorCode==U_INDEX_OUTOFBOUNDS_ERROR) {
189 } else if(U_FAILURE(errorCode)) {
190 log_err("%s ucnv_getNextUChar() failed: %s\n", message, u_errorName(errorCode));
209 UErrorCode errorCode=U_ZERO_ERROR;
211 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
212 if(errorCode != expected){
213 log_err("FAIL: Expected:%s when %s-----Got:%s\n", myErrorName(expected), message, myErrorName(errorCode));
    [all...]
  /external/icu/icu4c/source/test/intltest/
apicoll.cpp     [all...]
caltest.cpp     [all...]
collationtest.cpp 17 #include "unicode/errorcode.h"
102 UBool readLine(UCHARBUF *f, IcuTestErrorCode &errorCode);
103 void parseString(int32_t &start, UnicodeString &prefix, UnicodeString &s, UErrorCode &errorCode);
104 Collation::Level parseRelationAndString(UnicodeString &s, IcuTestErrorCode &errorCode);
105 void parseAndSetAttribute(IcuTestErrorCode &errorCode);
106 void parseAndSetReorderCodes(int32_t start, IcuTestErrorCode &errorCode);
107 void buildTailoring(UCHARBUF *f, IcuTestErrorCode &errorCode);
108 void setRootCollator(IcuTestErrorCode &errorCode);
109 void setLocaleCollator(IcuTestErrorCode &errorCode);
111 UBool needsNormalization(const UnicodeString &s, UErrorCode &errorCode) const
    [all...]
intltest.cpp 1185 UErrorCode errorCode = U_ZERO_ERROR;
    [all...]
rbbitst.cpp     [all...]
usettest.cpp 56 UErrorCode errorCode=U_ZERO_ERROR;
57 utf8Cnv=ucnv_open("UTF-8", &errorCode);
    [all...]
  /external/icu/icu4c/source/test/perf/collperf2/
collperf2.cpp 758 UErrorCode errorCode = U_ZERO_ERROR;
760 return cc.coll.compare(leftString, rightString, errorCode);
782 UErrorCode errorCode = U_ZERO_ERROR;
783 call(&errorCode);
784 return U_SUCCESS(errorCode) ? ops : 0;
847 UErrorCode errorCode = U_ZERO_ERROR;
849 return cc.coll.compareUTF8(leftString, rightString, errorCode);
857 UErrorCode errorCode = U_ZERO_ERROR;
861 rightString.data(), rightString.length(), &errorCode);
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiditst.c 168 UErrorCode errorCode=U_ZERO_ERROR;
172 pBiDi=ubidi_openSized(MAXLEN, 0, &errorCode);
182 log_err("ubidi_openSized() returned NULL, errorCode %s\n", myErrorName(errorCode));
200 UErrorCode errorCode;
205 errorCode=U_ZERO_ERROR;
208 ubidi_setPara(pBiDi, string, -1, paraLevel, NULL, &errorCode);
209 if(U_SUCCESS(errorCode)) {
216 ubidi_setLine(pBiDi, lineStart, tests[testNumber].lineLimit, pLine, &errorCode);
217 if(U_SUCCESS(errorCode)) {
    [all...]
ccapitst.c     [all...]
cloctst.c 653 UErrorCode errorCode=U_ZERO_ERROR;
667 errorCode=U_ZERO_ERROR;
668 length=uloc_getDisplayLanguage(NULL, NULL, buffer, LENGTHOF(buffer), &errorCode);
669 if(U_FAILURE(errorCode) || (length<=3 && buffer[0]<=0x7f)) {
671 log_data_err("unable to get a display string for the language of the default locale - %s (Are you missing data?)\n", u_errorName(errorCode));
675 errorCode=U_ZERO_ERROR;
676 length=uloc_getDisplayLanguage("qq", "rr", buffer, LENGTHOF(buffer), &errorCode);
677 if(errorCode!=U_USING_DEFAULT_WARNING || length!=2 || buffer[0]!=0x71 || buffer[1]!=0x71) {
678 log_err("error getting the display string for an unknown language - %s\n", u_errorName(errorCode));
682 errorCode=U_ZERO_ERROR
    [all...]
nucnvtst.c 181 UErrorCode errorCode=U_ZERO_ERROR;
186 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
187 if(errorCode==U_INDEX_OUTOFBOUNDS_ERROR) {
189 } else if(U_FAILURE(errorCode)) {
190 log_err("%s ucnv_getNextUChar() failed: %s\n", message, u_errorName(errorCode));
209 UErrorCode errorCode=U_ZERO_ERROR;
211 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
212 if(errorCode != expected){
213 log_err("FAIL: Expected:%s when %s-----Got:%s\n", myErrorName(expected), message, myErrorName(errorCode));
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
rbbitst.cpp     [all...]
usettest.cpp 56 UErrorCode errorCode=U_ZERO_ERROR;
57 utf8Cnv=ucnv_open("UTF-8", &errorCode);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar 
org.eclipse.equinox.security_1.0.200.v20100503.jar 
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]
  /external/chromium_org/third_party/expat/files/lib/
xmlparse.c 612 #define errorCode (parser->m_errorCode)
889 errorCode = XML_ERROR_NONE;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol.cpp 319 void collIterate::appendOffset(int32_t offset, UErrorCode &errorCode) {
320 if(U_FAILURE(errorCode)) {
329 errorCode = U_MEMORY_ALLOCATION_ERROR;
898 //result->errorCode = *status;
    [all...]
  /external/expat/lib/
xmlparse.c 612 #define errorCode (parser->m_errorCode)
889 errorCode = XML_ERROR_NONE;
    [all...]

Completed in 2914 milliseconds

<<111213