Home | History | Annotate | Download | only in unicode

Lines Matching defs:UErrorCode

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 */
101 void set(UErrorCode value) { errorCode=value; }
102 /** Returns the UErrorCode value and resets it to U_ZERO_ERROR. @stable ICU 4.2 */
103 UErrorCode reset();
115 * Return a string for the UErrorCode value.
117 * in the UErrorCode enum.
124 * Internal UErrorCode, accessible to subclasses.
127 UErrorCode errorCode;