Home | History | Annotate | Download | only in unicode

Lines Matching refs:UErrorCode

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