ICU-2023 Fix some doxygen documentation problems.
X-SVN-Rev: 9359
This commit is contained in:
parent
b84610b9d9
commit
a588120c7e
@ -203,7 +203,7 @@ protected:
|
||||
* for the old and the new iteration semantics.</li>
|
||||
* <li>There are new functions for setting and moving the current position
|
||||
* without returning a character, for efficiency.</li>
|
||||
* <ol>
|
||||
* </ol>
|
||||
*
|
||||
* See ForwardCharacterIterator for examples for using the new forward iteration
|
||||
* functions. For backward iteration, there is also a hasPrevious() function
|
||||
|
@ -112,11 +112,11 @@
|
||||
* // render runs on a line sequentially, always from left to right
|
||||
*
|
||||
* // prepare rendering a new line
|
||||
*void startLine(UBiDiDirection textDirection, int lineWidth);
|
||||
* void startLine(UBiDiDirection textDirection, int lineWidth);
|
||||
*
|
||||
* // render a run of text and advance to the right by the run width
|
||||
* // the text[start..limit-1] is always in logical order
|
||||
*void renderRun(const UChar *text, int32_t start, int32_t limit,
|
||||
* void renderRun(const UChar *text, int32_t start, int32_t limit,
|
||||
* UBiDiDirection textDirection, Style style);
|
||||
*
|
||||
* // We could compute a cross-product
|
||||
@ -129,7 +129,7 @@
|
||||
*
|
||||
* // render a directional run with
|
||||
* // (possibly) multiple style runs intersecting with it
|
||||
*void renderDirectionalRun(const UChar *text,
|
||||
* void renderDirectionalRun(const UChar *text,
|
||||
* int32_t start, int32_t limit,
|
||||
* UBiDiDirection direction,
|
||||
* const StyleRun *styleRuns, int styleRunCount) {
|
||||
@ -313,6 +313,7 @@
|
||||
* <li><code>paraLevel</code> can be set to the
|
||||
* pesudo-level values <code>UBIDI_DEFAULT_LTR</code>
|
||||
* and <code>UBIDI_DEFAULT_RTL</code>.</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see ubidi_setPara
|
||||
*
|
||||
@ -1161,11 +1162,8 @@ ubidi_writeReverse(const UChar *src, int32_t srcLength,
|
||||
UChar *dest, int32_t destSize,
|
||||
uint16_t options,
|
||||
UErrorCode *pErrorCode);
|
||||
|
||||
/*#define BIDI_SAMPLE_CODE*/
|
||||
/*@}*/
|
||||
|
||||
/*@}*/
|
||||
|
||||
/*@}*/
|
||||
|
||||
#endif
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
**********************************************************************
|
||||
* Copyright (C) 1998-2001, International Business Machines
|
||||
* Copyright (C) 1998-2002, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
*
|
||||
@ -3999,16 +3999,16 @@ inline const UChar*
|
||||
UnicodeString::getArrayStart() const
|
||||
{ return fArray; }
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
//========================================
|
||||
// Static members
|
||||
//========================================
|
||||
U_NAMESPACE_BEGIN
|
||||
|
||||
//========================================
|
||||
// class UCharReference
|
||||
//========================================
|
||||
|
||||
/**
|
||||
* A proxy class to allow the UnicodeString::operator[] function to
|
||||
* work as a readable and a writable operator.
|
||||
* @stable
|
||||
*/
|
||||
class U_COMMON_API UCharReference : public UObject {
|
||||
public:
|
||||
UCharReference();
|
||||
|
@ -75,7 +75,7 @@ U_NAMESPACE_BEGIN
|
||||
* contracting sequence except the first will fail. Vice versa if a
|
||||
* preceding pattern match is to be found, a invalid starting point
|
||||
* would be any character within a contracting sequence except the last.
|
||||
* <\ul>
|
||||
* </ul>
|
||||
* <p>
|
||||
* A breakiterator can be used if only matches at logical breaks are desired.
|
||||
* Using a breakiterator will only give you results that exactly matches the
|
||||
|
Loading…
Reference in New Issue
Block a user