Home | History | Annotate | Download | only in unicode

Lines Matching defs:U_ZERO_ERROR

648     U_ZERO_ERROR              =  0,     /**< No error, no warning. */
835 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
841 inline UBool U_FAILURE(UErrorCode code) { return (UBool)(code>U_ZERO_ERROR); }
847 # define U_SUCCESS(x) ((x)<=U_ZERO_ERROR)
852 # define U_FAILURE(x) ((x)>U_ZERO_ERROR)