mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 17:01:16 +00:00
ICU-3866 Fix some doxygen warnings.
X-SVN-Rev: 16843
This commit is contained in:
parent
bf0be980df
commit
ecda2bc8c5
5 changed files with 18 additions and 21 deletions
icu4c/source
|
@ -369,15 +369,15 @@ typedef uint8_t UBiDiLevel;
|
|||
#define UBIDI_LEVEL_OVERRIDE 0x80
|
||||
|
||||
/**
|
||||
* @memo <code>UBiDiDirection</code> values indicate the text direction.
|
||||
* <code>UBiDiDirection</code> values indicate the text direction.
|
||||
* @stable ICU 2.0
|
||||
*/
|
||||
enum UBiDiDirection {
|
||||
/** @memo All left-to-right text. This is a 0 value. @stable ICU 2.0 */
|
||||
/** All left-to-right text. This is a 0 value. @stable ICU 2.0 */
|
||||
UBIDI_LTR,
|
||||
/** @memo All right-to-left text. This is a 1 value. @stable ICU 2.0 */
|
||||
/** All right-to-left text. This is a 1 value. @stable ICU 2.0 */
|
||||
UBIDI_RTL,
|
||||
/** @memo Mixed-directional text. @stable ICU 2.0 */
|
||||
/** Mixed-directional text. @stable ICU 2.0 */
|
||||
UBIDI_MIXED
|
||||
};
|
||||
|
||||
|
|
|
@ -173,7 +173,7 @@
|
|||
# define UCONFIG_NO_REGULAR_EXPRESSIONS 0
|
||||
#endif
|
||||
|
||||
/*
|
||||
/**
|
||||
* \def UCONFIG_NO_SERVICE
|
||||
* This switch turns off service registration.
|
||||
*
|
||||
|
|
|
@ -100,40 +100,40 @@ U_CDECL_BEGIN
|
|||
* @stable ICU 2.0
|
||||
*/
|
||||
typedef struct {
|
||||
/** @memo sizeof(UDataInfo)
|
||||
/** sizeof(UDataInfo)
|
||||
* @stable ICU 2.0 */
|
||||
uint16_t size;
|
||||
|
||||
/** @memo unused, set to 0
|
||||
/** unused, set to 0
|
||||
* @stable ICU 2.0*/
|
||||
uint16_t reservedWord;
|
||||
|
||||
/* platform data properties */
|
||||
/** @memo 0 for little-endian machine, 1 for big-endian
|
||||
/** 0 for little-endian machine, 1 for big-endian
|
||||
* @stable ICU 2.0 */
|
||||
uint8_t isBigEndian;
|
||||
|
||||
/** @memo see U_CHARSET_FAMILY values in utypes.h
|
||||
/** see U_CHARSET_FAMILY values in utypes.h
|
||||
* @stable ICU 2.0*/
|
||||
uint8_t charsetFamily;
|
||||
|
||||
/** @memo sizeof(UChar), one of { 1, 2, 4 }
|
||||
/** sizeof(UChar), one of { 1, 2, 4 }
|
||||
* @stable ICU 2.0*/
|
||||
uint8_t sizeofUChar;
|
||||
|
||||
/** @memo unused, set to 0
|
||||
/** unused, set to 0
|
||||
* @stable ICU 2.0*/
|
||||
uint8_t reservedByte;
|
||||
|
||||
/** @memo data format identifier
|
||||
/** data format identifier
|
||||
* @stable ICU 2.0*/
|
||||
uint8_t dataFormat[4];
|
||||
|
||||
/** @memo versions: [0] major [1] minor [2] milli [3] micro
|
||||
/** versions: [0] major [1] minor [2] milli [3] micro
|
||||
* @stable ICU 2.0*/
|
||||
uint8_t formatVersion[4];
|
||||
|
||||
/** @memo versions: [0] major [1] minor [2] milli [3] micro
|
||||
/** versions: [0] major [1] minor [2] milli [3] micro
|
||||
* @stable ICU 2.0*/
|
||||
uint8_t dataVersion[4];
|
||||
} UDataInfo;
|
||||
|
|
|
@ -487,12 +487,12 @@ class Collator;
|
|||
* public rule set names, in the same order as they were listed in the first arrray.</p>
|
||||
* <p>In the syntax, angle brackets '<', '>' are used to delimit the arrays, and comma ',' is used
|
||||
* to separate elements of an array. Whitespace is ignored, unless quoted.</p>
|
||||
* <p>For example:<blockquote>
|
||||
* <p>For example:<pre>
|
||||
* < < %foo, %bar, %baz >,
|
||||
* < en, Foo, Bar, Baz >,
|
||||
* < fr, 'le Foo', 'le Bar', 'le Baz' >
|
||||
* < zh, \u7532, \u4e59, \u4e19 > >
|
||||
* </blockquote></p>
|
||||
* < zh, \\u7532, \\u4e59, \\u4e19 > >
|
||||
* </pre></p>
|
||||
* @author Richard Gillam
|
||||
* @see NumberFormat
|
||||
* @see DecimalFormat
|
||||
|
|
|
@ -30,10 +30,7 @@
|
|||
* and the epoch (origin). We'll refer to these as time scales. For example:
|
||||
*
|
||||
* <table border="1" cellspacing="0" cellpadding="4">
|
||||
* <caption>
|
||||
* <h3>Table 1: Binary Time Scales</h3>
|
||||
*
|
||||
* </caption>
|
||||
* <caption>Table 1: Binary Time Scales</caption>
|
||||
* <tr>
|
||||
* <th align="left">Source</th>
|
||||
* <th align="left">Datatype</th>
|
||||
|
|
Loading…
Add table
Reference in a new issue