Searched defs:UErrorCode (Results 1 - 4 of 4) sorted by last modified time

/external/icu/icu4c/source/common/unicode/
H A Derrorcode.h32 * 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 valu
[all...]
H A Dutypes.h21 * 08/11/98 stephen UErrorCode changed from typedef to enum
463 /* UErrorCode */
471 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
480 typedef enum UErrorCode { enum
506 U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
685 U_ERROR_LIMIT=U_PLUGIN_ERROR_LIMIT /**< This must always be the last value to indicate the limit for UErrorCode (last error code +1) */
686 } UErrorCode; typedef in typeref:enum:UErrorCode
688 /* Use the following to determine if an UErrorCode represents */
697 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
703 inline UBool U_FAILURE(UErrorCode cod
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Derrorcode.h32 * Wrapper class for UErrorCode, with conversion operators for direct use
41 * - The constructor initializes the internal UErrorCode to U_ZERO_ERROR,
43 * - Same use in C APIs taking a UErrorCode * (pointer)
44 * and C++ taking UErrorCode & (reference) via conversion operators.
82 * Default constructor. Initializes its UErrorCode to U_ZERO_ERROR.
89 operator UErrorCode & () { return errorCode; }
91 operator UErrorCode * () { return &errorCode; }
96 /** Returns the UErrorCode value. @stable ICU 4.2 */
97 UErrorCode get() const { return errorCode; }
98 /** Sets the UErrorCode valu
[all...]
H A Dutypes.h21 * 08/11/98 stephen UErrorCode changed from typedef to enum
459 /* UErrorCode */
467 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
476 typedef enum UErrorCode { enum
502 U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
681 U_ERROR_LIMIT=U_PLUGIN_ERROR_LIMIT /**< This must always be the last value to indicate the limit for UErrorCode (last error code +1) */
682 } UErrorCode; typedef in typeref:enum:UErrorCode
684 /* Use the following to determine if an UErrorCode represents */
693 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
699 inline UBool U_FAILURE(UErrorCode cod
[all...]

Completed in 632 milliseconds