HomeSort by relevance Sort by last modified time
    Searched defs:U_ZERO_ERROR (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/libcore/icu/
ICU.java 364 public static final int U_ZERO_ERROR = 0;
371 return error > U_ZERO_ERROR;
  /external/icu/icu4c/source/common/unicode/
utypes.h 509 U_ZERO_ERROR = 0, /**< No error, no warning. */
703 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
709 inline UBool U_FAILURE(UErrorCode code) { return (UBool)(code>U_ZERO_ERROR); }
715 # define U_SUCCESS(x) ((x)<=U_ZERO_ERROR)
720 # define U_FAILURE(x) ((x)>U_ZERO_ERROR)
  /external/icu/icu4c/source/test/cintltst/
nucnvtst.c 179 UErrorCode errorCode=U_ZERO_ERROR;
207 UErrorCode errorCode=U_ZERO_ERROR;
362 UErrorCode status = U_ZERO_ERROR;
426 status = U_ZERO_ERROR;
519 UErrorCode status = U_ZERO_ERROR;
584 status = U_ZERO_ERROR;
    [all...]

Completed in 95 milliseconds