mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-21249 Add new U_HIDE_INTERNAL_API guards
This commit is contained in:
parent
d533fd5719
commit
5de5cabfb0
3 changed files with 5 additions and 3 deletions
|
@ -1309,13 +1309,13 @@ class U_I18N_API Grouper : public UMemory {
|
|||
fGrouping2(grouping2),
|
||||
fMinGrouping(minGrouping),
|
||||
fStrategy(strategy) {}
|
||||
#endif // U_HIDE_INTERNAL_API
|
||||
|
||||
/** @internal */
|
||||
int16_t getPrimary() const;
|
||||
|
||||
/** @internal */
|
||||
int16_t getSecondary() const;
|
||||
#endif // U_HIDE_INTERNAL_API
|
||||
|
||||
private:
|
||||
/**
|
||||
|
@ -1379,10 +1379,10 @@ class U_I18N_API Padder : public UMemory {
|
|||
|
||||
/** @internal */
|
||||
static Padder codePoints(UChar32 cp, int32_t targetWidth, UNumberFormatPadPosition position);
|
||||
#endif // U_HIDE_INTERNAL_API
|
||||
|
||||
/** @internal */
|
||||
static Padder forProperties(const DecimalFormatProperties& properties);
|
||||
#endif // U_HIDE_INTERNAL_API
|
||||
|
||||
private:
|
||||
UChar32 fWidth; // -3 = error; -2 = bogus; -1 = no padding
|
||||
|
|
|
@ -587,7 +587,7 @@ private:
|
|||
*/
|
||||
static int32_t findSubMessage(
|
||||
const MessagePattern& pattern, int32_t partIndex,
|
||||
const PluralSelector& selector, void *context, double number, UErrorCode& ec); /**< @internal */
|
||||
const PluralSelector& selector, void *context, double number, UErrorCode& ec);
|
||||
|
||||
void parseType(const UnicodeString& source, const NFRule *rbnfLenientScanner,
|
||||
Formattable& result, FieldPosition& pos) const;
|
||||
|
|
|
@ -317,6 +317,7 @@ public:
|
|||
*/
|
||||
static TimeZone* U_EXPORT2 createDefault(void);
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
/**
|
||||
* If the locale contains the timezone keyword, creates a copy of that TimeZone.
|
||||
* Otherwise, create the default timezone.
|
||||
|
@ -327,6 +328,7 @@ public:
|
|||
* @internal
|
||||
*/
|
||||
static TimeZone* U_EXPORT2 forLocaleOrDefault(const Locale& locale);
|
||||
#endif /* U_HIDE_INTERNAL_API */
|
||||
|
||||
/**
|
||||
* Sets the default time zone (i.e., what's returned by createDefault()) to be the
|
||||
|
|
Loading…
Add table
Reference in a new issue