mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-8755 interim fix. MessagePattern still needs fixing.
X-SVN-Rev: 30505
This commit is contained in:
parent
177ea3d09f
commit
1e1f8509d8
18 changed files with 61 additions and 8 deletions
|
@ -88,7 +88,12 @@ converterData[UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES]={
|
|||
|
||||
&_ASCIIData,
|
||||
&_UTF7Data, &_Bocu1Data, &_UTF16Data, &_UTF32Data, &_CESU8Data, &_IMAPData,
|
||||
|
||||
#if UCONFIG_NO_LEGACY_CONVERSION
|
||||
NULL,
|
||||
#else
|
||||
&_CompoundTextData
|
||||
#endif
|
||||
};
|
||||
|
||||
/* Please keep this in binary sorted order for getAlgorithmicTypeFromName.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* spam */
|
||||
|
||||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 1996-2011, International Business Machines Corporation and
|
||||
|
|
|
@ -928,6 +928,14 @@ private:
|
|||
|
||||
U_NAMESPACE_END
|
||||
|
||||
#else
|
||||
U_NAMESPACE_BEGIN
|
||||
class MessagePattern; /* forward reference, though draft API. */
|
||||
enum UMessagePatternApostropheMode{};
|
||||
typedef enum UMessagePatternApostropheMode UMessagePatternApostropheMode;
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
#endif /* U_HIDE_DRAFT_API */
|
||||
#endif // !UCONFIG_NO_FORMATTING
|
||||
|
||||
|
|
|
@ -139,6 +139,7 @@ private:
|
|||
virtual int32_t getMinLinearMatch() const { return UCharsTrie::kMinLinearMatch; }
|
||||
virtual int32_t getMaxLinearMatchLength() const { return UCharsTrie::kMaxLinearMatchLength; }
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
class UCTLinearMatchNode : public LinearMatchNode {
|
||||
public:
|
||||
UCTLinearMatchNode(const UChar *units, int32_t len, Node *nextNode);
|
||||
|
@ -147,6 +148,7 @@ private:
|
|||
private:
|
||||
const UChar *s;
|
||||
};
|
||||
#endif
|
||||
|
||||
virtual Node *createLinearMatchNode(int32_t i, int32_t unitIndex, int32_t length,
|
||||
Node *nextNode) const;
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
|
||||
#include "unicode/utypes.h"
|
||||
|
||||
#if !UCONFIG_NO_COLLATION && !UCONFIG_NO_NORMALIZATION
|
||||
|
||||
#include "unicode/alphaindex.h"
|
||||
#include "unicode/coll.h"
|
||||
#include "unicode/normalizer2.h"
|
||||
|
@ -1309,3 +1311,5 @@ AlphabeticIndex::Bucket::~Bucket() {
|
|||
}
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
#endif
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
#include "unicode/uobject.h"
|
||||
#include "unicode/locid.h"
|
||||
|
||||
|
||||
#if !UCONFIG_NO_COLLATION && !UCONFIG_NO_NORMALIZATION
|
||||
|
||||
/**
|
||||
* \file
|
||||
* \brief C++ API: Index Characters
|
||||
|
@ -620,10 +623,9 @@ private:
|
|||
|
||||
public:
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
/**
|
||||
* Language Types. For internal ICU use only.
|
||||
* @internal
|
||||
* @internal (but not hidden with U_HIDE_INTERNAL_API because it is used in public API)
|
||||
*/
|
||||
enum ELangType {
|
||||
/** @internal */
|
||||
|
@ -639,7 +641,6 @@ private:
|
|||
* @internal
|
||||
*/
|
||||
static ELangType langTypeFromLocale(const Locale &loc);
|
||||
#endif /* U_HIDE_INTERNAL_API */
|
||||
|
||||
|
||||
private:
|
||||
|
@ -725,4 +726,5 @@ private:
|
|||
U_NAMESPACE_END
|
||||
|
||||
#endif /* U_HIDE_DRAFT_API */
|
||||
#endif /* UCONFIG_NO_COLLATION / UCONFIG_NO_NORMALIZATION */
|
||||
#endif
|
||||
|
|
|
@ -2256,11 +2256,13 @@ Calendar::roll(UCalendarDateFields field, UBool up, UErrorCode& status)
|
|||
roll(field, (int32_t)(up ? +1 : -1), status);
|
||||
}
|
||||
|
||||
#ifndef U_HIDE_DEPRECATED_API
|
||||
inline void
|
||||
Calendar::roll(EDateFields field, UBool up, UErrorCode& status)
|
||||
{
|
||||
roll((UCalendarDateFields) field, up, status);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
// -------------------------------------
|
||||
|
@ -2278,11 +2280,13 @@ Calendar::internalSet(UCalendarDateFields field, int32_t value)
|
|||
fIsSet[field] = TRUE; // Remove later
|
||||
}
|
||||
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
inline int32_t Calendar::weekNumber(int32_t dayOfPeriod, int32_t dayOfWeek)
|
||||
{
|
||||
return weekNumber(dayOfPeriod, dayOfPeriod, dayOfWeek);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
|
|
|
@ -403,6 +403,7 @@ DecimalFormatSymbols::getSymbol(ENumberFormatSymbol symbol) const {
|
|||
return *strPtr;
|
||||
}
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
inline const UnicodeString &
|
||||
DecimalFormatSymbols::getConstSymbol(ENumberFormatSymbol symbol) const {
|
||||
const UnicodeString *strPtr;
|
||||
|
@ -413,6 +414,8 @@ DecimalFormatSymbols::getConstSymbol(ENumberFormatSymbol symbol) const {
|
|||
}
|
||||
return *strPtr;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
// -------------------------------------
|
||||
|
||||
|
@ -442,10 +445,13 @@ DecimalFormatSymbols::getLocale() const {
|
|||
return locale;
|
||||
}
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
inline const UChar*
|
||||
DecimalFormatSymbols::getCurrencyPattern() const {
|
||||
return currPattern;
|
||||
}
|
||||
#endif
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
#endif /* #if !UCONFIG_NO_FORMATTING */
|
||||
|
|
|
@ -2309,10 +2309,12 @@ DecimalFormat::format(int32_t number,
|
|||
return format((int64_t)number, appendTo, pos);
|
||||
}
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
inline const UnicodeString &
|
||||
DecimalFormat::getConstSymbol(DecimalFormatSymbols::ENumberFormatSymbol symbol) const {
|
||||
return fSymbols->getConstSymbol(symbol);
|
||||
}
|
||||
#endif
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
|
|
|
@ -665,9 +665,12 @@ inline UnicodeString& Formattable::getString(void) {
|
|||
return *fValue.fString;
|
||||
}
|
||||
|
||||
#ifndef U_HIDE_DEPRECATED_API
|
||||
inline int32_t Formattable::getLong(UErrorCode* status) const {
|
||||
return getLong(*status);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
|
|
|
@ -934,10 +934,12 @@ inline void RuleBasedCollator::setUCollator(UCollator *collator)
|
|||
setRuleStringFromCollator();
|
||||
}
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
inline const UCollator * RuleBasedCollator::getUCollator()
|
||||
{
|
||||
return ucollator;
|
||||
}
|
||||
#endif
|
||||
|
||||
inline Collator::EComparisonResult RuleBasedCollator::getEComparisonResult(
|
||||
const UCollationResult &result) const
|
||||
|
|
|
@ -1309,6 +1309,7 @@ inline void Transliterator::setID(const UnicodeString& id) {
|
|||
ID.truncate(ID.length()-1);
|
||||
}
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
inline Transliterator::Token Transliterator::integerToken(int32_t i) {
|
||||
Token t;
|
||||
t.integer = i;
|
||||
|
@ -1320,6 +1321,7 @@ inline Transliterator::Token Transliterator::pointerToken(void* p) {
|
|||
t.pointer = p;
|
||||
return t;
|
||||
}
|
||||
#endif
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
|
|
|
@ -254,7 +254,7 @@ typedef enum UNumberFormatPadPosition {
|
|||
UNUM_PAD_AFTER_SUFFIX
|
||||
} UNumberFormatPadPosition;
|
||||
|
||||
#ifndef U_HIDE_DRAFT_API
|
||||
/* #ifndef U_HIDE_DRAFT_API: can't hide- used in dcfmtshm.h for size of DecimalFormatSymbols */
|
||||
/**
|
||||
* Constants for specifying currency spacing
|
||||
* @draft ICU 4.8
|
||||
|
@ -266,7 +266,7 @@ enum UCurrencySpacing {
|
|||
UNUM_CURRENCY_SPACING_COUNT
|
||||
};
|
||||
typedef enum UCurrencySpacing UCurrencySpacing; /**< @draft ICU 4.8 */
|
||||
#endif /* U_HIDE_DRAFT_API */
|
||||
/* #endif U_HIDE_DRAFT_API */
|
||||
|
||||
/**
|
||||
* Create and return a new UNumberFormat for formatting and parsing
|
||||
|
|
|
@ -1555,7 +1555,7 @@ uregex_getMatchCallback(const URegularExpression *regexp,
|
|||
const void **context,
|
||||
UErrorCode *status);
|
||||
|
||||
#ifndef U_HIDE_DRAFT_API
|
||||
/* #ifndef U_HIDE_DRAFT_API -- Don't hide this, used in regex.h */
|
||||
/**
|
||||
* Function pointer for a regular expression find callback function.
|
||||
*
|
||||
|
@ -1592,6 +1592,8 @@ typedef UBool U_CALLCONV URegexFindProgressCallback (
|
|||
int64_t matchIndex);
|
||||
U_CDECL_END
|
||||
|
||||
#ifndef U_HIDE_DRAFT_API
|
||||
|
||||
/**
|
||||
* Set the find progress callback function for this URegularExpression.
|
||||
*
|
||||
|
|
|
@ -1309,6 +1309,7 @@ static void TestCurrencyList(void){
|
|||
}
|
||||
|
||||
static void TestAvailableIsoCodes(void){
|
||||
#if !UCONFIG_NO_FORMATTING
|
||||
UErrorCode errorCode = U_ZERO_ERROR;
|
||||
const char* eurCode = "EUR";
|
||||
const char* usdCode = "USD";
|
||||
|
@ -1404,6 +1405,7 @@ static void TestAvailableIsoCodes(void){
|
|||
}
|
||||
|
||||
free(isoCode);
|
||||
#endif
|
||||
}
|
||||
|
||||
#define TESTCASE(name) addTest(root, &name, "tsutil/cldrtest/" #name)
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#include "unicode/tblcoll.h"
|
||||
#include "unicode/uniset.h"
|
||||
|
||||
#if !UCONFIG_NO_COLLATION && !UCONFIG_NO_NORMALIZATION
|
||||
|
||||
// #include <string>
|
||||
// #include <iostream>
|
||||
|
||||
|
@ -56,7 +58,6 @@ void AlphabeticIndexTest::runIndexedTest( int32_t index, UBool exec, const char*
|
|||
// Does not attempt to check complete functionality.
|
||||
//
|
||||
void AlphabeticIndexTest::APITest() {
|
||||
|
||||
//
|
||||
// Simple constructor and destructor, getBucketCount()
|
||||
//
|
||||
|
@ -415,3 +416,4 @@ void AlphabeticIndexTest::HackPinyinTest() {
|
|||
TEST_ASSERT(bucketCount > 25);
|
||||
TEST_ASSERT(filledBucketCount > 15);
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -98,7 +98,9 @@ void IntlTestCollator::runIndexedTest( int32_t index, UBool exec, const char* &n
|
|||
TESTCLASS(20, CollationFinnishTest); // removed by weiv - we have changed Finnish collation
|
||||
//TESTCLASS(21, RandomCollatorTest); // See ticket 5747 about reenabling this test.
|
||||
TESTCLASS(21, SSearchTest);
|
||||
#if !UCONFIG_NO_COLLATION && !UCONFIG_NO_NORMALIZATION
|
||||
TESTCLASS(22, AlphabeticIndexTest);
|
||||
#endif
|
||||
|
||||
default: name = ""; break;
|
||||
}
|
||||
|
|
|
@ -480,7 +480,10 @@ void UObjectTest::testIDs()
|
|||
// TESTCLASSID_CTOR(LocaleKeyFactory, (42));
|
||||
//#endif
|
||||
#endif
|
||||
|
||||
#if !UCONFIG_NO_COLLATION && !UCONFIG_NO_NORMALIZATION
|
||||
TESTCLASSID_NONE_CTOR(AlphabeticIndex, (Locale::getEnglish(), status));
|
||||
#endif
|
||||
|
||||
#if UOBJTEST_DUMP_IDS
|
||||
int i;
|
||||
|
|
Loading…
Add table
Reference in a new issue