mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 22:15:31 +00:00
ICU-7522 uconfigtest failures for 4.4
X-SVN-Rev: 27806
This commit is contained in:
parent
a75b85c03e
commit
78f9faec0a
3 changed files with 12 additions and 0 deletions
|
@ -241,6 +241,8 @@ Locale::getDisplayName(const Locale &displayLocale,
|
|||
return result;
|
||||
}
|
||||
|
||||
#if ! UCONFIG_NO_BREAK_ITERATION
|
||||
|
||||
// -------------------------------------
|
||||
// Gets the objectLocale display name in the default locale language.
|
||||
UnicodeString& U_EXPORT2
|
||||
|
@ -260,6 +262,9 @@ BreakIterator::getDisplayName(const Locale& objectLocale,
|
|||
return objectLocale.getDisplayName(displayLocale, name);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
// C API ------------------------------------------------------------------- ***
|
||||
|
|
|
@ -3092,6 +3092,7 @@ u_charAge(UChar32 c, UVersionInfo versionArray);
|
|||
U_STABLE void U_EXPORT2
|
||||
u_getUnicodeVersion(UVersionInfo versionArray);
|
||||
|
||||
#if !UCONFIG_NO_NORMALIZATION
|
||||
/**
|
||||
* Get the FC_NFKC_Closure property string for a character.
|
||||
* See Unicode Standard Annex #15 for details, search for "FC_NFKC_Closure"
|
||||
|
@ -3116,6 +3117,9 @@ u_getUnicodeVersion(UVersionInfo versionArray);
|
|||
U_STABLE int32_t U_EXPORT2
|
||||
u_getFC_NFKC_Closure(UChar32 c, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
U_CDECL_END
|
||||
|
||||
#endif /*_UCHAR*/
|
||||
|
|
|
@ -589,6 +589,8 @@ uprops_getSource(UProperty which) {
|
|||
}
|
||||
}
|
||||
|
||||
#if !UCONFIG_NO_NORMALIZATION
|
||||
|
||||
U_CAPI int32_t U_EXPORT2
|
||||
u_getFC_NFKC_Closure(UChar32 c, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) {
|
||||
if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) {
|
||||
|
@ -637,6 +639,7 @@ u_getFC_NFKC_Closure(UChar32 c, UChar *dest, int32_t destCapacity, UErrorCode *p
|
|||
return kc2.extract(dest, destCapacity, *pErrorCode);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
/*----------------------------------------------------------------
|
||||
* Inclusions list
|
||||
|
|
Loading…
Add table
Reference in a new issue