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

  /external/icu/icu4c/source/common/unicode/
errorcode.h 34 * Wrapper class for UErrorCode, with conversion operators for direct use
43 * - The constructor initializes the internal UErrorCode to U_ZERO_ERROR,
45 * - Same use in C APIs taking a UErrorCode * (pointer)
46 * and C++ taking UErrorCode & (reference) via conversion operators.
84 * Default constructor. Initializes its UErrorCode to U_ZERO_ERROR.
91 operator UErrorCode & () { return errorCode; }
93 operator UErrorCode * () { return &errorCode; }
98 /** Returns the UErrorCode value. @stable ICU 4.2 */
99 UErrorCode get() const { return errorCode; }
100 /** Sets the UErrorCode value. @stable ICU 4.2 *
    [all...]
utypes.h 23 * 08/11/98 stephen UErrorCode changed from typedef to enum
384 /* UErrorCode */
392 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
401 typedef enum UErrorCode {
429 * One more than the highest normal UErrorCode warning value.
671 } UErrorCode;
673 /* Use the following to determine if an UErrorCode represents */
682 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
688 inline UBool U_FAILURE(UErrorCode code) { return (UBool)(code>U_ZERO_ERROR); }
703 * Return a string for a UErrorCode value
    [all...]
  /external/icu/libandroidicu/include/unicode/
utypes.h 23 * 08/11/98 stephen UErrorCode changed from typedef to enum
384 /* UErrorCode */
392 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
401 typedef enum UErrorCode {
429 * One more than the highest normal UErrorCode warning value.
671 } UErrorCode;
673 /* Use the following to determine if an UErrorCode represents */
682 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
688 inline UBool U_FAILURE(UErrorCode code) { return (UBool)(code>U_ZERO_ERROR); }
703 * Return a string for a UErrorCode value
    [all...]

Completed in 266 milliseconds