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

  /external/icu4c/common/unicode/
errorcode.h 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. @draft ICU 4.2 */
97 UErrorCode get() const { return errorCode; }
98 /** Sets the UErrorCode value. @draft ICU 4.2 *
    [all...]
utypes.h 21 * 08/11/98 stephen UErrorCode changed from typedef to enum
576 /* UErrorCode */
584 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
593 typedef enum UErrorCode {
617 U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
    [all...]
  /external/webkit/JavaScriptCore/icu/unicode/
utypes.h 21 * 08/11/98 stephen UErrorCode changed from typedef to enum
505 /* UErrorCode */
513 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
522 typedef enum UErrorCode {
546 U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
703 U_ERROR_LIMIT=U_IDNA_ERROR_LIMIT /**< This must always be the last value to indicate the limit for UErrorCode (last error code +1) */
704 } UErrorCode;
706 /* Use the following to determine if an UErrorCode represents */
715 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
721 inline UBool U_FAILURE(UErrorCode code) { return (UBool)(code>U_ZERO_ERROR);
    [all...]
  /external/webkit/JavaScriptGlue/icu/unicode/
utypes.h 21 * 08/11/98 stephen UErrorCode changed from typedef to enum
505 /* UErrorCode */
513 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
522 typedef enum UErrorCode {
546 U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
703 U_ERROR_LIMIT=U_IDNA_ERROR_LIMIT /**< This must always be the last value to indicate the limit for UErrorCode (last error code +1) */
704 } UErrorCode;
706 /* Use the following to determine if an UErrorCode represents */
715 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
721 inline UBool U_FAILURE(UErrorCode code) { return (UBool)(code>U_ZERO_ERROR);
    [all...]
  /external/webkit/WebCore/icu/unicode/
utypes.h 21 * 08/11/98 stephen UErrorCode changed from typedef to enum
505 /* UErrorCode */
513 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
522 typedef enum UErrorCode {
546 U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
703 U_ERROR_LIMIT=U_IDNA_ERROR_LIMIT /**< This must always be the last value to indicate the limit for UErrorCode (last error code +1) */
704 } UErrorCode;
706 /* Use the following to determine if an UErrorCode represents */
715 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
721 inline UBool U_FAILURE(UErrorCode code) { return (UBool)(code>U_ZERO_ERROR);
    [all...]
  /external/webkit/WebKit/mac/icu/unicode/
utypes.h 21 * 08/11/98 stephen UErrorCode changed from typedef to enum
505 /* UErrorCode */
513 * ICU functions that take a reference (C++) or a pointer (C) to a UErrorCode
522 typedef enum UErrorCode {
546 U_ERROR_WARNING_LIMIT, /**< This must always be the last warning value to indicate the limit for UErrorCode warnings (last warning code +1) */
703 U_ERROR_LIMIT=U_IDNA_ERROR_LIMIT /**< This must always be the last value to indicate the limit for UErrorCode (last error code +1) */
704 } UErrorCode;
706 /* Use the following to determine if an UErrorCode represents */
715 inline UBool U_SUCCESS(UErrorCode code) { return (UBool)(code<=U_ZERO_ERROR); }
721 inline UBool U_FAILURE(UErrorCode code) { return (UBool)(code>U_ZERO_ERROR);
    [all...]

Completed in 469 milliseconds