mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 15:05:53 +00:00
ICU-9581 Sync U_INTERNAL/U_DRAFT/U_STABLE tags to @internal/@draft/@stable
X-SVN-Rev: 32648
This commit is contained in:
parent
8fe6eb0b2c
commit
9622e41050
6 changed files with 36 additions and 36 deletions
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
******************************************************************************
|
||||
*
|
||||
* Copyright (C) 2009-2011, International Business Machines
|
||||
* Copyright (C) 2009-2012, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*
|
||||
******************************************************************************
|
||||
|
@ -194,7 +194,7 @@ typedef UPlugTokenReturn (U_EXPORT2 UPlugEntrypoint) (
|
|||
* @param dontUnload set true if this plugin can't be unloaded
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
uplug_setPlugNoUnload(UPlugData *plug, UBool dontUnload);
|
||||
|
||||
/**
|
||||
|
@ -203,7 +203,7 @@ uplug_setPlugNoUnload(UPlugData *plug, UBool dontUnload);
|
|||
* @param level the level of this plugin
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
uplug_setPlugLevel(UPlugData *plug, UPlugLevel level);
|
||||
|
||||
/**
|
||||
|
@ -212,7 +212,7 @@ uplug_setPlugLevel(UPlugData *plug, UPlugLevel level);
|
|||
* @return the level of this plugin
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI UPlugLevel U_EXPORT2
|
||||
U_INTERNAL UPlugLevel U_EXPORT2
|
||||
uplug_getPlugLevel(UPlugData *plug);
|
||||
|
||||
/**
|
||||
|
@ -222,7 +222,7 @@ uplug_getPlugLevel(UPlugData *plug);
|
|||
* @return the lowest level of plug which can currently load
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI UPlugLevel U_EXPORT2
|
||||
U_INTERNAL UPlugLevel U_EXPORT2
|
||||
uplug_getCurrentLevel(void);
|
||||
|
||||
|
||||
|
@ -231,7 +231,7 @@ uplug_getCurrentLevel(void);
|
|||
* @return The error code of this plugin's load attempt.
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI UErrorCode U_EXPORT2
|
||||
U_INTERNAL UErrorCode U_EXPORT2
|
||||
uplug_getPlugLoadStatus(UPlugData *plug);
|
||||
|
||||
/**
|
||||
|
@ -240,7 +240,7 @@ uplug_getPlugLoadStatus(UPlugData *plug);
|
|||
* @param name the name of this plugin. The first UPLUG_NAME_MAX characters willi be copied into a new buffer.
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
uplug_setPlugName(UPlugData *plug, const char *name);
|
||||
|
||||
/**
|
||||
|
@ -249,7 +249,7 @@ uplug_setPlugName(UPlugData *plug, const char *name);
|
|||
* @return the name of this plugin
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI const char * U_EXPORT2
|
||||
U_INTERNAL const char * U_EXPORT2
|
||||
uplug_getPlugName(UPlugData *plug);
|
||||
|
||||
/**
|
||||
|
@ -258,7 +258,7 @@ uplug_getPlugName(UPlugData *plug);
|
|||
* @return the symbol name, or NULL
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI const char * U_EXPORT2
|
||||
U_INTERNAL const char * U_EXPORT2
|
||||
uplug_getSymbolName(UPlugData *plug);
|
||||
|
||||
/**
|
||||
|
@ -268,7 +268,7 @@ uplug_getSymbolName(UPlugData *plug);
|
|||
* @return the library name, or NULL
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI const char * U_EXPORT2
|
||||
U_INTERNAL const char * U_EXPORT2
|
||||
uplug_getLibraryName(UPlugData *plug, UErrorCode *status);
|
||||
|
||||
/**
|
||||
|
@ -278,7 +278,7 @@ uplug_getLibraryName(UPlugData *plug, UErrorCode *status);
|
|||
* @return the library, or NULL
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI void * U_EXPORT2
|
||||
U_INTERNAL void * U_EXPORT2
|
||||
uplug_getLibrary(UPlugData *plug);
|
||||
|
||||
/**
|
||||
|
@ -287,7 +287,7 @@ uplug_getLibrary(UPlugData *plug);
|
|||
* @return the context, or NULL if not set
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI void * U_EXPORT2
|
||||
U_INTERNAL void * U_EXPORT2
|
||||
uplug_getContext(UPlugData *plug);
|
||||
|
||||
/**
|
||||
|
@ -296,7 +296,7 @@ uplug_getContext(UPlugData *plug);
|
|||
* @param context new context to set
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
uplug_setContext(UPlugData *plug, void *context);
|
||||
|
||||
|
||||
|
@ -307,7 +307,7 @@ uplug_setContext(UPlugData *plug, void *context);
|
|||
* @return configuration string, or else null.
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI const char * U_EXPORT2
|
||||
U_INTERNAL const char * U_EXPORT2
|
||||
uplug_getConfiguration(UPlugData *plug);
|
||||
|
||||
/**
|
||||
|
@ -325,7 +325,7 @@ uplug_getConfiguration(UPlugData *plug);
|
|||
* @return the next oldest plugin, or NULL if no more.
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI UPlugData* U_EXPORT2
|
||||
U_INTERNAL UPlugData* U_EXPORT2
|
||||
uplug_nextPlug(UPlugData *prior);
|
||||
|
||||
/**
|
||||
|
@ -340,7 +340,7 @@ uplug_nextPlug(UPlugData *prior);
|
|||
* @return the new UPlugData associated with this plugin, or NULL if error.
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI UPlugData* U_EXPORT2
|
||||
U_INTERNAL UPlugData* U_EXPORT2
|
||||
uplug_loadPlugFromEntrypoint(UPlugEntrypoint *entrypoint, const char *config, UErrorCode *status);
|
||||
|
||||
|
||||
|
@ -354,7 +354,7 @@ uplug_loadPlugFromEntrypoint(UPlugEntrypoint *entrypoint, const char *config, UE
|
|||
* @return the new UPlugData associated with this plugin, or NULL if error.
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI UPlugData* U_EXPORT2
|
||||
U_INTERNAL UPlugData* U_EXPORT2
|
||||
uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status);
|
||||
|
||||
/**
|
||||
|
@ -364,7 +364,7 @@ uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *conf
|
|||
* @param status error result
|
||||
* @internal ICU 4.4 Technology Preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
uplug_removePlug(UPlugData *plug, UErrorCode *status);
|
||||
#endif /* U_HIDE_INTERNAL_API */
|
||||
|
||||
|
|
|
@ -166,7 +166,7 @@ uenum_reset(UEnumeration* en, UErrorCode* status);
|
|||
* @return a UEnumeration wrapping the adopted StringEnumeration.
|
||||
* @stable ICU 4.2
|
||||
*/
|
||||
U_CAPI UEnumeration* U_EXPORT2
|
||||
U_STABLE UEnumeration* U_EXPORT2
|
||||
uenum_openFromStringEnumeration(icu::StringEnumeration* adopted, UErrorCode* ec);
|
||||
|
||||
#endif
|
||||
|
@ -183,7 +183,7 @@ uenum_openFromStringEnumeration(icu::StringEnumeration* adopted, UErrorCode* ec)
|
|||
* @see uenum_close
|
||||
* @draft ICU 50
|
||||
*/
|
||||
U_CAPI UEnumeration* U_EXPORT2
|
||||
U_DRAFT UEnumeration* U_EXPORT2
|
||||
uenum_openUCharStringsEnumeration(const UChar* const strings[], int32_t count,
|
||||
UErrorCode* ec);
|
||||
#endif
|
||||
|
@ -201,7 +201,7 @@ uenum_openUCharStringsEnumeration(const UChar* const strings[], int32_t count,
|
|||
* @see uenum_close
|
||||
* @draft ICU 50
|
||||
*/
|
||||
U_CAPI UEnumeration* U_EXPORT2
|
||||
U_DRAFT UEnumeration* U_EXPORT2
|
||||
uenum_openCharStringsEnumeration(const char* const strings[], int32_t count,
|
||||
UErrorCode* ec);
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 1996-2011, International Business Machines Corporation and Others.
|
||||
* Copyright (C) 1996-2012, International Business Machines Corporation and Others.
|
||||
* All rights reserved.
|
||||
*/
|
||||
|
||||
|
@ -52,7 +52,7 @@ typedef void UCD;
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI UCD * U_EXPORT2
|
||||
U_INTERNAL UCD * U_EXPORT2
|
||||
ucd_open(UCollator *coll, UErrorCode *status);
|
||||
|
||||
/**
|
||||
|
@ -62,7 +62,7 @@ ucd_open(UCollator *coll, UErrorCode *status);
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
ucd_close(UCD *ucd);
|
||||
|
||||
/**
|
||||
|
@ -78,7 +78,7 @@ ucd_close(UCD *ucd);
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI UCollator * U_EXPORT2
|
||||
U_INTERNAL UCollator * U_EXPORT2
|
||||
ucd_getCollator(UCD *ucd);
|
||||
|
||||
/**
|
||||
|
@ -93,7 +93,7 @@ ucd_getCollator(UCD *ucd);
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
ucd_freeCache();
|
||||
|
||||
/**
|
||||
|
@ -103,7 +103,7 @@ ucd_freeCache();
|
|||
*
|
||||
* @internal 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
ucd_flushCache();
|
||||
|
||||
/**
|
||||
|
@ -204,7 +204,7 @@ typedef struct BMS BMS; /**< @see BMS */
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI BMS * U_EXPORT2
|
||||
U_INTERNAL BMS * U_EXPORT2
|
||||
bms_open(UCD *ucd,
|
||||
const UChar *pattern, int32_t patternLength,
|
||||
const UChar *target, int32_t targetLength,
|
||||
|
@ -217,7 +217,7 @@ bms_open(UCD *ucd,
|
|||
* @param bms - the <code>BMS</code> object to close.
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
bms_close(BMS *bms);
|
||||
|
||||
/**
|
||||
|
@ -228,7 +228,7 @@ bms_close(BMS *bms);
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI UBool U_EXPORT2
|
||||
U_INTERNAL UBool U_EXPORT2
|
||||
bms_empty(BMS *bms);
|
||||
|
||||
/**
|
||||
|
@ -242,7 +242,7 @@ bms_empty(BMS *bms);
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI UCD * U_EXPORT2
|
||||
U_INTERNAL UCD * U_EXPORT2
|
||||
bms_getData(BMS *bms);
|
||||
|
||||
/**
|
||||
|
@ -257,7 +257,7 @@ bms_getData(BMS *bms);
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI UBool U_EXPORT2
|
||||
U_INTERNAL UBool U_EXPORT2
|
||||
bms_search(BMS *bms, int32_t offset, int32_t *start, int32_t *end);
|
||||
|
||||
/**
|
||||
|
@ -270,7 +270,7 @@ bms_search(BMS *bms, int32_t offset, int32_t *start, int32_t *end);
|
|||
*
|
||||
* @internal ICU 4.0.1 technology preview
|
||||
*/
|
||||
U_CAPI void U_EXPORT2
|
||||
U_INTERNAL void U_EXPORT2
|
||||
bms_setTargetString(BMS *bms, const UChar *target, int32_t targetLength, UErrorCode *status);
|
||||
|
||||
#endif /* U_HIDE_INTERNAL_API */
|
||||
|
|
|
@ -564,7 +564,7 @@ typedef enum USystemTimeZoneType USystemTimeZoneType;
|
|||
* *ec will indicate the error.
|
||||
* @stable ICU 4.8
|
||||
*/
|
||||
U_DRAFT UEnumeration* U_EXPORT2
|
||||
U_STABLE UEnumeration* U_EXPORT2
|
||||
ucal_openTimeZoneIDEnumeration(USystemTimeZoneType zoneType, const char* region,
|
||||
const int32_t* rawOffset, UErrorCode* ec);
|
||||
|
||||
|
|
|
@ -716,7 +716,7 @@ ucol_getReorderCodes(const UCollator* coll,
|
|||
* @see UColReorderCode
|
||||
* @stable ICU 4.8
|
||||
*/
|
||||
U_DRAFT void U_EXPORT2
|
||||
U_STABLE void U_EXPORT2
|
||||
ucol_setReorderCodes(UCollator* coll,
|
||||
const int32_t* reorderCodes,
|
||||
int32_t reorderCodesLength,
|
||||
|
|
|
@ -269,7 +269,7 @@ ucurr_openISOCurrencies(uint32_t currType, UErrorCode *pErrorCode);
|
|||
*
|
||||
* @stable ICU 4.8
|
||||
*/
|
||||
U_DRAFT UBool U_EXPORT2
|
||||
U_STABLE UBool U_EXPORT2
|
||||
ucurr_isAvailable(const UChar* isoCode,
|
||||
UDate from,
|
||||
UDate to,
|
||||
|
|
Loading…
Add table
Reference in a new issue