ICU-3820 fix doxygen warnings.
X-SVN-Rev: 15881
This commit is contained in:
parent
bbf96aea2c
commit
60d2cebe21
@ -193,7 +193,7 @@ public:
|
|||||||
* X and Y position for each glyph, plus an extra X and Y for the
|
* X and Y position for each glyph, plus an extra X and Y for the
|
||||||
* advance of the last glyph.
|
* advance of the last glyph.
|
||||||
*
|
*
|
||||||
* @param glyphs - the destiniation position array
|
* @param positions - the destiniation position array
|
||||||
* @param success - set to an error code if the operation fails
|
* @param success - set to an error code if the operation fails
|
||||||
*
|
*
|
||||||
* @draft ICU 3.0
|
* @draft ICU 3.0
|
||||||
@ -482,7 +482,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* ICU "poor man's RTTI", returns a UClassID for the actual class.
|
* ICU "poor man's RTTI", returns a UClassID for the actual class.
|
||||||
*
|
*
|
||||||
* @darft ICU 3.0
|
* @draft ICU 3.0
|
||||||
*/
|
*/
|
||||||
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
|
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
|
||||||
|
|
||||||
|
@ -103,7 +103,7 @@ protected:
|
|||||||
*
|
*
|
||||||
* @param fontInstance - the font for the text
|
* @param fontInstance - the font for the text
|
||||||
* @param scriptCode - the script for the text
|
* @param scriptCode - the script for the text
|
||||||
* @param langaugeCode - the language for the text
|
* @param languageCode - the language for the text
|
||||||
*
|
*
|
||||||
* @see LEFontInstance
|
* @see LEFontInstance
|
||||||
* @see ScriptAndLanguageTags.h
|
* @see ScriptAndLanguageTags.h
|
||||||
@ -136,7 +136,7 @@ protected:
|
|||||||
* @param max - the number of characters in the input context
|
* @param max - the number of characters in the input context
|
||||||
* @param rightToLeft - TRUE if the characters are in a right to left directional run
|
* @param rightToLeft - TRUE if the characters are in a right to left directional run
|
||||||
* @param outChars - the output character array, if different from the input
|
* @param outChars - the output character array, if different from the input
|
||||||
* @param glyphStorege - the object that holds the per-glyph storage. The character index array may be set.
|
* @param glyphStorage - the object that holds the per-glyph storage. The character index array may be set.
|
||||||
* @param success - set to an error code if the operation fails
|
* @param success - set to an error code if the operation fails
|
||||||
*
|
*
|
||||||
* @return the output character count (input character count if no change)
|
* @return the output character count (input character count if no change)
|
||||||
@ -209,7 +209,7 @@ protected:
|
|||||||
*
|
*
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method gets a table from the font associated with
|
* This method gets a table from the font associated with
|
||||||
@ -257,7 +257,6 @@ protected:
|
|||||||
* glyphs to be zero, which is required for proper selection and highlighting.
|
* glyphs to be zero, which is required for proper selection and highlighting.
|
||||||
*
|
*
|
||||||
* @param glyphStorage - the object containing the per-glyph storage. The positions array will be modified.
|
* @param glyphStorage - the object containing the per-glyph storage. The positions array will be modified.
|
||||||
* @param reverse - <code>TRUE</code> if the glyph array has been reordered
|
|
||||||
* @param markFilter - used to identify mark glyphs
|
* @param markFilter - used to identify mark glyphs
|
||||||
* @param success - output parameter set to an error code if the operation fails
|
* @param success - output parameter set to an error code if the operation fails
|
||||||
*
|
*
|
||||||
@ -430,7 +429,7 @@ public:
|
|||||||
*
|
*
|
||||||
* @param fontInstance - the font of the text
|
* @param fontInstance - the font of the text
|
||||||
* @param scriptCode - the script of the text
|
* @param scriptCode - the script of the text
|
||||||
* @param langaugeCode - the language of the text
|
* @param languageCode - the language of the text
|
||||||
* @param success - output parameter set to an error code if the operation fails
|
* @param success - output parameter set to an error code if the operation fails
|
||||||
*
|
*
|
||||||
* @return a LayoutEngine which can layout text in the given font.
|
* @return a LayoutEngine which can layout text in the given font.
|
||||||
|
@ -183,7 +183,7 @@ public:
|
|||||||
* a table which maps indices into the glyph array to indices into
|
* a table which maps indices into the glyph array to indices into
|
||||||
* the original character array which was used to create the paragraph.
|
* the original character array which was used to create the paragraph.
|
||||||
*
|
*
|
||||||
* These objects are only created by <code>ParagraphLayout::Line<code> objects,
|
* These objects are only created by <code>ParagraphLayout::Line</code> objects,
|
||||||
* so their constructors and destructors are private.
|
* so their constructors and destructors are private.
|
||||||
*
|
*
|
||||||
* @see ParagraphLayout::Line
|
* @see ParagraphLayout::Line
|
||||||
|
@ -67,7 +67,7 @@ public:
|
|||||||
*
|
*
|
||||||
* @draft ICU 2.6
|
* @draft ICU 2.6
|
||||||
*/
|
*/
|
||||||
RunArray(le_int32 initalCapacity);
|
RunArray(le_int32 initialCapacity);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The destructor; virtual so that subclass destructors are invoked as well.
|
* The destructor; virtual so that subclass destructors are invoked as well.
|
||||||
|
Loading…
Reference in New Issue
Block a user