mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-5221 fix docs
X-SVN-Rev: 20186
This commit is contained in:
parent
b6f0e69e72
commit
40de6d9299
4 changed files with 26 additions and 17 deletions
|
@ -42,7 +42,9 @@ class StringThreadTest;
|
|||
#endif
|
||||
|
||||
#ifndef USTRING_H
|
||||
/* see ustring.h */
|
||||
/**
|
||||
* \ingroup ustring_ustrlen
|
||||
*/
|
||||
U_STABLE int32_t U_EXPORT2
|
||||
u_strlen(const UChar *s);
|
||||
#endif
|
||||
|
|
|
@ -70,6 +70,10 @@
|
|||
* Jitterbug 2145 and its icu mailing list proposal on 2002-sep-18.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \defgroup ustring_ustrlen
|
||||
*/
|
||||
/*@{*/
|
||||
/**
|
||||
* Determine the length of an array of UChar.
|
||||
*
|
||||
|
@ -79,6 +83,7 @@
|
|||
*/
|
||||
U_STABLE int32_t U_EXPORT2
|
||||
u_strlen(const UChar *s);
|
||||
/*@}*/
|
||||
|
||||
/**
|
||||
* Count Unicode code points in the length UChar code units of the string.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved.
|
||||
* Copyright (C) 1997-2006, International Business Machines Corporation and others. All Rights Reserved.
|
||||
********************************************************************************
|
||||
*
|
||||
* File MSGFMT.H
|
||||
|
@ -612,6 +612,7 @@ public:
|
|||
* cannot be parsed, the failure code is set.
|
||||
* @return the standard equivalent of the original pattern
|
||||
* @since ICU 3.4
|
||||
* @stable ICU 3.4
|
||||
*/
|
||||
static UnicodeString autoQuoteApostrophe(const UnicodeString& pattern,
|
||||
UErrorCode& status);
|
||||
|
|
|
@ -998,21 +998,22 @@ public:
|
|||
*/
|
||||
static void U_EXPORT2 registerInstance(Transliterator* adoptedObj);
|
||||
|
||||
/**
|
||||
* Registers an ID string as an alias of another ID string.
|
||||
* That is, after calling this function, <tt>createInstance(aliasID)</tt>
|
||||
* will return the same thing as <tt>createInstance(realID)</tt>.
|
||||
* This is generally used to create shorter, more mnemonic aliases
|
||||
* for long compound IDs.
|
||||
*
|
||||
* @param aliasID The new ID being registered.
|
||||
* @param realID The ID that the new ID is to be an alias for.
|
||||
* This can be a compound ID and can include filters and should
|
||||
* refer to transliterators that have already been registered with
|
||||
* the framework, although this isn't checked.
|
||||
*/
|
||||
static void U_EXPORT2 registerAlias(const UnicodeString& aliasID,
|
||||
const UnicodeString& realID);
|
||||
/**
|
||||
* Registers an ID string as an alias of another ID string.
|
||||
* That is, after calling this function, <tt>createInstance(aliasID)</tt>
|
||||
* will return the same thing as <tt>createInstance(realID)</tt>.
|
||||
* This is generally used to create shorter, more mnemonic aliases
|
||||
* for long compound IDs.
|
||||
*
|
||||
* @param aliasID The new ID being registered.
|
||||
* @param realID The ID that the new ID is to be an alias for.
|
||||
* This can be a compound ID and can include filters and should
|
||||
* refer to transliterators that have already been registered with
|
||||
* the framework, although this isn't checked.
|
||||
* @draft ICU 3.6
|
||||
*/
|
||||
static void U_EXPORT2 registerAlias(const UnicodeString& aliasID,
|
||||
const UnicodeString& realID);
|
||||
|
||||
protected:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue