diff --git a/icu4c/source/common/cmemory.h b/icu4c/source/common/cmemory.h index ea57d5fabbe..ed29b63e8f9 100644 --- a/icu4c/source/common/cmemory.h +++ b/icu4c/source/common/cmemory.h @@ -59,7 +59,14 @@ U_CAPI void uprv_checkValidMemory(const void *p, size_t n); #endif /* U_DEBUG */ -#define uprv_lengthof(array) (int32_t)(sizeof(array)/sizeof((array)[0])) +/** + * \def UPRV_LENGTHOF + * Convenience macro to determine the length of a fixed array at compile-time. + * @param array A fixed length array + * @return The length of the array, in elements + * @internal + */ +#define UPRV_LENGTHOF(array) (int32_t)(sizeof(array)/sizeof((array)[0])) #define uprv_memset(buffer, mark, size) U_STANDARD_CPP_NAMESPACE memset(buffer, mark, size) #define uprv_memcmp(buffer1, buffer2, size) U_STANDARD_CPP_NAMESPACE memcmp(buffer1, buffer2,size) diff --git a/icu4c/source/common/dictbe.cpp b/icu4c/source/common/dictbe.cpp index c58a4f1c528..b88f6db32fa 100644 --- a/icu4c/source/common/dictbe.cpp +++ b/icu4c/source/common/dictbe.cpp @@ -156,7 +156,7 @@ int32_t PossibleWord::candidates( UText *text, DictionaryMatcher *dict, int32_t int32_t start = (int32_t)utext_getNativeIndex(text); if (start != offset) { offset = start; - count = dict->matches(text, rangeEnd-start, uprv_lengthof(cuLengths), cuLengths, cpLengths, NULL, &prefix); + count = dict->matches(text, rangeEnd-start, UPRV_LENGTHOF(cuLengths), cuLengths, cpLengths, NULL, &prefix); // Dictionary leaves text after longest prefix, not longest word. Back up. if (count <= 0) { utext_setNativeIndex(text, start); diff --git a/icu4c/source/common/listformatter.cpp b/icu4c/source/common/listformatter.cpp index 9dc4b9fd6ae..cfbd08bdce3 100644 --- a/icu4c/source/common/listformatter.cpp +++ b/icu4c/source/common/listformatter.cpp @@ -271,10 +271,10 @@ static void joinStrings( int32_t offsets[2]; pat.format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), result, offsets, - uprv_lengthof(offsets), + UPRV_LENGTHOF(offsets), errorCode); if (U_FAILURE(errorCode)) { return; diff --git a/icu4c/source/common/putil.cpp b/icu4c/source/common/putil.cpp index 4f320d534ca..a6c3f1cc751 100644 --- a/icu4c/source/common/putil.cpp +++ b/icu4c/source/common/putil.cpp @@ -814,7 +814,7 @@ static const char* remapShortTimeZone(const char *stdID, const char *dstID, int3 #ifdef DEBUG_TZNAME fprintf(stderr, "TZ=%s std=%s dst=%s daylight=%d offset=%d\n", getenv("TZ"), stdID, dstID, daylightType, offset); #endif - for (idx = 0; idx < uprv_lengthof(OFFSET_ZONE_MAPPINGS); idx++) + for (idx = 0; idx < UPRV_LENGTHOF(OFFSET_ZONE_MAPPINGS); idx++) { if (offset == OFFSET_ZONE_MAPPINGS[idx].offsetSeconds && daylightType == OFFSET_ZONE_MAPPINGS[idx].daylightType diff --git a/icu4c/source/common/rbbiscan.cpp b/icu4c/source/common/rbbiscan.cpp index 0ca7ede3923..d5c6306d97a 100644 --- a/icu4c/source/common/rbbiscan.cpp +++ b/icu4c/source/common/rbbiscan.cpp @@ -991,7 +991,7 @@ void RBBIRuleScanner::parse() { if (tableEl->fCharClass >= 128 && tableEl->fCharClass < 240 && // Table specs a char class && fC.fEscaped == FALSE && // char is not escaped && fC.fChar != (UChar32)-1) { // char is not EOF - U_ASSERT((tableEl->fCharClass-128) < uprv_lengthof(fRuleSets)); + U_ASSERT((tableEl->fCharClass-128) < UPRV_LENGTHOF(fRuleSets)); if (fRuleSets[tableEl->fCharClass-128].contains(fC.fChar)) { // Table row specified a character class, or set of characters, // and the current char matches it. diff --git a/icu4c/source/common/simplepatternformatter.cpp b/icu4c/source/common/simplepatternformatter.cpp index ed8d55aa02b..30390f4150c 100644 --- a/icu4c/source/common/simplepatternformatter.cpp +++ b/icu4c/source/common/simplepatternformatter.cpp @@ -189,7 +189,7 @@ UnicodeString& SimplePatternFormatter::format( const UnicodeString *params[] = {&arg0}; return format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), appendTo, NULL, 0, @@ -204,7 +204,7 @@ UnicodeString& SimplePatternFormatter::format( const UnicodeString *params[] = {&arg0, &arg1}; return format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), appendTo, NULL, 0, @@ -220,7 +220,7 @@ UnicodeString& SimplePatternFormatter::format( const UnicodeString *params[] = {&arg0, &arg1, &arg2}; return format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), appendTo, NULL, 0, diff --git a/icu4c/source/common/ucnv2022.cpp b/icu4c/source/common/ucnv2022.cpp index cdde4b04e1c..9556dd2c096 100644 --- a/icu4c/source/common/ucnv2022.cpp +++ b/icu4c/source/common/ucnv2022.cpp @@ -1717,7 +1717,7 @@ getTrail: } /* try all the other possible charsets */ - for(i = 0; i < uprv_lengthof(jpCharsetPref); ++i) { + for(i = 0; i < UPRV_LENGTHOF(jpCharsetPref); ++i) { cs = (int8_t)jpCharsetPref[i]; if(CSM(cs) & csm) { choices[choiceCount++] = cs; diff --git a/icu4c/source/common/udata.cpp b/icu4c/source/common/udata.cpp index e195191655b..d2d113ad52f 100644 --- a/icu4c/source/common/udata.cpp +++ b/icu4c/source/common/udata.cpp @@ -120,7 +120,7 @@ udata_cleanup(void) } gCommonDataCacheInitOnce.reset(); - for (i = 0; i < uprv_lengthof(gCommonICUDataArray) && gCommonICUDataArray[i] != NULL; ++i) { + for (i = 0; i < UPRV_LENGTHOF(gCommonICUDataArray) && gCommonICUDataArray[i] != NULL; ++i) { udata_close(gCommonICUDataArray[i]); gCommonICUDataArray[i] = NULL; } @@ -139,7 +139,7 @@ findCommonICUDataByName(const char *inBasename) if (pData == NULL) return FALSE; - for (i = 0; i < uprv_lengthof(gCommonICUDataArray); ++i) { + for (i = 0; i < UPRV_LENGTHOF(gCommonICUDataArray); ++i) { if ((gCommonICUDataArray[i] != NULL) && (gCommonICUDataArray[i]->pHeader == pData->pHeader)) { /* The data pointer is already in the array. */ found = TRUE; @@ -173,7 +173,7 @@ setCommonICUData(UDataMemory *pData, /* The new common data. Belongs to ca /* their locals. */ UDatamemory_assign(newCommonData, pData); umtx_lock(NULL); - for (i = 0; i < uprv_lengthof(gCommonICUDataArray); ++i) { + for (i = 0; i < UPRV_LENGTHOF(gCommonICUDataArray); ++i) { if (gCommonICUDataArray[i] == NULL) { gCommonICUDataArray[i] = newCommonData; didUpdate = TRUE; @@ -185,7 +185,7 @@ setCommonICUData(UDataMemory *pData, /* The new common data. Belongs to ca } umtx_unlock(NULL); - if (i == uprv_lengthof(gCommonICUDataArray) && warn) { + if (i == UPRV_LENGTHOF(gCommonICUDataArray) && warn) { *pErr = U_USING_DEFAULT_WARNING; } if (didUpdate) { @@ -660,7 +660,7 @@ openCommonData(const char *path, /* Path from OpenChoice? */ /* ??????? TODO revisit this */ if (commonDataIndex >= 0) { /* "mini-cache" for common ICU data */ - if(commonDataIndex >= uprv_lengthof(gCommonICUDataArray)) { + if(commonDataIndex >= UPRV_LENGTHOF(gCommonICUDataArray)) { return NULL; } if(gCommonICUDataArray[commonDataIndex] == NULL) { diff --git a/icu4c/source/common/uloc_tag.c b/icu4c/source/common/uloc_tag.c index 27b9329a660..3725955b361 100644 --- a/icu4c/source/common/uloc_tag.c +++ b/icu4c/source/common/uloc_tag.c @@ -1058,7 +1058,7 @@ _appendLanguageToLanguageTag(const char* localeID, char* appendAt, int32_t capac reslen += LANG_UND_LEN; } else { /* resolve deprecated */ - for (i = 0; i < uprv_lengthof(DEPRECATEDLANGS); i += 2) { + for (i = 0; i < UPRV_LENGTHOF(DEPRECATEDLANGS); i += 2) { if (uprv_compareInvCharsAsAscii(buf, DEPRECATEDLANGS[i]) == 0) { uprv_strcpy(buf, DEPRECATEDLANGS[i + 1]); len = (int32_t)uprv_strlen(buf); diff --git a/icu4c/source/common/unames.cpp b/icu4c/source/common/unames.cpp index 57ca87e6b56..e6fa30f3bd9 100644 --- a/icu4c/source/common/unames.cpp +++ b/icu4c/source/common/unames.cpp @@ -436,7 +436,7 @@ static const char *getCharCatName(UChar32 cp) { /* Return unknown if the table of names above is not up to date. */ - if (cat >= uprv_lengthof(charCatNames)) { + if (cat >= UPRV_LENGTHOF(charCatNames)) { return "unknown"; } else { return charCatNames[cat]; @@ -1275,7 +1275,7 @@ static int32_t calcExtNameSetsLengths(int32_t maxNameLength) { int32_t i, length; - for(i=0; i>UPROPS_GCB_SHIFT; - if(gcbcompareInvChars(ds, key, -1, - gCollationBinKey, uprv_lengthof(gCollationBinKey)-1) : + gCollationBinKey, UPRV_LENGTHOF(gCollationBinKey)-1) : /* its table key string is unknown but it looks like a collation binary */ ucol_looksLikeCollationBinary(ds, p+1, count)) ) { diff --git a/icu4c/source/common/uscript_props.cpp b/icu4c/source/common/uscript_props.cpp index 2d3c98110e8..f4a8e5a7f47 100644 --- a/icu4c/source/common/uscript_props.cpp +++ b/icu4c/source/common/uscript_props.cpp @@ -213,7 +213,7 @@ const int32_t SCRIPT_PROPS[] = { }; int32_t getScriptProps(UScriptCode script) { - if (0 <= script && script < uprv_lengthof(SCRIPT_PROPS)) { + if (0 <= script && script < UPRV_LENGTHOF(SCRIPT_PROPS)) { return SCRIPT_PROPS[script]; } else { return 0; diff --git a/icu4c/source/common/ushape.cpp b/icu4c/source/common/ushape.cpp index 8ec310cac07..eeae57f3d43 100644 --- a/icu4c/source/common/ushape.cpp +++ b/icu4c/source/common/ushape.cpp @@ -1558,8 +1558,8 @@ u_shapeArabic(const UChar *source, int32_t sourceLength, } /* Start of Arabic letter shaping part */ - if(outputSize<=uprv_lengthof(buffer)) { - outputSize=uprv_lengthof(buffer); + if(outputSize<=UPRV_LENGTHOF(buffer)) { + outputSize=UPRV_LENGTHOF(buffer); tempbuffer=buffer; } else { tempbuffer = (UChar *)uprv_malloc(outputSize*U_SIZEOF_UCHAR); diff --git a/icu4c/source/common/ustrcase.cpp b/icu4c/source/common/ustrcase.cpp index b5b9b8274c2..e687267df86 100644 --- a/icu4c/source/common/ustrcase.cpp +++ b/icu4c/source/common/ustrcase.cpp @@ -397,7 +397,7 @@ ustrcase_map(const UCaseMap *csm, (dest>=src && dest<(src+srcLength))) ) { /* overlap: provide a temporary destination buffer and later copy the result */ - if(destCapacity<=uprv_lengthof(buffer)) { + if(destCapacity<=UPRV_LENGTHOF(buffer)) { /* the stack buffer is large enough */ temp=buffer; } else { diff --git a/icu4c/source/common/ustrtrns.cpp b/icu4c/source/common/ustrtrns.cpp index a51fb56019b..5ec22f7a8aa 100644 --- a/icu4c/source/common/ustrtrns.cpp +++ b/icu4c/source/common/ustrtrns.cpp @@ -381,7 +381,7 @@ utf8_nextCharSafeBodyPointer(const uint8_t **ps, const uint8_t *limit, UChar32 c /* correct sequence - all trail bytes have (b7..b6)==(10)? */ /* illegal is also set if count>=4 */ - U_ASSERT(illegal || countindex2Length; newTop=newBlock+UTRIE2_INDEX_2_BLOCK_LENGTH; - if(newTop>uprv_lengthof(trie->index2)) { + if(newTop>UPRV_LENGTHOF(trie->index2)) { /* * Should never occur. * Either UTRIE2_MAX_BUILD_TIME_INDEX_LENGTH is incorrect, diff --git a/icu4c/source/common/uts46.cpp b/icu4c/source/common/uts46.cpp index ac9f5b71ce7..11d5dc5d2bf 100644 --- a/icu4c/source/common/uts46.cpp +++ b/icu4c/source/common/uts46.cpp @@ -433,7 +433,7 @@ UTS46::processUTF8(const StringPiece &src, char stackArray[256]; int32_t destCapacity; char *destArray=dest.GetAppendBuffer(srcLength, srcLength+20, - stackArray, uprv_lengthof(stackArray), &destCapacity); + stackArray, UPRV_LENGTHOF(stackArray), &destCapacity); UBool disallowNonLDHDot=(options&UIDNA_USE_STD3_RULES)!=0; int32_t i; for(i=0;; ++i) { diff --git a/icu4c/source/extra/uconv/uconv.cpp b/icu4c/source/extra/uconv/uconv.cpp index 258a1bca425..1fd2565831d 100644 --- a/icu4c/source/extra/uconv/uconv.cpp +++ b/icu4c/source/extra/uconv/uconv.cpp @@ -944,7 +944,7 @@ ConvertFile::convertFile(const char *pname, int8_t i, length, errorLength; UErrorCode localError = U_ZERO_ERROR; - errorLength = (int8_t)uprv_lengthof(errorUChars); + errorLength = (int8_t)UPRV_LENGTHOF(errorUChars); ucnv_getInvalidUChars(convto, errorUChars, &errorLength, &localError); if (U_FAILURE(localError) || errorLength == 0) { // need at least 1 so that we don't access beyond the length of fromoffsets[] diff --git a/icu4c/source/extra/uconv/uwmsg.c b/icu4c/source/extra/uconv/uwmsg.c index dcd9c1e7f62..a182a719a67 100644 --- a/icu4c/source/extra/uconv/uwmsg.c +++ b/icu4c/source/extra/uconv/uwmsg.c @@ -125,7 +125,7 @@ U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... ) va_list ap; #endif UChar result[4096]; - int32_t resultLength = uprv_lengthof(result); + int32_t resultLength = UPRV_LENGTHOF(result); if(gBundle == NULL) { @@ -144,7 +144,7 @@ U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... ) #if UCONFIG_NO_FORMATTING resultLength = sizeof(gNoFormatting) / U_SIZEOF_UCHAR; - if((msgLen + resultLength) <= uprv_lengthof(result)) { + if((msgLen + resultLength) <= UPRV_LENGTHOF(result)) { memcpy(result, msg, msgLen * U_SIZEOF_UCHAR); memcpy(result + msgLen, gNoFormatting, resultLength); resultLength += msgLen; diff --git a/icu4c/source/i18n/coll.cpp b/icu4c/source/i18n/coll.cpp index f61ea40f370..c4845f2b1f9 100644 --- a/icu4c/source/i18n/coll.cpp +++ b/icu4c/source/i18n/coll.cpp @@ -294,7 +294,7 @@ static const char *collReorderCodes[UCOL_REORDER_CODE_LIMIT - UCOL_REORDER_CODE_ }; int32_t getReorderCode(const char *s) { - for (int32_t i = 0; i < uprv_lengthof(collReorderCodes); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(collReorderCodes); ++i) { if (uprv_stricmp(s, collReorderCodes[i]) == 0) { return UCOL_REORDER_CODE_FIRST + i; } @@ -324,7 +324,7 @@ void setAttributesFromKeywords(const Locale &loc, Collator &coll, UErrorCode &er char value[1024]; // The reordering value could be long. // Check for collation keywords that were already deprecated // before any were supported in createInstance() (except for "collation"). - int32_t length = loc.getKeywordValue("colHiraganaQuaternary", value, uprv_lengthof(value), errorCode); + int32_t length = loc.getKeywordValue("colHiraganaQuaternary", value, UPRV_LENGTHOF(value), errorCode); if (U_FAILURE(errorCode)) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; @@ -333,7 +333,7 @@ void setAttributesFromKeywords(const Locale &loc, Collator &coll, UErrorCode &er errorCode = U_UNSUPPORTED_ERROR; return; } - length = loc.getKeywordValue("variableTop", value, uprv_lengthof(value), errorCode); + length = loc.getKeywordValue("variableTop", value, UPRV_LENGTHOF(value), errorCode); if (U_FAILURE(errorCode)) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; @@ -346,15 +346,15 @@ void setAttributesFromKeywords(const Locale &loc, Collator &coll, UErrorCode &er if (errorCode == U_STRING_NOT_TERMINATED_WARNING) { errorCode = U_ZERO_ERROR; } - for (int32_t i = 0; i < uprv_lengthof(collAttributes); ++i) { - length = loc.getKeywordValue(collAttributes[i].name, value, uprv_lengthof(value), errorCode); + for (int32_t i = 0; i < UPRV_LENGTHOF(collAttributes); ++i) { + length = loc.getKeywordValue(collAttributes[i].name, value, UPRV_LENGTHOF(value), errorCode); if (U_FAILURE(errorCode) || errorCode == U_STRING_NOT_TERMINATED_WARNING) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; } if (length == 0) { continue; } for (int32_t j = 0;; ++j) { - if (j == uprv_lengthof(collAttributeValues)) { + if (j == UPRV_LENGTHOF(collAttributeValues)) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; } @@ -364,7 +364,7 @@ void setAttributesFromKeywords(const Locale &loc, Collator &coll, UErrorCode &er } } } - length = loc.getKeywordValue("colReorder", value, uprv_lengthof(value), errorCode); + length = loc.getKeywordValue("colReorder", value, UPRV_LENGTHOF(value), errorCode); if (U_FAILURE(errorCode) || errorCode == U_STRING_NOT_TERMINATED_WARNING) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; @@ -374,7 +374,7 @@ void setAttributesFromKeywords(const Locale &loc, Collator &coll, UErrorCode &er int32_t codesLength = 0; char *scriptName = value; for (;;) { - if (codesLength == uprv_lengthof(codes)) { + if (codesLength == UPRV_LENGTHOF(codes)) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; } @@ -399,7 +399,7 @@ void setAttributesFromKeywords(const Locale &loc, Collator &coll, UErrorCode &er } coll.setReorderCodes(codes, codesLength, errorCode); } - length = loc.getKeywordValue("kv", value, uprv_lengthof(value), errorCode); + length = loc.getKeywordValue("kv", value, UPRV_LENGTHOF(value), errorCode); if (U_FAILURE(errorCode) || errorCode == U_STRING_NOT_TERMINATED_WARNING) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; diff --git a/icu4c/source/i18n/collationbuilder.cpp b/icu4c/source/i18n/collationbuilder.cpp index b2d838dc1a1..37f701ce775 100644 --- a/icu4c/source/i18n/collationbuilder.cpp +++ b/icu4c/source/i18n/collationbuilder.cpp @@ -274,7 +274,7 @@ CollationBuilder::parseAndBuild(const UnicodeString &ruleString, if(U_FAILURE(errorCode)) { return NULL; } ownedSettings.fastLatinOptions = CollationFastLatin::getOptions( tailoring->data, ownedSettings, - ownedSettings.fastLatinPrimaries, uprv_lengthof(ownedSettings.fastLatinPrimaries)); + ownedSettings.fastLatinPrimaries, UPRV_LENGTHOF(ownedSettings.fastLatinPrimaries)); tailoring->rules = ruleString; tailoring->rules.getTerminatedBuffer(); // ensure NUL-termination tailoring->setVersion(base->version, rulesVersion); diff --git a/icu4c/source/i18n/collationdatareader.cpp b/icu4c/source/i18n/collationdatareader.cpp index 905f3327cf9..519b5422ef6 100644 --- a/icu4c/source/i18n/collationdatareader.cpp +++ b/icu4c/source/i18n/collationdatareader.cpp @@ -368,7 +368,7 @@ CollationDataReader::read(const CollationTailoring *base, const uint8_t *inBytes int32_t options = inIndexes[IX_OPTIONS] & 0xffff; uint16_t fastLatinPrimaries[CollationFastLatin::LATIN_LIMIT]; int32_t fastLatinOptions = CollationFastLatin::getOptions( - tailoring.data, ts, fastLatinPrimaries, uprv_lengthof(fastLatinPrimaries)); + tailoring.data, ts, fastLatinPrimaries, UPRV_LENGTHOF(fastLatinPrimaries)); if(options == ts.options && ts.variableTop != 0 && reorderCodesLength == ts.reorderCodesLength && uprv_memcmp(reorderCodes, ts.reorderCodes, reorderCodesLength * 4) == 0 && @@ -407,7 +407,7 @@ CollationDataReader::read(const CollationTailoring *base, const uint8_t *inBytes settings->fastLatinOptions = CollationFastLatin::getOptions( tailoring.data, *settings, - settings->fastLatinPrimaries, uprv_lengthof(settings->fastLatinPrimaries)); + settings->fastLatinPrimaries, UPRV_LENGTHOF(settings->fastLatinPrimaries)); } UBool U_CALLCONV diff --git a/icu4c/source/i18n/collationruleparser.cpp b/icu4c/source/i18n/collationruleparser.cpp index f090b107012..ac413a2a64c 100644 --- a/icu4c/source/i18n/collationruleparser.cpp +++ b/icu4c/source/i18n/collationruleparser.cpp @@ -461,7 +461,7 @@ CollationRuleParser::parseSpecialPosition(int32_t i, UnicodeString &str, UErrorC int32_t j = readWords(i + 1, raw); if(j > i && rules->charAt(j) == 0x5d && !raw.isEmpty()) { // words end with ] ++j; - for(int32_t pos = 0; pos < uprv_lengthof(positions); ++pos) { + for(int32_t pos = 0; pos < UPRV_LENGTHOF(positions); ++pos) { if(raw == UnicodeString(positions[pos], -1, US_INV)) { str.setTo((UChar)POS_LEAD).append((UChar)(POS_BASE + pos)); return j; @@ -725,7 +725,7 @@ static const char *const gSpecialReorderCodes[] = { int32_t CollationRuleParser::getReorderCode(const char *word) { - for(int32_t i = 0; i < uprv_lengthof(gSpecialReorderCodes); ++i) { + for(int32_t i = 0; i < UPRV_LENGTHOF(gSpecialReorderCodes); ++i) { if(uprv_stricmp(word, gSpecialReorderCodes[i]) == 0) { return UCOL_REORDER_CODE_FIRST + i; } diff --git a/icu4c/source/i18n/compactdecimalformat.cpp b/icu4c/source/i18n/compactdecimalformat.cpp index 6bdfca1245b..74d9c04191c 100644 --- a/icu4c/source/i18n/compactdecimalformat.cpp +++ b/icu4c/source/i18n/compactdecimalformat.cpp @@ -766,13 +766,13 @@ static int32_t populatePrefixSuffix( if (U_FAILURE(status)) { return 0; } - int32_t firstIdx = formatStr.indexOf(kZero, uprv_lengthof(kZero), 0); + int32_t firstIdx = formatStr.indexOf(kZero, UPRV_LENGTHOF(kZero), 0); // We must have 0's in format string. if (firstIdx == -1) { status = U_INTERNAL_PROGRAM_ERROR; return 0; } - int32_t lastIdx = formatStr.lastIndexOf(kZero, uprv_lengthof(kZero), firstIdx); + int32_t lastIdx = formatStr.lastIndexOf(kZero, UPRV_LENGTHOF(kZero), firstIdx); CDFUnit* unit = createCDFUnit(variant, log10Value, result, status); if (U_FAILURE(status)) { return 0; diff --git a/icu4c/source/i18n/dtptngen.cpp b/icu4c/source/i18n/dtptngen.cpp index 679cee89e3c..fe1f5a150f6 100644 --- a/icu4c/source/i18n/dtptngen.cpp +++ b/icu4c/source/i18n/dtptngen.cpp @@ -508,7 +508,7 @@ DateTimePatternGenerator::addCLDRData(const Locale& locale, UErrorCode& err) { const char *key=NULL; int32_t i; - UnicodeString defaultItemFormat(TRUE, UDATPG_ItemFormat, uprv_lengthof(UDATPG_ItemFormat)-1); // Read-only alias. + UnicodeString defaultItemFormat(TRUE, UDATPG_ItemFormat, UPRV_LENGTHOF(UDATPG_ItemFormat)-1); // Read-only alias. err = U_ZERO_ERROR; diff --git a/icu4c/source/i18n/identifier_info.cpp b/icu4c/source/i18n/identifier_info.cpp index a420213cc1d..d4e167c98f1 100644 --- a/icu4c/source/i18n/identifier_info.cpp +++ b/icu4c/source/i18n/identifier_info.cpp @@ -135,7 +135,7 @@ IdentifierInfo &IdentifierInfo::setIdentifier(const UnicodeString &identifier, U fNumerics->add(cp - (UChar32)u_getNumericValue(cp)); } UScriptCode extensions[500]; - int32_t extensionsCount = uscript_getScriptExtensions(cp, extensions, uprv_lengthof(extensions), &status); + int32_t extensionsCount = uscript_getScriptExtensions(cp, extensions, UPRV_LENGTHOF(extensions), &status); if (U_FAILURE(status)) { return *this; } diff --git a/icu4c/source/i18n/measfmt.cpp b/icu4c/source/i18n/measfmt.cpp index f364dd100f0..f0a2f031bdf 100644 --- a/icu4c/source/i18n/measfmt.cpp +++ b/icu4c/source/i18n/measfmt.cpp @@ -111,7 +111,7 @@ private: }; MeasureFormatCacheData::MeasureFormatCacheData() { - for (int32_t i = 0; i < uprv_lengthof(currencyFormats); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(currencyFormats); ++i) { currencyFormats[i] = NULL; } integerFormat = NULL; @@ -119,7 +119,7 @@ MeasureFormatCacheData::MeasureFormatCacheData() { } MeasureFormatCacheData::~MeasureFormatCacheData() { - for (int32_t i = 0; i < uprv_lengthof(currencyFormats); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(currencyFormats); ++i) { delete currencyFormats[i]; } delete integerFormat; diff --git a/icu4c/source/i18n/measunit.cpp b/icu4c/source/i18n/measunit.cpp index b2a3e3fd141..67eb21481f3 100644 --- a/icu4c/source/i18n/measunit.cpp +++ b/icu4c/source/i18n/measunit.cpp @@ -639,20 +639,20 @@ int32_t MeasureUnit::getAvailable( if (U_FAILURE(errorCode)) { return 0; } - if (destCapacity < uprv_lengthof(gSubTypes)) { + if (destCapacity < UPRV_LENGTHOF(gSubTypes)) { errorCode = U_BUFFER_OVERFLOW_ERROR; - return uprv_lengthof(gSubTypes); + return UPRV_LENGTHOF(gSubTypes); } int32_t idx = 0; - for (int32_t typeIdx = 0; typeIdx < uprv_lengthof(gTypes); ++typeIdx) { + for (int32_t typeIdx = 0; typeIdx < UPRV_LENGTHOF(gTypes); ++typeIdx) { int32_t len = gOffsets[typeIdx + 1] - gOffsets[typeIdx]; for (int32_t subTypeIdx = 0; subTypeIdx < len; ++subTypeIdx) { dest[idx].setTo(typeIdx, subTypeIdx); ++idx; } } - U_ASSERT(idx == uprv_lengthof(gSubTypes)); - return uprv_lengthof(gSubTypes); + U_ASSERT(idx == UPRV_LENGTHOF(gSubTypes)); + return UPRV_LENGTHOF(gSubTypes); } int32_t MeasureUnit::getAvailable( @@ -663,7 +663,7 @@ int32_t MeasureUnit::getAvailable( if (U_FAILURE(errorCode)) { return 0; } - int32_t typeIdx = binarySearch(gTypes, 0, uprv_lengthof(gTypes), type); + int32_t typeIdx = binarySearch(gTypes, 0, UPRV_LENGTHOF(gTypes), type); if (typeIdx == -1) { return 0; } @@ -680,7 +680,7 @@ int32_t MeasureUnit::getAvailable( StringEnumeration* MeasureUnit::getAvailableTypes(UErrorCode &errorCode) { UEnumeration *uenum = uenum_openCharStringsEnumeration( - gTypes, uprv_lengthof(gTypes), &errorCode); + gTypes, UPRV_LENGTHOF(gTypes), &errorCode); if (U_FAILURE(errorCode)) { uenum_close(uenum); return NULL; @@ -695,7 +695,7 @@ StringEnumeration* MeasureUnit::getAvailableTypes(UErrorCode &errorCode) { } int32_t MeasureUnit::getIndexCount() { - return gIndexes[uprv_lengthof(gIndexes) - 1]; + return gIndexes[UPRV_LENGTHOF(gIndexes) - 1]; } MeasureUnit *MeasureUnit::create(int typeId, int subTypeId, UErrorCode &status) { @@ -710,7 +710,7 @@ MeasureUnit *MeasureUnit::create(int typeId, int subTypeId, UErrorCode &status) } void MeasureUnit::initTime(const char *timeId) { - int32_t result = binarySearch(gTypes, 0, uprv_lengthof(gTypes), "duration"); + int32_t result = binarySearch(gTypes, 0, UPRV_LENGTHOF(gTypes), "duration"); U_ASSERT(result != -1); fTypeId = result; result = binarySearch(gSubTypes, gOffsets[fTypeId], gOffsets[fTypeId + 1], timeId); @@ -719,7 +719,7 @@ void MeasureUnit::initTime(const char *timeId) { } void MeasureUnit::initCurrency(const char *isoCurrency) { - int32_t result = binarySearch(gTypes, 0, uprv_lengthof(gTypes), "currency"); + int32_t result = binarySearch(gTypes, 0, UPRV_LENGTHOF(gTypes), "currency"); U_ASSERT(result != -1); fTypeId = result; result = binarySearch( @@ -727,7 +727,7 @@ void MeasureUnit::initCurrency(const char *isoCurrency) { if (result != -1) { fSubTypeId = result - gOffsets[fTypeId]; } else { - uprv_strncpy(fCurrency, isoCurrency, uprv_lengthof(fCurrency)); + uprv_strncpy(fCurrency, isoCurrency, UPRV_LENGTHOF(fCurrency)); } } diff --git a/icu4c/source/i18n/quantityformatter.cpp b/icu4c/source/i18n/quantityformatter.cpp index ae3cf5887ae..8bec7a97346 100644 --- a/icu4c/source/i18n/quantityformatter.cpp +++ b/icu4c/source/i18n/quantityformatter.cpp @@ -26,7 +26,7 @@ static const char * const gPluralForms[] = { "other", "zero", "one", "two", "few", "many"}; static int32_t getPluralIndex(const char *pluralForm) { - int32_t len = uprv_lengthof(gPluralForms); + int32_t len = UPRV_LENGTHOF(gPluralForms); for (int32_t i = 0; i < len; ++i) { if (uprv_strcmp(pluralForm, gPluralForms[i]) == 0) { return i; @@ -36,13 +36,13 @@ static int32_t getPluralIndex(const char *pluralForm) { } QuantityFormatter::QuantityFormatter() { - for (int32_t i = 0; i < uprv_lengthof(formatters); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { formatters[i] = NULL; } } QuantityFormatter::QuantityFormatter(const QuantityFormatter &other) { - for (int32_t i = 0; i < uprv_lengthof(formatters); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { if (other.formatters[i] == NULL) { formatters[i] = NULL; } else { @@ -56,7 +56,7 @@ QuantityFormatter &QuantityFormatter::operator=( if (this == &other) { return *this; } - for (int32_t i = 0; i < uprv_lengthof(formatters); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { delete formatters[i]; if (other.formatters[i] == NULL) { formatters[i] = NULL; @@ -68,13 +68,13 @@ QuantityFormatter &QuantityFormatter::operator=( } QuantityFormatter::~QuantityFormatter() { - for (int32_t i = 0; i < uprv_lengthof(formatters); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { delete formatters[i]; } } void QuantityFormatter::reset() { - for (int32_t i = 0; i < uprv_lengthof(formatters); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { delete formatters[i]; formatters[i] = NULL; } @@ -164,7 +164,7 @@ UnicodeString &QuantityFormatter::format( fmt.format(quantity, formattedNumber, fpos, status); const UnicodeString *params[1] = {&formattedNumber}; int32_t offsets[1]; - pattern->format(params, uprv_lengthof(params), appendTo, offsets, uprv_lengthof(offsets), status); + pattern->format(params, UPRV_LENGTHOF(params), appendTo, offsets, UPRV_LENGTHOF(offsets), status); if (offsets[0] != -1) { if (fpos.getBeginIndex() != 0 || fpos.getEndIndex() != 0) { pos.setBeginIndex(fpos.getBeginIndex() + offsets[0]); diff --git a/icu4c/source/i18n/rulebasedcollator.cpp b/icu4c/source/i18n/rulebasedcollator.cpp index 5b2185415cc..48c6adb2a4c 100644 --- a/icu4c/source/i18n/rulebasedcollator.cpp +++ b/icu4c/source/i18n/rulebasedcollator.cpp @@ -703,7 +703,7 @@ void RuleBasedCollator::setFastLatinOptions(CollationSettings &ownedSettings) const { ownedSettings.fastLatinOptions = CollationFastLatin::getOptions( data, ownedSettings, - ownedSettings.fastLatinPrimaries, uprv_lengthof(ownedSettings.fastLatinPrimaries)); + ownedSettings.fastLatinPrimaries, UPRV_LENGTHOF(ownedSettings.fastLatinPrimaries)); } UCollationResult @@ -1592,21 +1592,21 @@ RuleBasedCollator::internalGetShortDefinitionString(const char *locale, appendAttribute(result, 'F', getAttribute(UCOL_FRENCH_COLLATION, errorCode), errorCode); } // Note: UCOL_HIRAGANA_QUATERNARY_MODE is deprecated and never changes away from default. - length = uloc_getKeywordValue(resultLocale, "collation", subtag, uprv_lengthof(subtag), &errorCode); + length = uloc_getKeywordValue(resultLocale, "collation", subtag, UPRV_LENGTHOF(subtag), &errorCode); appendSubtag(result, 'K', subtag, length, errorCode); - length = uloc_getLanguage(resultLocale, subtag, uprv_lengthof(subtag), &errorCode); + length = uloc_getLanguage(resultLocale, subtag, UPRV_LENGTHOF(subtag), &errorCode); appendSubtag(result, 'L', subtag, length, errorCode); if(attributeHasBeenSetExplicitly(UCOL_NORMALIZATION_MODE)) { appendAttribute(result, 'N', getAttribute(UCOL_NORMALIZATION_MODE, errorCode), errorCode); } - length = uloc_getCountry(resultLocale, subtag, uprv_lengthof(subtag), &errorCode); + length = uloc_getCountry(resultLocale, subtag, UPRV_LENGTHOF(subtag), &errorCode); appendSubtag(result, 'R', subtag, length, errorCode); if(attributeHasBeenSetExplicitly(UCOL_STRENGTH)) { appendAttribute(result, 'S', getAttribute(UCOL_STRENGTH, errorCode), errorCode); } - length = uloc_getVariant(resultLocale, subtag, uprv_lengthof(subtag), &errorCode); + length = uloc_getVariant(resultLocale, subtag, UPRV_LENGTHOF(subtag), &errorCode); appendSubtag(result, 'V', subtag, length, errorCode); - length = uloc_getScript(resultLocale, subtag, uprv_lengthof(subtag), &errorCode); + length = uloc_getScript(resultLocale, subtag, UPRV_LENGTHOF(subtag), &errorCode); appendSubtag(result, 'Z', subtag, length, errorCode); if(U_FAILURE(errorCode)) { return 0; } diff --git a/icu4c/source/i18n/scriptset.cpp b/icu4c/source/i18n/scriptset.cpp index 753518ff2cc..9be244e0bbf 100644 --- a/icu4c/source/i18n/scriptset.cpp +++ b/icu4c/source/i18n/scriptset.cpp @@ -27,7 +27,7 @@ U_NAMESPACE_BEGIN // //---------------------------------------------------------------------------- ScriptSet::ScriptSet() { - for (uint32_t i=0; i 0) { count++; @@ -171,7 +171,7 @@ int32_t ScriptSet::countMembers() const { int32_t ScriptSet::hashCode() const { int32_t hash = 0; - for (int32_t i=0; i= uprv_lengthof(type)) { + if(typeLength >= UPRV_LENGTHOF(type)) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; } @@ -177,7 +177,7 @@ CollationLoader::CollationLoader(const CollationCacheEntry *re, const Locale &re // Fetch the collation type from the locale ID. int32_t typeLength = requested.getKeywordValue("collation", - type, uprv_lengthof(type) - 1, errorCode); + type, UPRV_LENGTHOF(type) - 1, errorCode); if(U_FAILURE(errorCode)) { errorCode = U_ILLEGAL_ARGUMENT_ERROR; return; @@ -266,7 +266,7 @@ CollationLoader::loadFromBundle(UErrorCode &errorCode) { ures_getByKeyWithFallback(collations, "default", NULL, &internalErrorCode)); int32_t length; const UChar *s = ures_getString(def.getAlias(), &length, &internalErrorCode); - if(U_SUCCESS(internalErrorCode) && 0 < length && length < uprv_lengthof(defaultType)) { + if(U_SUCCESS(internalErrorCode) && 0 < length && length < UPRV_LENGTHOF(defaultType)) { u_UCharsToChars(s, defaultType, length + 1); } else { uprv_strcpy(defaultType, "standard"); @@ -424,7 +424,7 @@ CollationLoader::loadFromData(UErrorCode &errorCode) { &internalErrorCode)); int32_t length; const UChar *s = ures_getString(def.getAlias(), &length, &internalErrorCode); - if(U_SUCCESS(internalErrorCode) && length < uprv_lengthof(defaultType)) { + if(U_SUCCESS(internalErrorCode) && length < UPRV_LENGTHOF(defaultType)) { u_UCharsToChars(s, defaultType, length + 1); } else { uprv_strcpy(defaultType, "standard"); @@ -579,7 +579,7 @@ static const char RESOURCE_NAME[] = "collations"; static const char* const KEYWORDS[] = { "collation" }; -#define KEYWORD_COUNT uprv_lengthof(KEYWORDS) +#define KEYWORD_COUNT UPRV_LENGTHOF(KEYWORDS) U_CAPI UEnumeration* U_EXPORT2 ucol_getKeywords(UErrorCode *status) { diff --git a/icu4c/source/i18n/ucoleitr.cpp b/icu4c/source/i18n/ucoleitr.cpp index 7849bb9527d..e10c366a8f2 100644 --- a/icu4c/source/i18n/ucoleitr.cpp +++ b/icu4c/source/i18n/ucoleitr.cpp @@ -72,7 +72,7 @@ RCEBuffer::RCEBuffer() { buffer = defaultBuffer; bufferIndex = 0; - bufferSize = uprv_lengthof(defaultBuffer); + bufferSize = UPRV_LENGTHOF(defaultBuffer); } RCEBuffer::~RCEBuffer() @@ -122,7 +122,7 @@ PCEBuffer::PCEBuffer() { buffer = defaultBuffer; bufferIndex = 0; - bufferSize = uprv_lengthof(defaultBuffer); + bufferSize = UPRV_LENGTHOF(defaultBuffer); } PCEBuffer::~PCEBuffer() diff --git a/icu4c/source/i18n/zonemeta.cpp b/icu4c/source/i18n/zonemeta.cpp index 4f53b4dc761..e2c75e5577b 100644 --- a/icu4c/source/i18n/zonemeta.cpp +++ b/icu4c/source/i18n/zonemeta.cpp @@ -267,7 +267,7 @@ ZoneMeta::getCanonicalCLDRID(const UnicodeString &tzid, UErrorCode& status) { // If not, resolve CLDR canonical ID with resource data UBool isInputCanonical = FALSE; char id[ZID_KEY_MAX + 1]; - tzid.extract(0, 0x7fffffff, id, uprv_lengthof(id), US_INV); + tzid.extract(0, 0x7fffffff, id, UPRV_LENGTHOF(id), US_INV); // replace '/' with ':' char *p = id; diff --git a/icu4c/source/samples/numfmt/main.cpp b/icu4c/source/samples/numfmt/main.cpp index 018970ee9e3..ee375ff72b9 100644 --- a/icu4c/source/samples/numfmt/main.cpp +++ b/icu4c/source/samples/numfmt/main.cpp @@ -151,12 +151,12 @@ setNumberFormatCurrency_2_4(NumberFormat &nf, const char *currency, UErrorCode & int32_t i; - for(i=0; i0; /* U16_PREV pre-decrements */) { + printUString("iterate backward through: ", input, UPRV_LENGTHOF(input)); + for(i=UPRV_LENGTHOF(input); i>0; /* U16_PREV pre-decrements */) { U16_PREV(input, 0, i, c); /* Iterating backwards Codepoint at offset 5: U+0062 @@ -212,57 +212,57 @@ static void demoCaseMapInC() { /* uppercase */ isError=FALSE; - for(i=j=0; j=uprv_lengthof(strings)) { - i-=uprv_lengthof(strings); + if(i>=UPRV_LENGTHOF(strings)) { + i-=UPRV_LENGTHOF(strings); } u_memcpy(text+length, strings[i].s, strings[i].length); length+=strings[i].length; diff --git a/icu4c/source/test/cintltst/capitst.c b/icu4c/source/test/cintltst/capitst.c index 64ead15c00c..2759411c174 100644 --- a/icu4c/source/test/cintltst/capitst.c +++ b/icu4c/source/test/cintltst/capitst.c @@ -1858,7 +1858,7 @@ void TestGetTailoredSet() { int32_t buffLen = 0; USet *set = NULL; - for(i = 0; i < uprv_lengthof(setTest); i++) { + for(i = 0; i < UPRV_LENGTHOF(setTest); i++) { buffLen = u_unescape(setTest[i].rules, buff, 1024); coll = ucol_openRules(buff, buffLen, UCOL_DEFAULT, UCOL_DEFAULT, &pError, &status); if(U_SUCCESS(status)) { @@ -2126,9 +2126,9 @@ doSetsTest(const char *locale, const USet *ref, USet *set, const char* inSet, co if(!uset_containsAll(ref, set)) { log_err("%s: Some stuff from %s is not present in the set\n", locale, inSet); uset_removeAll(set, ref); - bufLen = uset_toPattern(set, buffer, uprv_lengthof(buffer), TRUE, status); + bufLen = uset_toPattern(set, buffer, UPRV_LENGTHOF(buffer), TRUE, status); log_info(" missing: %s\n", aescstrdup(buffer, bufLen)); - bufLen = uset_toPattern(ref, buffer, uprv_lengthof(buffer), TRUE, status); + bufLen = uset_toPattern(ref, buffer, UPRV_LENGTHOF(buffer), TRUE, status); log_info(" total: size=%i %s\n", uset_getItemCount(ref), aescstrdup(buffer, bufLen)); } @@ -2425,7 +2425,7 @@ static void TestGetKeywordValuesForLocale(void) { const char *locale = NULL, *value = NULL; UBool errorOccurred = FALSE; - for (i = 0; i < uprv_lengthof(PREFERRED) && !errorOccurred; i++) { + for (i = 0; i < UPRV_LENGTHOF(PREFERRED) && !errorOccurred; i++) { locale = PREFERRED[i][0]; value = NULL; valueLength = 0; diff --git a/icu4c/source/test/cintltst/cbiditst.c b/icu4c/source/test/cintltst/cbiditst.c index 0788977dd75..c6252360c70 100644 --- a/icu4c/source/test/cintltst/cbiditst.c +++ b/icu4c/source/test/cintltst/cbiditst.c @@ -729,7 +729,7 @@ testReorder(void) { log_verbose("\nEntering TestReorder\n\n"); - for(i=0;iarabic */ errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_AN, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(source) || memcmp(dest, en2an, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(source) || memcmp(dest, en2an, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(en2an)\n"); } /* arabic->european */ errorCode=U_ZERO_ERROR; length=u_shapeArabic(source, -1, - dest, uprv_lengthof(dest), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_AN2EN|U_SHAPE_DIGIT_TYPE_AN_EXTENDED, &errorCode); if(U_FAILURE(errorCode) || length!=u_strlen(source) || memcmp(dest, an2en, length*U_SIZEOF_UCHAR)!=0) { @@ -2481,78 +2481,78 @@ doArabicShapingTest(void) { /* european->arabic with context, logical order, initial state not AL */ errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_ALEN2AN_INIT_LR|U_SHAPE_DIGIT_TYPE_AN, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(source) || memcmp(dest, logical_alen2an_init_lr, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(source) || memcmp(dest, logical_alen2an_init_lr, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(logical_alen2an_init_lr)\n"); } /* european->arabic with context, logical order, initial state AL */ errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_ALEN2AN_INIT_AL|U_SHAPE_DIGIT_TYPE_AN_EXTENDED, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(source) || memcmp(dest, logical_alen2an_init_al, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(source) || memcmp(dest, logical_alen2an_init_al, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(logical_alen2an_init_al)\n"); } /* european->arabic with context, reverse order, initial state not AL */ errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_ALEN2AN_INIT_LR|U_SHAPE_DIGIT_TYPE_AN|U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(source) || memcmp(dest, reverse_alen2an_init_lr, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(source) || memcmp(dest, reverse_alen2an_init_lr, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(reverse_alen2an_init_lr)\n"); } /* european->arabic with context, reverse order, initial state AL */ errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_ALEN2AN_INIT_AL|U_SHAPE_DIGIT_TYPE_AN_EXTENDED|U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(source) || memcmp(dest, reverse_alen2an_init_al, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(source) || memcmp(dest, reverse_alen2an_init_al, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(reverse_alen2an_init_al)\n"); } /* test noop */ errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), 0, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(source) || memcmp(dest, source, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(source) || memcmp(dest, source, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(noop)\n"); } errorCode=U_ZERO_ERROR; length=u_shapeArabic(source, 0, - dest, uprv_lengthof(dest), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_AN, &errorCode); if(U_FAILURE(errorCode) || length!=0) { - log_err("failure in u_shapeArabic(en2an, sourceLength=0), returned %d/%s\n", u_errorName(errorCode), uprv_lengthof(source)); + log_err("failure in u_shapeArabic(en2an, sourceLength=0), returned %d/%s\n", u_errorName(errorCode), UPRV_LENGTHOF(source)); } /* preflight digit shaping */ errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), NULL, 0, U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_AN, &errorCode); - if(errorCode!=U_BUFFER_OVERFLOW_ERROR || length!=uprv_lengthof(source)) { + if(errorCode!=U_BUFFER_OVERFLOW_ERROR || length!=UPRV_LENGTHOF(source)) { log_err("failure in u_shapeArabic(en2an preflighting), returned %d/%s instead of %d/U_BUFFER_OVERFLOW_ERROR\n", - length, u_errorName(errorCode), uprv_lengthof(source)); + length, u_errorName(errorCode), UPRV_LENGTHOF(source)); } /* test illegal arguments */ errorCode=U_ZERO_ERROR; - length=u_shapeArabic(NULL, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(NULL, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_AN, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR) { @@ -2561,7 +2561,7 @@ doArabicShapingTest(void) { errorCode=U_ZERO_ERROR; length=u_shapeArabic(source, -2, - dest, uprv_lengthof(dest), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_AN, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR) { @@ -2569,8 +2569,8 @@ doArabicShapingTest(void) { } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - NULL, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + NULL, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_AN, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR) { @@ -2578,7 +2578,7 @@ doArabicShapingTest(void) { } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), dest, -1, U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_AN, &errorCode); @@ -2587,8 +2587,8 @@ doArabicShapingTest(void) { } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_RESERVED|U_SHAPE_DIGIT_TYPE_AN, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR) { @@ -2596,8 +2596,8 @@ doArabicShapingTest(void) { } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_RESERVED, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR) { @@ -2605,8 +2605,8 @@ doArabicShapingTest(void) { } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - (UChar *)(source+2), uprv_lengthof(dest), /* overlap source and destination */ + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + (UChar *)(source+2), UPRV_LENGTHOF(dest), /* overlap source and destination */ U_SHAPE_DIGITS_EN2AN|U_SHAPE_DIGIT_TYPE_AN, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR) { @@ -2614,11 +2614,11 @@ doArabicShapingTest(void) { } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(lamalef, uprv_lengthof(lamalef), - dest, uprv_lengthof(dest), + length=u_shapeArabic(lamalef, UPRV_LENGTHOF(lamalef), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_UNSHAPE | U_SHAPE_LENGTH_GROW_SHRINK | U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length == uprv_lengthof(lamalef)) { + if(U_FAILURE(errorCode) || length == UPRV_LENGTHOF(lamalef)) { log_err("failure in u_shapeArabic(U_SHAPE_LETTERS_UNSHAPE | U_SHAPE_LENGTH_GROW_SHRINK | U_SHAPE_TEXT_DIRECTION_VISUAL_LTR)\n"); log_err("returned %s instead of U_ZERO_ERROR or returned length %d instead of 3\n", u_errorName(errorCode), length); } @@ -2678,44 +2678,44 @@ doLamAlefSpecialVLTRArabicShapingTest(void) { errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE|U_SHAPE_LENGTH_FIXED_SPACES_NEAR| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(shape_near) || memcmp(dest, shape_near, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(shape_near) || memcmp(dest, shape_near, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(LAMALEF shape_near)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE|U_SHAPE_LENGTH_FIXED_SPACES_AT_END| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(shape_at_end) || memcmp(dest, shape_at_end, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(shape_at_end) || memcmp(dest, shape_at_end, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(LAMALEF shape_at_end)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE|U_SHAPE_LENGTH_FIXED_SPACES_AT_BEGINNING| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(shape_at_begin) || memcmp(dest, shape_at_begin, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(shape_at_begin) || memcmp(dest, shape_at_begin, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(LAMALEF shape_at_begin)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE|U_SHAPE_LENGTH_GROW_SHRINK| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); @@ -2728,44 +2728,44 @@ doLamAlefSpecialVLTRArabicShapingTest(void) { errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED|U_SHAPE_LENGTH_FIXED_SPACES_NEAR| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(shape_excepttashkeel_near) || memcmp(dest, shape_excepttashkeel_near, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(shape_excepttashkeel_near) || memcmp(dest, shape_excepttashkeel_near, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(LAMALEF shape_excepttashkeel_near)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED|U_SHAPE_LENGTH_FIXED_SPACES_AT_END| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(shape_excepttashkeel_at_end) || memcmp(dest,shape_excepttashkeel_at_end , length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(shape_excepttashkeel_at_end) || memcmp(dest,shape_excepttashkeel_at_end , length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(LAMALEF shape_excepttashkeel_at_end)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED|U_SHAPE_LENGTH_FIXED_SPACES_AT_BEGINNING| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(shape_excepttashkeel_at_begin) || memcmp(dest, shape_excepttashkeel_at_begin, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(shape_excepttashkeel_at_begin) || memcmp(dest, shape_excepttashkeel_at_begin, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(LAMALEF shape_excepttashkeel_at_begin)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED|U_SHAPE_LENGTH_GROW_SHRINK| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); @@ -2804,25 +2804,25 @@ doTashkeelSpecialVLTRArabicShapingTest(void) { errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE|U_SHAPE_LENGTH_FIXED_SPACES_NEAR| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(shape_near) || memcmp(dest, shape_near, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(shape_near) || memcmp(dest, shape_near, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(TASHKEEL shape_near)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED|U_SHAPE_LENGTH_FIXED_SPACES_NEAR| U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(shape_excepttashkeel_near) || memcmp(dest, shape_excepttashkeel_near, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(shape_excepttashkeel_near) || memcmp(dest, shape_excepttashkeel_near, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(TASHKEEL shape_excepttashkeel_near)\n"); } } @@ -2858,44 +2858,44 @@ doLOGICALArabicDeShapingTest(void) { errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_UNSHAPE|U_SHAPE_LENGTH_FIXED_SPACES_NEAR| U_SHAPE_TEXT_DIRECTION_LOGICAL, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(unshape_near) || memcmp(dest, unshape_near, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(unshape_near) || memcmp(dest, unshape_near, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(unshape_near)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_UNSHAPE|U_SHAPE_LENGTH_FIXED_SPACES_AT_END| U_SHAPE_TEXT_DIRECTION_LOGICAL, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(unshape_at_end) || memcmp(dest, unshape_at_end, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(unshape_at_end) || memcmp(dest, unshape_at_end, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(unshape_at_end)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_UNSHAPE|U_SHAPE_LENGTH_FIXED_SPACES_AT_BEGINNING| U_SHAPE_TEXT_DIRECTION_LOGICAL, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(unshape_at_begin) || memcmp(dest, unshape_at_begin, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(unshape_at_begin) || memcmp(dest, unshape_at_begin, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(unshape_at_begin)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(source, uprv_lengthof(source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(source, UPRV_LENGTHOF(source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_UNSHAPE|U_SHAPE_LENGTH_GROW_SHRINK| U_SHAPE_TEXT_DIRECTION_LOGICAL, &errorCode); @@ -2919,13 +2919,13 @@ doTailTest(void) { log_verbose("Trying old tail\n"); status = U_ZERO_ERROR; - length = u_shapeArabic(src, -1, dst, uprv_lengthof(dst), + length = u_shapeArabic(src, -1, dst, UPRV_LENGTHOF(dst), U_SHAPE_LETTERS_SHAPE|U_SHAPE_SEEN_TWOCELL_NEAR, &status); if(U_FAILURE(status)) { log_err("Fail: status %s\n", u_errorName(status)); } else if(length!=2) { log_err("Fail: len %d expected 3\n", length); - } else if(u_strncmp(dst,dst_old,uprv_lengthof(dst))) { + } else if(u_strncmp(dst,dst_old,UPRV_LENGTHOF(dst))) { log_err("Fail: got U+%04X U+%04X expected U+%04X U+%04X\n", dst[0],dst[1],dst_old[0],dst_old[1]); } else { @@ -2936,13 +2936,13 @@ doTailTest(void) { log_verbose("Trying new tail\n"); status = U_ZERO_ERROR; - length = u_shapeArabic(src, -1, dst, uprv_lengthof(dst), + length = u_shapeArabic(src, -1, dst, UPRV_LENGTHOF(dst), U_SHAPE_LETTERS_SHAPE|U_SHAPE_SEEN_TWOCELL_NEAR|U_SHAPE_TAIL_NEW_UNICODE, &status); if(U_FAILURE(status)) { log_err("Fail: status %s\n", u_errorName(status)); } else if(length!=2) { log_err("Fail: len %d expected 3\n", length); - } else if(u_strncmp(dst,dst_new,uprv_lengthof(dst))) { + } else if(u_strncmp(dst,dst_new,UPRV_LENGTHOF(dst))) { log_err("Fail: got U+%04X U+%04X expected U+%04X U+%04X\n", dst[0],dst[1],dst_new[0],dst_new[1]); } else { @@ -2980,48 +2980,48 @@ doArabicShapingTestForBug5421(void) { errorCode=U_ZERO_ERROR; - length=u_shapeArabic(persian_letters_source, uprv_lengthof(persian_letters_source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(persian_letters_source, UPRV_LENGTHOF(persian_letters_source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_LETTERS_SHAPE|U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(persian_letters) || memcmp(dest, persian_letters, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(persian_letters) || memcmp(dest, persian_letters, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(persian_letters)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(tashkeel_aggregation_source, uprv_lengthof(tashkeel_aggregation_source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(tashkeel_aggregation_source, UPRV_LENGTHOF(tashkeel_aggregation_source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_AGGREGATE_TASHKEEL|U_SHAPE_PRESERVE_PRESENTATION| U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED|U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(tashkeel_aggregation) || memcmp(dest, tashkeel_aggregation, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(tashkeel_aggregation) || memcmp(dest, tashkeel_aggregation, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(tashkeel_aggregation)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(untouched_presentation_source, uprv_lengthof(untouched_presentation_source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(untouched_presentation_source, UPRV_LENGTHOF(untouched_presentation_source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_PRESERVE_PRESENTATION| U_SHAPE_LETTERS_SHAPE|U_SHAPE_TEXT_DIRECTION_VISUAL_LTR, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(untouched_presentation) || memcmp(dest, untouched_presentation, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(untouched_presentation) || memcmp(dest, untouched_presentation, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(untouched_presentation)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(untouched_presentation_r_source, uprv_lengthof(untouched_presentation_r_source), - dest, uprv_lengthof(dest), + length=u_shapeArabic(untouched_presentation_r_source, UPRV_LENGTHOF(untouched_presentation_r_source), + dest, UPRV_LENGTHOF(dest), U_SHAPE_PRESERVE_PRESENTATION| U_SHAPE_LETTERS_SHAPE|U_SHAPE_TEXT_DIRECTION_LOGICAL, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(untouched_presentation_r) || memcmp(dest, untouched_presentation_r, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(untouched_presentation_r) || memcmp(dest, untouched_presentation_r, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(untouched_presentation_r)\n"); } } @@ -3069,89 +3069,89 @@ doArabicShapingTestForBug8703(void) { errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source1, uprv_lengthof(letters_source1), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source1, UPRV_LENGTHOF(letters_source1), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_RTL | U_SHAPE_TASHKEEL_BEGIN | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest1) || memcmp(dest, letters_dest1, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest1) || memcmp(dest, letters_dest1, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source1)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source2, uprv_lengthof(letters_source2), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source2, UPRV_LENGTHOF(letters_source2), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_RTL | U_SHAPE_TASHKEEL_END | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest2) || memcmp(dest, letters_dest2, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest2) || memcmp(dest, letters_dest2, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source2)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source3, uprv_lengthof(letters_source3), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source3, UPRV_LENGTHOF(letters_source3), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_RTL | U_SHAPE_TASHKEEL_RESIZE | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest3) || memcmp(dest, letters_dest3, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest3) || memcmp(dest, letters_dest3, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source3)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source4, uprv_lengthof(letters_source4), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source4, UPRV_LENGTHOF(letters_source4), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_RTL | U_SHAPE_TASHKEEL_REPLACE_BY_TATWEEL | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest4) || memcmp(dest, letters_dest4, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest4) || memcmp(dest, letters_dest4, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source4)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source5, uprv_lengthof(letters_source5), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source5, UPRV_LENGTHOF(letters_source5), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_LTR | U_SHAPE_TASHKEEL_BEGIN | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest5) || memcmp(dest, letters_dest5, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest5) || memcmp(dest, letters_dest5, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source5)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source6, uprv_lengthof(letters_source6), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source6, UPRV_LENGTHOF(letters_source6), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_LTR | U_SHAPE_TASHKEEL_END | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest6) || memcmp(dest, letters_dest6, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest6) || memcmp(dest, letters_dest6, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source6)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source7, uprv_lengthof(letters_source7), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source7, UPRV_LENGTHOF(letters_source7), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_LTR | U_SHAPE_TASHKEEL_RESIZE | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest7) || memcmp(dest, letters_dest7, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest7) || memcmp(dest, letters_dest7, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source7)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source8, uprv_lengthof(letters_source8), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source8, UPRV_LENGTHOF(letters_source8), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_LTR | U_SHAPE_TASHKEEL_REPLACE_BY_TATWEEL | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest8) || memcmp(dest, letters_dest8, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest8) || memcmp(dest, letters_dest8, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source8)\n"); } } @@ -3251,67 +3251,67 @@ doArabicShapingTestForBug9024(void) { errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source1, uprv_lengthof(letters_source1), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source1, UPRV_LENGTHOF(letters_source1), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_RTL | U_SHAPE_TASHKEEL_BEGIN | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest1) || memcmp(dest, letters_dest1, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest1) || memcmp(dest, letters_dest1, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source1)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source2, uprv_lengthof(letters_source2), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source2, UPRV_LENGTHOF(letters_source2), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_RTL | U_SHAPE_TASHKEEL_END | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest2) || memcmp(dest, letters_dest2, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest2) || memcmp(dest, letters_dest2, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source2)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source3, uprv_lengthof(letters_source3), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source3, UPRV_LENGTHOF(letters_source3), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_RTL | U_SHAPE_TASHKEEL_RESIZE | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest3) || memcmp(dest, letters_dest3, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest3) || memcmp(dest, letters_dest3, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source3)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source4, uprv_lengthof(letters_source4), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source4, UPRV_LENGTHOF(letters_source4), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_RTL | U_SHAPE_TASHKEEL_REPLACE_BY_TATWEEL | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest4) || memcmp(dest, letters_dest4, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest4) || memcmp(dest, letters_dest4, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source4)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source5, uprv_lengthof(letters_source5), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source5, UPRV_LENGTHOF(letters_source5), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_LTR | U_SHAPE_TASHKEEL_BEGIN | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest5) || memcmp(dest, letters_dest5, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest5) || memcmp(dest, letters_dest5, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source5)\n"); } errorCode=U_ZERO_ERROR; - length=u_shapeArabic(letters_source6, uprv_lengthof(letters_source6), - dest, uprv_lengthof(dest), + length=u_shapeArabic(letters_source6, UPRV_LENGTHOF(letters_source6), + dest, UPRV_LENGTHOF(dest), U_SHAPE_TEXT_DIRECTION_VISUAL_LTR | U_SHAPE_TASHKEEL_END | U_SHAPE_LETTERS_SHAPE, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(letters_dest6) || memcmp(dest, letters_dest6, length*U_SIZEOF_UCHAR)!=0) { + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(letters_dest6) || memcmp(dest, letters_dest6, length*U_SIZEOF_UCHAR)!=0) { log_err("failure in u_shapeArabic(letters_source6)\n"); } @@ -3550,7 +3550,7 @@ doArabicShapingTestForNewCharacters(void) { { 0x06D2, 0xFBAE, 0xFBAF, 0, 0, }, /* YEH BARREE */ { 0x06D3, 0xFBB0, 0xFBB1, 0, 0, }}; /* YEH BARREE WITH HAMZA ABOVE */ int32_t i; - for (i = 0; i < uprv_lengthof(letterForms); ++i) { + for (i = 0; i < UPRV_LENGTHOF(letterForms); ++i) { _testPresentationForms(letterForms[i]); } } @@ -3667,10 +3667,10 @@ options[] = { { MAKE_ITEMS(0) } }; -#define TC_COUNT uprv_lengthof(textIn) -#define MODES_COUNT uprv_lengthof(modes) -#define OPTIONS_COUNT uprv_lengthof(options) -#define LEVELS_COUNT uprv_lengthof(paraLevels) +#define TC_COUNT UPRV_LENGTHOF(textIn) +#define MODES_COUNT UPRV_LENGTHOF(modes) +#define OPTIONS_COUNT UPRV_LENGTHOF(options) +#define LEVELS_COUNT UPRV_LENGTHOF(paraLevels) static const char* const textIn[] = { /* (0) 123 */ @@ -4195,7 +4195,7 @@ testReorderRunsOnly(void) { for (option = 0; option < 2; option++) { ubidi_setReorderingOptions(pBiDi, option==0 ? UBIDI_OPTION_REMOVE_CONTROLS : UBIDI_OPTION_INSERT_MARKS); - for (i = 0, nCases = uprv_lengthof(testCases); i < nCases; i++) { + for (i = 0, nCases = UPRV_LENGTHOF(testCases); i < nCases; i++) { srcLen = strlen(testCases[i].textIn); pseudoToU16(srcLen, testCases[i].textIn, src); for(j = 0; j < 2; j++) { @@ -4434,7 +4434,7 @@ testStreaming(void) { int32_t srcLen, processedLen, chunk, len, nPortions; int i, j, levelIndex; UBiDiLevel level; - int nTests = uprv_lengthof(testData), nLevels = uprv_lengthof(paraLevels); + int nTests = UPRV_LENGTHOF(testData), nLevels = UPRV_LENGTHOF(paraLevels); UBool mismatch, testOK = TRUE; char processedLenStr[MAXPORTIONS * 5]; @@ -4524,7 +4524,7 @@ overrideBidiClass(const void *context, UChar32 c) { DEF, DEF, DEF, DEF, DEF, DEF, DEF, DEF, /* 70-77 */ DEF, DEF, DEF, LRO, B, RLO, BN, DEF /* 78-7F */ }; - static const int nEntries = uprv_lengthof(customClasses); + static const int nEntries = UPRV_LENGTHOF(customClasses); const char *dummy = context; /* just to avoid a compiler warning */ dummy++; @@ -4812,7 +4812,7 @@ static const contextCase contextData[] = { /*24*/ {"x|G", ".-=", "", "=-.", UBIDI_DEFAULT_LTR}, /*25*/ {"x|G", ".-=|-+*", "", "=-.|-+*", UBIDI_DEFAULT_LTR}, }; -#define CONTEXT_COUNT uprv_lengthof(contextData) +#define CONTEXT_COUNT UPRV_LENGTHOF(contextData) static void testContext(void) { diff --git a/icu4c/source/test/cintltst/ccapitst.c b/icu4c/source/test/cintltst/ccapitst.c index 2927cc34f62..31661872b36 100644 --- a/icu4c/source/test/cintltst/ccapitst.c +++ b/icu4c/source/test/cintltst/ccapitst.c @@ -1678,7 +1678,7 @@ static void TestConvertSafeClone() }; /* store the actual sizes of each converter */ - int32_t actualSizes[uprv_lengthof(names)]; + int32_t actualSizes[UPRV_LENGTHOF(names)]; static const int32_t bufferSizes[] = { U_CNV_SAFECLONE_BUFFERSIZE, @@ -1792,8 +1792,8 @@ static void TestConvertSafeClone() /* Do these cloned converters work at all - shuffle UChars to chars & back again..*/ - for(j = 0; j < uprv_lengthof(bufferSizes); ++j) { - for (idx = 0; idx < uprv_lengthof(names); idx++) + for(j = 0; j < UPRV_LENGTHOF(bufferSizes); ++j) { + for (idx = 0; idx < UPRV_LENGTHOF(names); idx++) { err = U_ZERO_ERROR; cnv = ucnv_open(names[idx], &err); @@ -2517,7 +2517,7 @@ static void testFromTruncatedUTF8(UConverter *utf8Cnv, UConverter *cnv, const ch memcpy(utf8, charUTF8, charUTF8Length); - for(i=0; i=(1+U8_COUNT_TRAIL_BYTES(badUTF8[i][0]))) { @@ -2536,7 +2536,7 @@ static void testFromTruncatedUTF8(UConverter *utf8Cnv, UConverter *cnv, const ch ucnv_convertEx(cnv, utf8Cnv, &target, output+sizeof(output), &source, utf8+utf8Length, - pivotBuffer, &pivotSource, &pivotTarget, pivotBuffer+uprv_lengthof(pivotBuffer), + pivotBuffer, &pivotSource, &pivotTarget, pivotBuffer+UPRV_LENGTHOF(pivotBuffer), TRUE, TRUE, /* reset & flush */ &errorCode); outputLength=(int32_t)(target-output); @@ -2581,7 +2581,7 @@ static void testFromBadUTF8(UConverter *utf8Cnv, UConverter *cnv, const char *co memcpy(expect, char0, char0Length); expectLength=char0Length; - for(i=0; i %s\n", aLocale, testL[i], u_errorName(errorCode)); } else { @@ -734,7 +734,7 @@ static void TestDisplayNames() if(ec==U_BUFFER_OVERFLOW_ERROR) { ec=U_ZERO_ERROR; } - len=uloc_getDisplayName(locale, displayLocale, result, uprv_lengthof(result), &ec); + len=uloc_getDisplayName(locale, displayLocale, result, UPRV_LENGTHOF(result), &ec); if(U_FAILURE(ec)) { log_err("uloc_getDisplayName(%s, %s...) returned error: %s", locale, displayLocale, u_errorName(ec)); @@ -2781,7 +2781,7 @@ static void TestCalendar() { log_err_status(status, "Could not open res_index.res. Exiting. Error: %s\n", u_errorName(status)); return; } - for (i=0; i=0) { log_err("unorm2_getDecomposition(fcc, space) failed\n"); } errorCode=U_ZERO_ERROR; - length=unorm2_getDecomposition(n2, 0xe4, decomp, uprv_lengthof(decomp), &errorCode); + length=unorm2_getDecomposition(n2, 0xe4, decomp, UPRV_LENGTHOF(decomp), &errorCode); if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x61 || decomp[1]!=0x308 || decomp[2]!=0) { log_err("unorm2_getDecomposition(fcc, a-umlaut) failed\n"); } errorCode=U_ZERO_ERROR; - length=unorm2_getDecomposition(n2, 0xac01, decomp, uprv_lengthof(decomp), &errorCode); + length=unorm2_getDecomposition(n2, 0xac01, decomp, UPRV_LENGTHOF(decomp), &errorCode); if(U_FAILURE(errorCode) || length!=3 || decomp[0]!=0x1100 || decomp[1]!=0x1161 || decomp[2]!=0x11a8 || decomp[3]!=0) { log_err("unorm2_getDecomposition(fcc, Hangul syllable U+AC01) failed\n"); } @@ -1530,35 +1530,35 @@ TestGetRawDecomposition() { * without recursive decomposition. */ - length=unorm2_getRawDecomposition(n2, 0x20, decomp, uprv_lengthof(decomp), &errorCode); + length=unorm2_getRawDecomposition(n2, 0x20, decomp, UPRV_LENGTHOF(decomp), &errorCode); if(U_FAILURE(errorCode) || length>=0) { log_err("unorm2_getDecomposition(nfkc, space) failed\n"); } errorCode=U_ZERO_ERROR; - length=unorm2_getRawDecomposition(n2, 0xe4, decomp, uprv_lengthof(decomp), &errorCode); + length=unorm2_getRawDecomposition(n2, 0xe4, decomp, UPRV_LENGTHOF(decomp), &errorCode); if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x61 || decomp[1]!=0x308 || decomp[2]!=0) { log_err("unorm2_getDecomposition(nfkc, a-umlaut) failed\n"); } /* U+1E08 LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE */ errorCode=U_ZERO_ERROR; - length=unorm2_getRawDecomposition(n2, 0x1e08, decomp, uprv_lengthof(decomp), &errorCode); + length=unorm2_getRawDecomposition(n2, 0x1e08, decomp, UPRV_LENGTHOF(decomp), &errorCode); if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0xc7 || decomp[1]!=0x301 || decomp[2]!=0) { log_err("unorm2_getDecomposition(nfkc, c-cedilla-acute) failed\n"); } /* U+212B ANGSTROM SIGN */ errorCode=U_ZERO_ERROR; - length=unorm2_getRawDecomposition(n2, 0x212b, decomp, uprv_lengthof(decomp), &errorCode); + length=unorm2_getRawDecomposition(n2, 0x212b, decomp, UPRV_LENGTHOF(decomp), &errorCode); if(U_FAILURE(errorCode) || length!=1 || decomp[0]!=0xc5 || decomp[1]!=0) { log_err("unorm2_getDecomposition(nfkc, angstrom sign) failed\n"); } errorCode=U_ZERO_ERROR; - length=unorm2_getRawDecomposition(n2, 0xac00, decomp, uprv_lengthof(decomp), &errorCode); + length=unorm2_getRawDecomposition(n2, 0xac00, decomp, UPRV_LENGTHOF(decomp), &errorCode); if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x1100 || decomp[1]!=0x1161 || decomp[2]!=0) { log_err("unorm2_getDecomposition(nfkc, Hangul syllable U+AC00) failed\n"); } /* A Hangul LVT syllable has a raw decomposition of an LV syllable + T. */ errorCode=U_ZERO_ERROR; - length=unorm2_getRawDecomposition(n2, 0xac01, decomp, uprv_lengthof(decomp), &errorCode); + length=unorm2_getRawDecomposition(n2, 0xac01, decomp, UPRV_LENGTHOF(decomp), &errorCode); if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0xac00 || decomp[1]!=0x11a8 || decomp[2]!=0) { log_err("unorm2_getDecomposition(nfkc, Hangul syllable U+AC01) failed\n"); } @@ -1599,7 +1599,7 @@ TestAppendRestoreMiddle() { * (Let it modify the destination buffer before reallocating internally.) */ length=unorm2_append(n2, a, -1, 6, b, -1, &errorCode); - if(errorCode!=U_BUFFER_OVERFLOW_ERROR || length!=uprv_lengthof(expected)) { + if(errorCode!=U_BUFFER_OVERFLOW_ERROR || length!=UPRV_LENGTHOF(expected)) { log_err("unorm2_append(preflight) returned wrong length of %d\n", (int)length); return; } @@ -1609,8 +1609,8 @@ TestAppendRestoreMiddle() { return; } errorCode=U_ZERO_ERROR; - length=unorm2_append(n2, a, -1, uprv_lengthof(a), b, -1, &errorCode); - if(U_FAILURE(errorCode) || length!=uprv_lengthof(expected) || 0!=u_memcmp(a, expected, length)) { + length=unorm2_append(n2, a, -1, UPRV_LENGTHOF(a), b, -1, &errorCode); + if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(expected) || 0!=u_memcmp(a, expected, length)) { log_err("unorm2_append(real) failed - %s, length %d\n", u_errorName(errorCode), (int)length); return; } @@ -1631,7 +1631,7 @@ TestGetEasyToUseInstance() { log_err_status(errorCode, "unorm2_getNFCInstance() failed: %s\n", u_errorName(errorCode)); return; } - length=unorm2_normalize(n2, in, uprv_lengthof(in), out, uprv_lengthof(out), &errorCode); + length=unorm2_normalize(n2, in, UPRV_LENGTHOF(in), out, UPRV_LENGTHOF(out), &errorCode); if(U_FAILURE(errorCode) || length!=2 || out[0]!=0xa0 || out[1]!=0x1e08) { log_err("unorm2_getNFCInstance() did not return an NFC instance (normalized length=%d; %s)\n", (int)length, u_errorName(errorCode)); @@ -1643,7 +1643,7 @@ TestGetEasyToUseInstance() { log_err_status(errorCode, "unorm2_getNFDInstance() failed: %s\n", u_errorName(errorCode)); return; } - length=unorm2_normalize(n2, in, uprv_lengthof(in), out, uprv_lengthof(out), &errorCode); + length=unorm2_normalize(n2, in, UPRV_LENGTHOF(in), out, UPRV_LENGTHOF(out), &errorCode); if(U_FAILURE(errorCode) || length!=4 || out[0]!=0xa0 || out[1]!=0x43 || out[2]!=0x327 || out[3]!=0x301) { log_err("unorm2_getNFDInstance() did not return an NFD instance (normalized length=%d; %s)\n", (int)length, u_errorName(errorCode)); @@ -1655,7 +1655,7 @@ TestGetEasyToUseInstance() { log_err_status(errorCode, "unorm2_getNFKCInstance() failed: %s\n", u_errorName(errorCode)); return; } - length=unorm2_normalize(n2, in, uprv_lengthof(in), out, uprv_lengthof(out), &errorCode); + length=unorm2_normalize(n2, in, UPRV_LENGTHOF(in), out, UPRV_LENGTHOF(out), &errorCode); if(U_FAILURE(errorCode) || length!=2 || out[0]!=0x20 || out[1]!=0x1e08) { log_err("unorm2_getNFKCInstance() did not return an NFKC instance (normalized length=%d; %s)\n", (int)length, u_errorName(errorCode)); @@ -1667,7 +1667,7 @@ TestGetEasyToUseInstance() { log_err_status(errorCode, "unorm2_getNFKDInstance() failed: %s\n", u_errorName(errorCode)); return; } - length=unorm2_normalize(n2, in, uprv_lengthof(in), out, uprv_lengthof(out), &errorCode); + length=unorm2_normalize(n2, in, UPRV_LENGTHOF(in), out, UPRV_LENGTHOF(out), &errorCode); if(U_FAILURE(errorCode) || length!=4 || out[0]!=0x20 || out[1]!=0x43 || out[2]!=0x327 || out[3]!=0x301) { log_err("unorm2_getNFKDInstance() did not return an NFKD instance (normalized length=%d; %s)\n", (int)length, u_errorName(errorCode)); @@ -1679,7 +1679,7 @@ TestGetEasyToUseInstance() { log_err_status(errorCode, "unorm2_getNFKCCasefoldInstance() failed: %s\n", u_errorName(errorCode)); return; } - length=unorm2_normalize(n2, in, uprv_lengthof(in), out, uprv_lengthof(out), &errorCode); + length=unorm2_normalize(n2, in, UPRV_LENGTHOF(in), out, UPRV_LENGTHOF(out), &errorCode); if(U_FAILURE(errorCode) || length!=2 || out[0]!=0x20 || out[1]!=0x1e09) { log_err("unorm2_getNFKCCasefoldInstance() did not return an NFKC_Casefold instance (normalized length=%d; %s)\n", (int)length, u_errorName(errorCode)); diff --git a/icu4c/source/test/cintltst/crestst.c b/icu4c/source/test/cintltst/crestst.c index 0e8fd482a9a..52346f55087 100644 --- a/icu4c/source/test/cintltst/crestst.c +++ b/icu4c/source/test/cintltst/crestst.c @@ -712,7 +712,7 @@ TestTable32(void) { } /* search for some items by key */ - for(i=0; ifffd) failed - %s\n", u_errorName(errorCode)); } @@ -1908,12 +1908,12 @@ static void Test_strFromJavaModifiedUTF8() { errorCode=U_ZERO_ERROR; length=numSubstitutions=-5; p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length, - (const char *)invalid, uprv_lengthof(invalid), + (const char *)invalid, UPRV_LENGTHOF(invalid), 0x50000, &numSubstitutions, &errorCode); if( U_FAILURE(errorCode) || p!=dest || - length!=uprv_lengthof(invalidExpected50000) || 0!=memcmp(dest, invalidExpected50000, length) || + length!=UPRV_LENGTHOF(invalidExpected50000) || 0!=memcmp(dest, invalidExpected50000, length) || dest[length]!=0 || - numSubstitutions!=uprv_lengthof(invalidExpectedFFFD) /* not ...50000 */ + numSubstitutions!=UPRV_LENGTHOF(invalidExpectedFFFD) /* not ...50000 */ ) { log_err("u_strFromJavaModifiedUTF8WithSub(invalid->50000) failed - %s\n", u_errorName(errorCode)); } @@ -1921,7 +1921,7 @@ static void Test_strFromJavaModifiedUTF8() { errorCode=U_ZERO_ERROR; length=numSubstitutions=-5; p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length, - (const char *)invalid, uprv_lengthof(invalid), + (const char *)invalid, UPRV_LENGTHOF(invalid), U_SENTINEL, &numSubstitutions, &errorCode); if(errorCode!=U_INVALID_CHAR_FOUND || dest[0]!=0xffff || numSubstitutions!=0) { log_err("u_strFromJavaModifiedUTF8WithSub(invalid->error) failed - %s\n", u_errorName(errorCode)); @@ -1930,10 +1930,10 @@ static void Test_strFromJavaModifiedUTF8() { errorCode=U_ZERO_ERROR; length=numSubstitutions=-5; p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length, - (const char *)src, uprv_lengthof(src), + (const char *)src, UPRV_LENGTHOF(src), U_SENTINEL, &numSubstitutions, &errorCode); if( errorCode!=U_INVALID_CHAR_FOUND || - length>=uprv_lengthof(expected) || dest[uprv_lengthof(expected)-1]!=0xffff || + length>=UPRV_LENGTHOF(expected) || dest[UPRV_LENGTHOF(expected)-1]!=0xffff || numSubstitutions!=0 ) { log_err("u_strFromJavaModifiedUTF8WithSub(normal->error) failed - %s\n", u_errorName(errorCode)); @@ -1944,7 +1944,7 @@ static void Test_strFromJavaModifiedUTF8() { errorCode=U_ZERO_ERROR; length=numSubstitutions=-5; p=u_strFromJavaModifiedUTF8WithSub(NULL, sizeof(dest), &length, - (const char *)src, uprv_lengthof(src), + (const char *)src, UPRV_LENGTHOF(src), 0xfffd, &numSubstitutions, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) { log_err("u_strFromJavaModifiedUTF8WithSub(dest=NULL) failed - %s\n", u_errorName(errorCode)); @@ -1953,7 +1953,7 @@ static void Test_strFromJavaModifiedUTF8() { errorCode=U_ZERO_ERROR; length=numSubstitutions=-5; p=u_strFromJavaModifiedUTF8WithSub(dest, -1, &length, - (const char *)src, uprv_lengthof(src), + (const char *)src, UPRV_LENGTHOF(src), 0xfffd, &numSubstitutions, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) { log_err("u_strFromJavaModifiedUTF8WithSub(destCapacity<0) failed - %s\n", u_errorName(errorCode)); @@ -1962,7 +1962,7 @@ static void Test_strFromJavaModifiedUTF8() { errorCode=U_ZERO_ERROR; length=numSubstitutions=-5; p=u_strFromJavaModifiedUTF8WithSub(dest, sizeof(dest), &length, - NULL, uprv_lengthof(src), + NULL, UPRV_LENGTHOF(src), 0xfffd, &numSubstitutions, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) { log_err("u_strFromJavaModifiedUTF8WithSub(src=NULL) failed - %s\n", u_errorName(errorCode)); @@ -1979,7 +1979,7 @@ static void Test_strFromJavaModifiedUTF8() { errorCode=U_ZERO_ERROR; length=numSubstitutions=-5; p=u_strFromJavaModifiedUTF8WithSub(dest, sizeof(dest), &length, - (const char *)src, uprv_lengthof(src), + (const char *)src, UPRV_LENGTHOF(src), 0x110000, &numSubstitutions, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) { log_err("u_strFromJavaModifiedUTF8WithSub(subchar=U_SENTINEL) failed - %s\n", u_errorName(errorCode)); @@ -1988,7 +1988,7 @@ static void Test_strFromJavaModifiedUTF8() { errorCode=U_ZERO_ERROR; length=numSubstitutions=-5; p=u_strFromJavaModifiedUTF8WithSub(dest, sizeof(dest), &length, - (const char *)src, uprv_lengthof(src), + (const char *)src, UPRV_LENGTHOF(src), 0xdfff, &numSubstitutions, &errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) { log_err("u_strFromJavaModifiedUTF8WithSub(subchar is surrogate) failed - %s\n", u_errorName(errorCode)); @@ -2012,7 +2012,7 @@ static void TestNullEmptySource() { dest16[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strFromUTF8(dest16, uprv_lengthof(dest16), &length, NULL, 0, &errorCode); + u_strFromUTF8(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) { log_err("u_strFromUTF8(source=NULL, sourceLength=0) failed\n"); } @@ -2020,7 +2020,7 @@ static void TestNullEmptySource() { dest16[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strFromUTF8WithSub(dest16, uprv_lengthof(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode); + u_strFromUTF8WithSub(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) { log_err("u_strFromUTF8WithSub(source=NULL, sourceLength=0) failed\n"); } @@ -2028,7 +2028,7 @@ static void TestNullEmptySource() { dest16[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strFromUTF8Lenient(dest16, uprv_lengthof(dest16), &length, NULL, 0, &errorCode); + u_strFromUTF8Lenient(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) { log_err("u_strFromUTF8Lenient(source=NULL, sourceLength=0) failed\n"); } @@ -2036,7 +2036,7 @@ static void TestNullEmptySource() { dest16[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strFromUTF32(dest16, uprv_lengthof(dest16), &length, NULL, 0, &errorCode); + u_strFromUTF32(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) { log_err("u_strFromUTF32(source=NULL, sourceLength=0) failed\n"); } @@ -2044,7 +2044,7 @@ static void TestNullEmptySource() { dest16[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strFromUTF32WithSub(dest16, uprv_lengthof(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode); + u_strFromUTF32WithSub(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) { log_err("u_strFromUTF32WithSub(source=NULL, sourceLength=0) failed\n"); } @@ -2052,7 +2052,7 @@ static void TestNullEmptySource() { dest16[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strFromJavaModifiedUTF8WithSub(dest16, uprv_lengthof(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode); + u_strFromJavaModifiedUTF8WithSub(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) { log_err("u_strFromJavaModifiedUTF8WithSub(source=NULL, sourceLength=0) failed\n"); } @@ -2062,7 +2062,7 @@ static void TestNullEmptySource() { dest8[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strToUTF8(dest8, uprv_lengthof(dest8), &length, NULL, 0, &errorCode); + u_strToUTF8(dest8, UPRV_LENGTHOF(dest8), &length, NULL, 0, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest8[0]!=0 || dest8[1]!=3) { log_err("u_strToUTF8(source=NULL, sourceLength=0) failed\n"); } @@ -2070,7 +2070,7 @@ static void TestNullEmptySource() { dest8[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strToUTF8WithSub(dest8, uprv_lengthof(dest8), &length, NULL, 0, 0xfffd, NULL, &errorCode); + u_strToUTF8WithSub(dest8, UPRV_LENGTHOF(dest8), &length, NULL, 0, 0xfffd, NULL, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest8[0]!=0 || dest8[1]!=3) { log_err("u_strToUTF8(source=NULL, sourceLength=0) failed\n"); } @@ -2078,7 +2078,7 @@ static void TestNullEmptySource() { dest32[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strToUTF32(dest32, uprv_lengthof(dest32), &length, NULL, 0, &errorCode); + u_strToUTF32(dest32, UPRV_LENGTHOF(dest32), &length, NULL, 0, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest32[0]!=0 || dest32[1]!=3) { log_err("u_strToUTF32(source=NULL, sourceLength=0) failed\n"); } @@ -2086,7 +2086,7 @@ static void TestNullEmptySource() { dest32[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strToUTF32WithSub(dest32, uprv_lengthof(dest32), &length, NULL, 0, 0xfffd, NULL, &errorCode); + u_strToUTF32WithSub(dest32, UPRV_LENGTHOF(dest32), &length, NULL, 0, 0xfffd, NULL, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest32[0]!=0 || dest32[1]!=3) { log_err("u_strToUTF32WithSub(source=NULL, sourceLength=0) failed\n"); } @@ -2094,7 +2094,7 @@ static void TestNullEmptySource() { dest8[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strToJavaModifiedUTF8(dest8, uprv_lengthof(dest8), &length, NULL, 0, &errorCode); + u_strToJavaModifiedUTF8(dest8, UPRV_LENGTHOF(dest8), &length, NULL, 0, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest8[0]!=0 || dest8[1]!=3) { log_err("u_strToJavaModifiedUTF8(source=NULL, sourceLength=0) failed\n"); } @@ -2104,7 +2104,7 @@ static void TestNullEmptySource() { dest16[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strFromWCS(dest16, uprv_lengthof(dest16), &length, NULL, 0, &errorCode); + u_strFromWCS(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) { log_err("u_strFromWCS(source=NULL, sourceLength=0) failed\n"); } @@ -2112,7 +2112,7 @@ static void TestNullEmptySource() { destW[0]=3; length=3; errorCode=U_ZERO_ERROR; - u_strToWCS(destW, uprv_lengthof(destW), &length, NULL, 0, &errorCode); + u_strToWCS(destW, UPRV_LENGTHOF(destW), &length, NULL, 0, &errorCode); if(errorCode!=U_ZERO_ERROR || length!=0 || destW[0]!=0 || destW[1]!=3) { log_err("u_strToWCS(source=NULL, sourceLength=0) failed\n"); } diff --git a/icu4c/source/test/cintltst/custrtst.c b/icu4c/source/test/cintltst/custrtst.c index 09265ca921d..fe84080afb0 100644 --- a/icu4c/source/test/cintltst/custrtst.c +++ b/icu4c/source/test/cintltst/custrtst.c @@ -718,12 +718,12 @@ TestSurrogateSearching() { if( first!=u_strchr(s, nul) || first!=u_strchr32(s, nul) || - first!=u_memchr(s, nul, uprv_lengthof(s)) || - first!=u_memchr32(s, nul, uprv_lengthof(s)) || + first!=u_memchr(s, nul, UPRV_LENGTHOF(s)) || + first!=u_memchr32(s, nul, UPRV_LENGTHOF(s)) || first!=u_strrchr(s, nul) || first!=u_strrchr32(s, nul) || - first!=u_memrchr(s, nul, uprv_lengthof(s)) || - first!=u_memrchr32(s, nul, uprv_lengthof(s)) + first!=u_memrchr(s, nul, UPRV_LENGTHOF(s)) || + first!=u_memrchr32(s, nul, UPRV_LENGTHOF(s)) ) { log_err("error: one of the u_str[|mem][r]chr[32](s, nul) does not find the terminator of s\n"); } @@ -733,13 +733,13 @@ TestSurrogateSearching() { s!=u_strstr(s, &nul) || s!=u_strFindFirst(s, -1, &nul, -1) || s!=u_strFindFirst(s, -1, &nul, 0) || - s!=u_strFindFirst(s, uprv_lengthof(s), &nul, -1) || - s!=u_strFindFirst(s, uprv_lengthof(s), &nul, 0) || + s!=u_strFindFirst(s, UPRV_LENGTHOF(s), &nul, -1) || + s!=u_strFindFirst(s, UPRV_LENGTHOF(s), &nul, 0) || s!=u_strrstr(s, &nul) || s!=u_strFindLast(s, -1, &nul, -1) || s!=u_strFindLast(s, -1, &nul, 0) || - s!=u_strFindLast(s, uprv_lengthof(s), &nul, -1) || - s!=u_strFindLast(s, uprv_lengthof(s), &nul, 0) + s!=u_strFindLast(s, UPRV_LENGTHOF(s), &nul, -1) || + s!=u_strFindLast(s, UPRV_LENGTHOF(s), &nul, 0) ) { log_err("error: one of the u_str[str etc](s, \"\") does not find s itself\n"); } @@ -1143,7 +1143,7 @@ TestCountChar32() { int32_t i, length, number; /* test u_strHasMoreChar32Than() with length>=0 */ - length=uprv_lengthof(string); + length=UPRV_LENGTHOF(string); while(length>=0) { for(i=0; i<=length; ++i) { for(number=-1; number<=((length-i)+2); ++number) { @@ -1154,7 +1154,7 @@ TestCountChar32() { } /* test u_strHasMoreChar32Than() with NUL-termination (length=-1) */ - length=uprv_lengthof(string); + length=UPRV_LENGTHOF(string); u_memcpy(buffer, string, length); while(length>=0) { buffer[length]=0; @@ -1453,7 +1453,7 @@ TestUCharIterator() { } /* test get/set state */ - length=uprv_lengthof(text)-1; + length=UPRV_LENGTHOF(text)-1; uiter_setString(&iter1, text, -1); uiter_setString(&iter2, text, length); testIteratorState(&iter1, &iter2, "UTF16IteratorState", length/2); @@ -1476,7 +1476,7 @@ TestUCharIterator() { compareIterators(&iter1, "UTF16Iterator", &iter2, "UTF8Iterator_1"); /* test get/set state */ - length=uprv_lengthof(text)-1; + length=UPRV_LENGTHOF(text)-1; uiter_setUTF8(&iter1, bytes, -1); testIteratorState(&iter1, &iter2, "UTF8IteratorState", length/2); testIteratorState(&iter1, &iter2, "UTF8IteratorStatePlus1", length/2+1); diff --git a/icu4c/source/test/cintltst/idnatest.c b/icu4c/source/test/cintltst/idnatest.c index eb087193c58..b45819afcc9 100644 --- a/icu4c/source/test/cintltst/idnatest.c +++ b/icu4c/source/test/cintltst/idnatest.c @@ -721,8 +721,8 @@ static void TestLength(){ 0xFE0F, 0xFEFF, 0x0000 }; - int32_t len1 = uprv_lengthof(ul1)-1/*remove the null termination*/; - int32_t destLen = uprv_lengthof(dest); + int32_t len1 = UPRV_LENGTHOF(ul1)-1/*remove the null termination*/; + int32_t destLen = UPRV_LENGTHOF(dest); UErrorCode status = U_ZERO_ERROR; UParseError ps; int32_t len = (int32_t)strlen(cl); @@ -733,14 +733,14 @@ static void TestLength(){ } status = U_ZERO_ERROR; - destLen = uprv_lengthof(dest); + destLen = UPRV_LENGTHOF(dest); len = -1; destLen = uidna_toUnicode(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status); if(status != U_ZERO_ERROR){ log_err_status(status, "uidna_toUnicode failed with error %s.\n", u_errorName(status)); } status = U_ZERO_ERROR; - destLen = uprv_lengthof(dest); + destLen = UPRV_LENGTHOF(dest); len = (int32_t)strlen(cl); destLen = uidna_toASCII(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status); if(status != U_IDNA_LABEL_TOO_LONG_ERROR){ @@ -748,7 +748,7 @@ static void TestLength(){ } status = U_ZERO_ERROR; - destLen = uprv_lengthof(dest); + destLen = UPRV_LENGTHOF(dest); len = -1; destLen = uidna_toASCII(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status); if(status != U_IDNA_LABEL_TOO_LONG_ERROR){ @@ -756,14 +756,14 @@ static void TestLength(){ } status = U_ZERO_ERROR; - destLen = uprv_lengthof(dest); + destLen = UPRV_LENGTHOF(dest); destLen = uidna_toASCII(ul1, len1, dest, destLen, UIDNA_DEFAULT, &ps, &status); if(status != U_ZERO_ERROR){ log_err_status(status, "uidna_toASCII failed with error %s.\n", u_errorName(status)); } status = U_ZERO_ERROR; - destLen = uprv_lengthof(dest); + destLen = UPRV_LENGTHOF(dest); len1 = -1; destLen = uidna_toASCII(ul1, len1, dest, destLen, UIDNA_DEFAULT, &ps, &status); if(status != U_ZERO_ERROR){ @@ -774,7 +774,7 @@ static void TestLength(){ static const char* cl = "my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.ibm.com"; UChar ul[400] = {'\0'}; UChar dest[400] = {'\0'}; - int32_t destLen = uprv_lengthof(dest); + int32_t destLen = UPRV_LENGTHOF(dest); UErrorCode status = U_ZERO_ERROR; UParseError ps; int32_t len = (int32_t)strlen(cl); @@ -786,7 +786,7 @@ static void TestLength(){ } status = U_ZERO_ERROR; - destLen = uprv_lengthof(dest); + destLen = UPRV_LENGTHOF(dest); len = -1; destLen = uidna_IDNToUnicode(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status); if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){ @@ -794,7 +794,7 @@ static void TestLength(){ } status = U_ZERO_ERROR; - destLen = uprv_lengthof(dest); + destLen = UPRV_LENGTHOF(dest); len = (int32_t)strlen(cl); destLen = uidna_IDNToASCII(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status); if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){ @@ -802,7 +802,7 @@ static void TestLength(){ } status = U_ZERO_ERROR; - destLen = uprv_lengthof(dest); + destLen = UPRV_LENGTHOF(dest); len = -1; destLen = uidna_IDNToASCII(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status); if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){ @@ -879,7 +879,7 @@ static void TestUTS46() { /* These calls should succeed. */ length = uidna_labelToASCII(uts46, fA_sharps16, -1, - dest16, uprv_lengthof(dest16), &info, &errorCode); + dest16, UPRV_LENGTHOF(dest16), &info, &errorCode); if( U_FAILURE(errorCode) || length != 4 || 0 != u_memcmp(dest16, fass16, 5) || !info.isTransitionalDifferent || info.errors != 0 ) { @@ -887,7 +887,7 @@ static void TestUTS46() { } errorCode = U_ZERO_ERROR; length = uidna_labelToUnicode(uts46, fA_sharps16, u_strlen(fA_sharps16), - dest16, uprv_lengthof(dest16), &info, &errorCode); + dest16, UPRV_LENGTHOF(dest16), &info, &errorCode); if( U_FAILURE(errorCode) || length != 3 || 0 != u_memcmp(dest16, fa_sharps16, 4) || !info.isTransitionalDifferent || info.errors != 0 ) { @@ -914,7 +914,7 @@ static void TestUTS46() { errorCode = U_ZERO_ERROR; length = uidna_labelToASCII_UTF8(uts46, fA_sharps8, -1, - dest8, uprv_lengthof(dest8), &info, &errorCode); + dest8, UPRV_LENGTHOF(dest8), &info, &errorCode); if( U_FAILURE(errorCode) || length != 4 || 0 != memcmp(dest8, fass8, 5) || !info.isTransitionalDifferent || info.errors != 0 ) { @@ -922,7 +922,7 @@ static void TestUTS46() { } errorCode = U_ZERO_ERROR; length = uidna_labelToUnicodeUTF8(uts46, fA_sharps8, strlen(fA_sharps8), - dest8, uprv_lengthof(dest8), &info, &errorCode); + dest8, UPRV_LENGTHOF(dest8), &info, &errorCode); if( U_FAILURE(errorCode) || length != 4 || 0 != memcmp(dest8, fa_sharps8, 5) || !info.isTransitionalDifferent || info.errors != 0 ) { @@ -969,13 +969,13 @@ static void TestUTS46() { /* These calls should fail. */ errorCode = U_USELESS_COLLATOR_ERROR; length = uidna_labelToASCII(uts46, fA_sharps16, -1, - dest16, uprv_lengthof(dest16), &info, &errorCode); + dest16, UPRV_LENGTHOF(dest16), &info, &errorCode); if(errorCode != U_USELESS_COLLATOR_ERROR) { log_err("uidna_labelToASCII(failure) failed: %s\n", u_errorName(errorCode)); } errorCode = U_ZERO_ERROR; length = uidna_labelToUnicode(uts46, fA_sharps16, u_strlen(fA_sharps16), - dest16, uprv_lengthof(dest16), NULL, &errorCode); + dest16, UPRV_LENGTHOF(dest16), NULL, &errorCode); if(errorCode != U_ILLEGAL_ARGUMENT_ERROR) { log_err("uidna_labelToUnicode(UIDNAInfo=NULL) failed: %s\n", u_errorName(errorCode)); } @@ -994,7 +994,7 @@ static void TestUTS46() { errorCode = U_ZERO_ERROR; length = uidna_labelToASCII_UTF8(uts46, fA_sharps8, -1, - NULL, uprv_lengthof(dest8), &info, &errorCode); + NULL, UPRV_LENGTHOF(dest8), &info, &errorCode); if(errorCode != U_ILLEGAL_ARGUMENT_ERROR) { log_err("uidna_labelToASCII_UTF8(dest=NULL) failed: %s\n", u_errorName(errorCode)); } diff --git a/icu4c/source/test/cintltst/ncnvtst.c b/icu4c/source/test/cintltst/ncnvtst.c index cb08a51e028..210784b4987 100644 --- a/icu4c/source/test/cintltst/ncnvtst.c +++ b/icu4c/source/test/cintltst/ncnvtst.c @@ -1792,7 +1792,7 @@ doTestTruncated(const char *cnvName, const uint8_t *bytes, int32_t length) { source=(const char *)bytes; sourceLimit=source+length; target=buffer; - targetLimit=buffer+uprv_lengthof(buffer); + targetLimit=buffer+UPRV_LENGTHOF(buffer); /* 1. input bytes with flush=FALSE, then input nothing with flush=TRUE */ ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, FALSE, &errorCode); @@ -1866,7 +1866,7 @@ TestTruncated() { }; int32_t i; - for(i=0; ismall[i]) { log_err("uprv_sortArray(small) mis-sorted [%d]=%u > [%d]=%u\n", i-1, small[i-1], i, small[i]); return; @@ -50,17 +50,17 @@ SortTest() { } /* for medium, add bits that will not be compared, to test stability */ - for(i=0; i=medium[i]) { log_err("uprv_sortArray(medium) mis-sorted [%d]=%u > [%d]=%u\n", i-1, medium[i-1], i, medium[i]); return; @@ -69,12 +69,12 @@ SortTest() { /* sort large array (not stable) */ errorCode=U_ZERO_ERROR; - uprv_sortArray(large, uprv_lengthof(large), sizeof(large[0]), uprv_uint32Comparator, NULL, FALSE, &errorCode); + uprv_sortArray(large, UPRV_LENGTHOF(large), sizeof(large[0]), uprv_uint32Comparator, NULL, FALSE, &errorCode); if(U_FAILURE(errorCode)) { log_err("uprv_sortArray(large) failed - %s\n", u_errorName(errorCode)); return; } - for(i=1; ilarge[i]) { log_err("uprv_sortArray(large) mis-sorted [%d]=%u > [%d]=%u\n", i-1, large[i-1], i, large[i]); return; diff --git a/icu4c/source/test/cintltst/spreptst.c b/icu4c/source/test/cintltst/spreptst.c index 9bd6f1dc0c6..92d483809aa 100644 --- a/icu4c/source/test/cintltst/spreptst.c +++ b/icu4c/source/test/cintltst/spreptst.c @@ -441,7 +441,7 @@ Test_nfs4_mixed_prep(void){ char src[MAX_BUFFER_SIZE]; int32_t srcLen; - for(i=0; i< uprv_lengthof(mixed_prep_data); i++){ + for(i=0; i< UPRV_LENGTHOF(mixed_prep_data); i++){ int32_t destLen=0; char* dest = NULL; UErrorCode status = U_ZERO_ERROR; @@ -758,7 +758,7 @@ static void TestStringPrepProfiles(void) { int32_t i, testNum = 0; UStringPrepProfile *sprep = NULL; - for (i = 0; i < uprv_lengthof(profile_test_case); i++) { + for (i = 0; i < UPRV_LENGTHOF(profile_test_case); i++) { if (uprv_strstr(profile_test_case[i], "RFC")) { if (sprep != NULL) { usprep_close(sprep); diff --git a/icu4c/source/test/cintltst/trie2test.c b/icu4c/source/test/cintltst/trie2test.c index 126892d9d50..f32e690f934 100644 --- a/icu4c/source/test/cintltst/trie2test.c +++ b/icu4c/source/test/cintltst/trie2test.c @@ -1032,32 +1032,32 @@ checkRangesSingleValue[]={ static void TrieTest(void) { testTrieRanges("set1", FALSE, - setRanges1, uprv_lengthof(setRanges1), - checkRanges1, uprv_lengthof(checkRanges1)); + setRanges1, UPRV_LENGTHOF(setRanges1), + checkRanges1, UPRV_LENGTHOF(checkRanges1)); testTrieRanges("set2-overlap", FALSE, - setRanges2, uprv_lengthof(setRanges2), - checkRanges2, uprv_lengthof(checkRanges2)); + setRanges2, UPRV_LENGTHOF(setRanges2), + checkRanges2, UPRV_LENGTHOF(checkRanges2)); testTrieRanges("set3-initial-9", FALSE, - setRanges3, uprv_lengthof(setRanges3), - checkRanges3, uprv_lengthof(checkRanges3)); + setRanges3, UPRV_LENGTHOF(setRanges3), + checkRanges3, UPRV_LENGTHOF(checkRanges3)); testTrieRanges("set-empty", FALSE, setRangesEmpty, 0, - checkRangesEmpty, uprv_lengthof(checkRangesEmpty)); + checkRangesEmpty, UPRV_LENGTHOF(checkRangesEmpty)); testTrieRanges("set-single-value", FALSE, - setRangesSingleValue, uprv_lengthof(setRangesSingleValue), - checkRangesSingleValue, uprv_lengthof(checkRangesSingleValue)); + setRangesSingleValue, UPRV_LENGTHOF(setRangesSingleValue), + checkRangesSingleValue, UPRV_LENGTHOF(checkRangesSingleValue)); testTrieRanges("set2-overlap.withClone", TRUE, - setRanges2, uprv_lengthof(setRanges2), - checkRanges2, uprv_lengthof(checkRanges2)); + setRanges2, UPRV_LENGTHOF(setRanges2), + checkRanges2, UPRV_LENGTHOF(checkRanges2)); } static void EnumNewTrieForLeadSurrogateTest(void) { static const char *const testName="enum-for-lead"; UTrie2 *trie=makeTrieWithRanges(testName, FALSE, - setRanges2, uprv_lengthof(setRanges2), - checkRanges2, uprv_lengthof(checkRanges2)); + setRanges2, UPRV_LENGTHOF(setRanges2), + checkRanges2, UPRV_LENGTHOF(checkRanges2)); while(trie!=NULL) { const CheckRange *checkRanges; @@ -1128,7 +1128,7 @@ dummyTest(UTrie2ValueBits valueBits) { return; } - testFrozenTrie(testName, trie, valueBits, checkRanges, uprv_lengthof(checkRanges)); + testFrozenTrie(testName, trie, valueBits, checkRanges, UPRV_LENGTHOF(checkRanges)); utrie2_close(trie); } @@ -1189,7 +1189,7 @@ FreeBlocksTest(void) { } trie=testTrieSerializeAllValueBits(testName, trie, FALSE, - checkRanges, uprv_lengthof(checkRanges)); + checkRanges, UPRV_LENGTHOF(checkRanges)); utrie2_close(trie); } @@ -1247,7 +1247,7 @@ GrowDataArrayTest(void) { } trie=testTrieSerializeAllValueBits(testName, trie, FALSE, - checkRanges, uprv_lengthof(checkRanges)); + checkRanges, UPRV_LENGTHOF(checkRanges)); utrie2_close(trie); } @@ -1409,8 +1409,8 @@ testTrie2FromTrie1(const char *testName, static void Trie12ConversionTest(void) { testTrie2FromTrie1("trie1->trie2", - setRanges2, uprv_lengthof(setRanges2), - checkRanges2, uprv_lengthof(checkRanges2)); + setRanges2, UPRV_LENGTHOF(setRanges2), + checkRanges2, UPRV_LENGTHOF(checkRanges2)); } void diff --git a/icu4c/source/test/cintltst/ucnvseltst.c b/icu4c/source/test/cintltst/ucnvseltst.c index 75025695ee1..01135f5bbfa 100644 --- a/icu4c/source/test/cintltst/ucnvseltst.c +++ b/icu4c/source/test/cintltst/ucnvseltst.c @@ -391,7 +391,7 @@ static void TestSelector() excluded_sets[i] = uset_open(i*30, i*30+500); } - for(testCaseIdx = 0; testCaseIdx < uprv_lengthof(getEncodingsFns); testCaseIdx++) + for(testCaseIdx = 0; testCaseIdx < UPRV_LENGTHOF(getEncodingsFns); testCaseIdx++) { int32_t excluded_set_id; int32_t num_encodings; @@ -409,7 +409,7 @@ static void TestSelector() * The handling of the exclusion set is independent of the * set of encodings, so there is no need to test every combination. */ - excluded_set_id = testCaseIdx % uprv_lengthof(excluded_sets); + excluded_set_id = testCaseIdx % UPRV_LENGTHOF(excluded_sets); { UConverterSelector *sel_rt, *sel_fb; char *buffer_fb = NULL; @@ -467,7 +467,7 @@ static void TestSelector() verifyResult(ucnvsel_selectForUTF8(sel_rt, s, -1, &status), manual_rt); verifyResult(ucnvsel_selectForUTF8(sel_fb, s, -1, &status), manual_fb); - u_strFromUTF8(utf16, uprv_lengthof(utf16), &length16, s, length8, &status); + u_strFromUTF8(utf16, UPRV_LENGTHOF(utf16), &length16, s, length8, &status); if (U_FAILURE(status)) { log_err("error converting the test text (string %ld) to UTF-16 - %s\n", (long)text.number, u_errorName(status)); diff --git a/icu4c/source/test/cintltst/udatatst.c b/icu4c/source/test/cintltst/udatatst.c index 7bc53736977..6dfb840c94d 100644 --- a/icu4c/source/test/cintltst/udatatst.c +++ b/icu4c/source/test/cintltst/udatatst.c @@ -1686,7 +1686,7 @@ TestSwapData() { errorCode=U_ZERO_ERROR; #endif - for(i=0; i 0; --i){ + for(i=UPRV_LENGTHOF(codePoints)-1, offset=sizeof(input); offset > 0; --i){ UTF8_PREV_CHAR_UNSAFE(input, offset, c); if(c != codePoints[i]){ log_err("ERROR: UTF8_PREV_CHAR_UNSAFE failed for offset=%ld. Expected:%lx Got:%lx\n", offset, codePoints[i], c); } } - for(i=uprv_lengthof(codePoints)-1, offset=sizeof(input); offset > 0; --i){ + for(i=UPRV_LENGTHOF(codePoints)-1, offset=sizeof(input); offset > 0; --i){ U8_PREV_UNSAFE(input, offset, c); if(c != codePoints[i]){ log_err("ERROR: U8_PREV_UNSAFE failed for offset=%ld. Expected:%lx Got:%lx\n", @@ -606,7 +606,7 @@ static void TestFwdBack() { } offsafe=0; - for(i=0; i0; --i) { + for(i=UPRV_LENGTHOF(boundaries)-2, offset=UPRV_LENGTHOF(input); offset>0; --i) { UTF8_BACK_1_UNSAFE(input, offset); if(offset != boundaries[i]){ log_err("ERROR: UTF8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset); } } - for(i=uprv_lengthof(boundaries)-2, offset=uprv_lengthof(input); offset>0; --i) { + for(i=UPRV_LENGTHOF(boundaries)-2, offset=UPRV_LENGTHOF(input); offset>0; --i) { U8_BACK_1_UNSAFE(input, offset); if(offset != boundaries[i]){ log_err("ERROR: U8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset); } } - for(i=0; iticks, UDTS_ICU4C_TIME, &errorCode); diff --git a/icu4c/source/test/intltest/alphaindextst.cpp b/icu4c/source/test/intltest/alphaindextst.cpp index 908e84db947..847434704e0 100644 --- a/icu4c/source/test/intltest/alphaindextst.cpp +++ b/icu4c/source/test/intltest/alphaindextst.cpp @@ -316,7 +316,7 @@ void AlphabeticIndexTest::APITest() { // if Russian sorts Cyrillic first. int32_t reorderCodes[20]; int32_t expectedLatinIndex = 0; - if (index->getCollator().getReorderCodes(reorderCodes, uprv_lengthof(reorderCodes), status) > 0) { + if (index->getCollator().getReorderCodes(reorderCodes, UPRV_LENGTHOF(reorderCodes), status) > 0) { expectedLatinIndex = index->getBucketCount(status) - 1; } n = index->getBucketIndex(adam, status); @@ -532,7 +532,7 @@ static const char *localeAndIndexCharactersLists[][2] = { void AlphabeticIndexTest::TestIndexCharactersList() { UErrorCode status = U_ZERO_ERROR; - for (int32_t i = 0; i < uprv_lengthof(localeAndIndexCharactersLists); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(localeAndIndexCharactersLists); ++i) { const char *(&localeAndIndexCharacters)[2] = localeAndIndexCharactersLists[i]; const char *locale = localeAndIndexCharacters[0]; UnicodeString expectedIndexCharacters @@ -561,7 +561,7 @@ void AlphabeticIndexTest::TestHaniFirst() { return; } int32_t reorderCodes[] = { USCRIPT_HAN }; - coll->setReorderCodes(reorderCodes, uprv_lengthof(reorderCodes), status); + coll->setReorderCodes(reorderCodes, UPRV_LENGTHOF(reorderCodes), status); TEST_CHECK_STATUS; AlphabeticIndex index(coll.orphan(), status); TEST_CHECK_STATUS; @@ -590,7 +590,7 @@ void AlphabeticIndexTest::TestPinyinFirst() { return; } int32_t reorderCodes[] = { USCRIPT_HAN }; - coll->setReorderCodes(reorderCodes, uprv_lengthof(reorderCodes), status); + coll->setReorderCodes(reorderCodes, UPRV_LENGTHOF(reorderCodes), status); TEST_CHECK_STATUS; AlphabeticIndex index(coll.orphan(), status); TEST_CHECK_STATUS; @@ -639,7 +639,7 @@ void AlphabeticIndexTest::TestSchSt() { { "Steiff", 22, "St" }, { "Thomas", 23, "T" } }; - for (int32_t i = 0; i < uprv_lengthof(testCases); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(testCases); ++i) { const TestCase &testCase = testCases[i]; UnicodeString name = UnicodeString(testCase.name).unescape(); UnicodeString label = UnicodeString(testCase.bucketLabel).unescape(); @@ -672,7 +672,7 @@ void AlphabeticIndexTest::TestNoLabels() { void AlphabeticIndexTest::TestChineseZhuyin() { UErrorCode status = U_ZERO_ERROR; char loc[100]; - uloc_forLanguageTag("zh-u-co-zhuyin", loc, uprv_lengthof(loc), NULL, &status); + uloc_forLanguageTag("zh-u-co-zhuyin", loc, UPRV_LENGTHOF(loc), NULL, &status); AlphabeticIndex index(loc, status); LocalPointer immIndex(index.buildImmutableIndex(status)); TEST_CHECK_STATUS; @@ -693,7 +693,7 @@ void AlphabeticIndexTest::TestJapaneseKanji() { // They should all go into the overflow bucket. static const UChar32 kanji[] = { 0x4E9C, 0x95C7, 0x4E00, 0x58F1 }; int32_t overflowIndex = immIndex->getBucketCount() - 1; - for(int32_t i = 0; i < uprv_lengthof(kanji); ++i) { + for(int32_t i = 0; i < UPRV_LENGTHOF(kanji); ++i) { char msg[40]; sprintf(msg, "kanji[%d]=U+%04lX in overflow bucket", (int)i, (long)kanji[i]); assertEquals(msg, overflowIndex, immIndex->getBucketIndex(UnicodeString(kanji[i]), status)); diff --git a/icu4c/source/test/intltest/apicoll.cpp b/icu4c/source/test/intltest/apicoll.cpp index 32a6c74d826..13745bd3c14 100644 --- a/icu4c/source/test/intltest/apicoll.cpp +++ b/icu4c/source/test/intltest/apicoll.cpp @@ -1242,10 +1242,10 @@ void CollationAPITest::TestSortKeyOverflow() { // 2 bytes for the Cyrillic i, 1 byte for the primary-compression terminator, // 2 bytes for the Greek phi, and 1 byte for the NUL terminator. uint8_t sortKey[12]; - int32_t length = col->getSortKey(i_and_phi, 2, sortKey, uprv_lengthof(sortKey)); + int32_t length = col->getSortKey(i_and_phi, 2, sortKey, UPRV_LENGTHOF(sortKey)); uint8_t sortKey2[12]; for (int32_t capacity = 0; capacity < length; ++capacity) { - uprv_memset(sortKey2, 2, uprv_lengthof(sortKey2)); + uprv_memset(sortKey2, 2, UPRV_LENGTHOF(sortKey2)); int32_t length2 = col->getSortKey(i_and_phi, 2, sortKey2, capacity); if (length2 != length || 0 != uprv_memcmp(sortKey, sortKey2, capacity)) { errln("getSortKey(i_and_phi, capacity=%d) failed to write proper prefix", capacity); @@ -1661,7 +1661,7 @@ void CollationAPITest::TestGetLocale() { u_unescape(rules, rlz, 256); /* test opening collators for different locales */ - for(i = 0; i<(int32_t)uprv_lengthof(testStruct); i++) { + for(i = 0; i<(int32_t)UPRV_LENGTHOF(testStruct); i++) { status = U_ZERO_ERROR; coll = Collator::createInstance(testStruct[i].requestedLocale, status); if(U_FAILURE(status)) { @@ -1919,7 +1919,7 @@ void CollationAPITest::TestGetTailoredSet() UnicodeString buff; UnicodeSet *set = NULL; - for(i = 0; i < uprv_lengthof(setTest); i++) { + for(i = 0; i < UPRV_LENGTHOF(setTest); i++) { buff = UnicodeString(setTest[i].rules, -1, US_INV).unescape(); RuleBasedCollator coll(buff, status); if(U_SUCCESS(status)) { @@ -2370,7 +2370,7 @@ void CollationAPITest::TestCloneBinary() { UnicodeString ue = UNICODE_STRING_SIMPLE("ue"); assertEquals("rbc/primary: u-umlaut==ue", UCOL_EQUAL, rbc->compare(uUmlaut, ue, errorCode)); uint8_t bin[25000]; - int32_t binLength = rbc->cloneBinary(bin, uprv_lengthof(bin), errorCode); + int32_t binLength = rbc->cloneBinary(bin, UPRV_LENGTHOF(bin), errorCode); if(errorCode.logDataIfFailureAndReset("rbc->cloneBinary()")) { return; } @@ -2384,7 +2384,7 @@ void CollationAPITest::TestCloneBinary() { assertEquals("rbc2: u-umlaut==ue", UCOL_EQUAL, rbc2.compare(uUmlaut, ue, errorCode)); assertTrue("rbc==rbc2", *rbc == rbc2); uint8_t bin2[25000]; - int32_t bin2Length = rbc2.cloneBinary(bin2, uprv_lengthof(bin2), errorCode); + int32_t bin2Length = rbc2.cloneBinary(bin2, UPRV_LENGTHOF(bin2), errorCode); assertEquals("len(rbc binary)==len(rbc2 binary)", binLength, bin2Length); assertTrue("rbc binary==rbc2 binary", binLength == bin2Length && memcmp(bin, bin2, binLength) == 0); diff --git a/icu4c/source/test/intltest/bytestrietest.cpp b/icu4c/source/test/intltest/bytestrietest.cpp index 82cefddc452..f5ad2f30333 100644 --- a/icu4c/source/test/intltest/bytestrietest.cpp +++ b/icu4c/source/test/intltest/bytestrietest.cpp @@ -128,14 +128,14 @@ void BytesTrieTest::TestEmpty() { static const StringAndValue data[]={ { "", 0 } }; - checkData(data, uprv_lengthof(data)); + checkData(data, UPRV_LENGTHOF(data)); } void BytesTrieTest::Test_a() { static const StringAndValue data[]={ { "a", 1 } }; - checkData(data, uprv_lengthof(data)); + checkData(data, UPRV_LENGTHOF(data)); } void BytesTrieTest::Test_a_ab() { @@ -143,7 +143,7 @@ void BytesTrieTest::Test_a_ab() { { "a", 1 }, { "ab", 100 } }; - checkData(data, uprv_lengthof(data)); + checkData(data, UPRV_LENGTHOF(data)); } void BytesTrieTest::TestShortestBranch() { @@ -151,7 +151,7 @@ void BytesTrieTest::TestShortestBranch() { { "a", 1000 }, { "b", 2000 } }; - checkData(data, uprv_lengthof(data)); + checkData(data, UPRV_LENGTHOF(data)); } void BytesTrieTest::TestBranches() { @@ -171,7 +171,7 @@ void BytesTrieTest::TestBranches() { { "vv", 0x7fffffff }, { "zz", (int32_t)0x80000000 } }; - for(int32_t length=2; length<=uprv_lengthof(data); ++length) { + for(int32_t length=2; length<=UPRV_LENGTHOF(data); ++length) { logln("TestBranches length=%d", (int)length); checkData(data, length); } @@ -190,7 +190,7 @@ void BytesTrieTest::TestLongSequence() { "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", -3 } }; - checkData(data, uprv_lengthof(data)); + checkData(data, UPRV_LENGTHOF(data)); } void BytesTrieTest::TestLongBranch() { @@ -218,7 +218,7 @@ void BytesTrieTest::TestLongBranch() { { "t234567890", 0x77777777 }, { "z", (int32_t)0x80000001 } }; - checkData(data, uprv_lengthof(data)); + checkData(data, UPRV_LENGTHOF(data)); } void BytesTrieTest::TestValuesForState() { @@ -232,7 +232,7 @@ void BytesTrieTest::TestValuesForState() { { "abcde", -5 }, { "abcdef", -6 } }; - checkData(data, uprv_lengthof(data)); + checkData(data, UPRV_LENGTHOF(data)); } void BytesTrieTest::TestCompact() { @@ -259,7 +259,7 @@ void BytesTrieTest::TestCompact() { { "xjuly", 7 }, { "xjune", 6 } }; - checkData(data, uprv_lengthof(data)); + checkData(data, UPRV_LENGTHOF(data)); } BytesTrie *BytesTrieTest::buildMonthsTrie(UStringTrieBuildOption buildOption) { @@ -299,7 +299,7 @@ BytesTrie *BytesTrieTest::buildMonthsTrie(UStringTrieBuildOption buildOption) { { "jun.", 6 }, { "june", 6 } }; - return buildTrie(data, uprv_lengthof(data), buildOption); + return buildTrie(data, UPRV_LENGTHOF(data), buildOption); } void BytesTrieTest::TestHasUniqueValue() { @@ -344,7 +344,7 @@ void BytesTrieTest::TestGetNextBytes() { return; // buildTrie() reported an error } char buffer[40]; - CheckedArrayByteSink sink(buffer, uprv_lengthof(buffer)); + CheckedArrayByteSink sink(buffer, UPRV_LENGTHOF(buffer)); int32_t count=trie->getNextBytes(sink); if(count!=2 || sink.NumberOfBytesAppended()!=2 || buffer[0]!='a' || buffer[1]!='j') { errln("months getNextBytes()!=[aj] at root"); @@ -430,10 +430,10 @@ void BytesTrieTest::TestIteratorFromBranch() { { "uar", 1 }, { "uary", 1 } }; - checkIterator(iter, data, uprv_lengthof(data)); + checkIterator(iter, data, UPRV_LENGTHOF(data)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), data, uprv_lengthof(data)); + checkIterator(iter.reset(), data, UPRV_LENGTHOF(data)); } void BytesTrieTest::TestIteratorFromLinearMatch() { @@ -458,10 +458,10 @@ void BytesTrieTest::TestIteratorFromLinearMatch() { { "r", 1 }, { "ry", 1 } }; - checkIterator(iter, data, uprv_lengthof(data)); + checkIterator(iter, data, UPRV_LENGTHOF(data)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), data, uprv_lengthof(data)); + checkIterator(iter.reset(), data, UPRV_LENGTHOF(data)); } void BytesTrieTest::TestTruncatingIteratorFromRoot() { @@ -504,10 +504,10 @@ void BytesTrieTest::TestTruncatingIteratorFromRoot() { { "jun.", 6 }, { "june", 6 } }; - checkIterator(iter, data, uprv_lengthof(data)); + checkIterator(iter, data, UPRV_LENGTHOF(data)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), data, uprv_lengthof(data)); + checkIterator(iter.reset(), data, UPRV_LENGTHOF(data)); } void BytesTrieTest::TestTruncatingIteratorFromLinearMatchShort() { @@ -516,7 +516,7 @@ void BytesTrieTest::TestTruncatingIteratorFromLinearMatchShort() { { "abcdepq", 200 }, { "abcdeyz", 3000 } }; - LocalPointer trie(buildTrie(data, uprv_lengthof(data), USTRINGTRIE_BUILD_FAST)); + LocalPointer trie(buildTrie(data, UPRV_LENGTHOF(data), USTRINGTRIE_BUILD_FAST)); if(trie.isNull()) { return; // buildTrie() reported an error } @@ -532,10 +532,10 @@ void BytesTrieTest::TestTruncatingIteratorFromLinearMatchShort() { static const StringAndValue expected[]={ { "cd", -1 } }; - checkIterator(iter, expected, uprv_lengthof(expected)); + checkIterator(iter, expected, UPRV_LENGTHOF(expected)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), expected, uprv_lengthof(expected)); + checkIterator(iter.reset(), expected, UPRV_LENGTHOF(expected)); } void BytesTrieTest::TestTruncatingIteratorFromLinearMatchLong() { @@ -544,7 +544,7 @@ void BytesTrieTest::TestTruncatingIteratorFromLinearMatchLong() { { "abcdepq", 200 }, { "abcdeyz", 3000 } }; - LocalPointer trie(buildTrie(data, uprv_lengthof(data), USTRINGTRIE_BUILD_FAST)); + LocalPointer trie(buildTrie(data, UPRV_LENGTHOF(data), USTRINGTRIE_BUILD_FAST)); if(trie.isNull()) { return; // buildTrie() reported an error } @@ -563,10 +563,10 @@ void BytesTrieTest::TestTruncatingIteratorFromLinearMatchLong() { { "dep", -1 }, { "dey", -1 } }; - checkIterator(iter, expected, uprv_lengthof(expected)); + checkIterator(iter, expected, UPRV_LENGTHOF(expected)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), expected, uprv_lengthof(expected)); + checkIterator(iter.reset(), expected, UPRV_LENGTHOF(expected)); } void BytesTrieTest::TestIteratorFromBytes() { @@ -577,12 +577,12 @@ void BytesTrieTest::TestIteratorFromBytes() { }; builder_->clear(); IcuTestErrorCode errorCode(*this, "TestIteratorFromBytes()"); - for(int32_t i=0; iadd(data[i].s, data[i].value, errorCode); } StringPiece trieBytes=builder_->buildStringPiece(USTRINGTRIE_BUILD_FAST, errorCode); BytesTrie::Iterator iter(trieBytes.data(), 0, errorCode); - checkIterator(iter, data, uprv_lengthof(data)); + checkIterator(iter, data, UPRV_LENGTHOF(data)); } void BytesTrieTest::checkData(const StringAndValue data[], int32_t dataLength) { diff --git a/icu4c/source/test/intltest/citrtest.cpp b/icu4c/source/test/intltest/citrtest.cpp index 08b76e3f156..80a0cf71042 100644 --- a/icu4c/source/test/intltest/citrtest.cpp +++ b/icu4c/source/test/intltest/citrtest.cpp @@ -966,7 +966,7 @@ class SubCharIter : public CharacterIterator { public: // public default constructor, to get coverage of CharacterIterator() SubCharIter() : CharacterIterator() { - textLength=end=uprv_lengthof(s); + textLength=end=UPRV_LENGTHOF(s); s[0]=0x61; // 'a' s[1]=0xd900; // U+50400 s[2]=0xdd00; @@ -975,7 +975,7 @@ public: // useful stuff, mostly dummy but testing coverage and subclassability virtual UChar nextPostInc() { - if(pos iter(new UnicodeSetIterator(*sets[i])); while(iter->next()) { UChar32 c = iter->getCodepoint(); @@ -308,7 +308,7 @@ void CollationTest::TestIllegalUTF8() { }; StringPiece fffd(strings[0]); - for(int32_t i = 1; i < uprv_lengthof(strings); ++i) { + for(int32_t i = 1; i < UPRV_LENGTHOF(strings); ++i) { StringPiece illegal(strings[i]); UCollationResult order = coll->compareUTF8(fffd, illegal, errorCode); if(order != UCOL_EQUAL) { @@ -479,7 +479,7 @@ void CollationTest::TestFCD() { if(errorCode.logIfFailureAndReset("FCDUTF16CollationIterator constructor")) { return; } - CodePointIterator cpi(cp, uprv_lengthof(cp)); + CodePointIterator cpi(cp, UPRV_LENGTHOF(cp)); checkFCD("FCDUTF16CollationIterator", u16ci, cpi); #if U_HAVE_STD_STRING @@ -496,7 +496,7 @@ void CollationTest::TestFCD() { cpi.resetToStart(); UCharIterator iter; - uiter_setString(&iter, s, uprv_lengthof(s) - 1); // -1: without the terminating NUL + uiter_setString(&iter, s, UPRV_LENGTHOF(s) - 1); // -1: without the terminating NUL FCDUIterCollationIterator uici(data, FALSE, iter, 0); if(errorCode.logIfFailureAndReset("FCDUIterCollationIterator constructor")) { return; @@ -1138,7 +1138,7 @@ void CollationTest::parseAndSetAttribute(IcuTestErrorCode &errorCode) { UColAttribute attr; for(int32_t i = 0;; ++i) { - if(i == uprv_lengthof(attributes)) { + if(i == UPRV_LENGTHOF(attributes)) { errln("invalid attribute name on line %d", (int)fileLineNumber); infoln(fileLine); errorCode.set(U_PARSE_ERROR); @@ -1152,7 +1152,7 @@ void CollationTest::parseAndSetAttribute(IcuTestErrorCode &errorCode) { UColAttributeValue value; for(int32_t i = 0;; ++i) { - if(i == uprv_lengthof(attributeValues)) { + if(i == UPRV_LENGTHOF(attributeValues)) { errln("invalid attribute value name on line %d", (int)fileLineNumber); infoln(fileLine); errorCode.set(U_PARSE_ERROR); @@ -1300,7 +1300,7 @@ UBool CollationTest::getSortKeyParts(const UChar *s, int32_t length, IcuTestErrorCode &errorCode) { if(errorCode.isFailure()) { return FALSE; } uint8_t part[32]; - U_ASSERT(partSize <= uprv_lengthof(part)); + U_ASSERT(partSize <= UPRV_LENGTHOF(part)); UCharIterator iter; uiter_setString(&iter, s, length); uint32_t state[2] = { 0, 0 }; @@ -1438,7 +1438,7 @@ UBool CollationTest::getCollationKey(const char *norm, const UnicodeString &line // Check that internalNextSortKeyPart() makes the same key, with several part sizes. static const int32_t partSizes[] = { 32, 3, 1 }; - for(int32_t psi = 0; psi < uprv_lengthof(partSizes); ++psi) { + for(int32_t psi = 0; psi < UPRV_LENGTHOF(partSizes); ++psi) { int32_t partSize = partSizes[psi]; CharString parts; if(!getSortKeyParts(s, length, parts, 32, errorCode)) { diff --git a/icu4c/source/test/intltest/compactdecimalformattest.cpp b/icu4c/source/test/intltest/compactdecimalformattest.cpp index 4988d3cbacd..b2c93a08bcb 100644 --- a/icu4c/source/test/intltest/compactdecimalformattest.cpp +++ b/icu4c/source/test/intltest/compactdecimalformattest.cpp @@ -217,27 +217,27 @@ void CompactDecimalFormatTest::runIndexedTest( } void CompactDecimalFormatTest::TestEnglishShort() { - CheckLocale("en", UNUM_SHORT, kEnglishShort, uprv_lengthof(kEnglishShort)); + CheckLocale("en", UNUM_SHORT, kEnglishShort, UPRV_LENGTHOF(kEnglishShort)); } void CompactDecimalFormatTest::TestSerbianShort() { - CheckLocale("sr", UNUM_SHORT, kSerbianShort, uprv_lengthof(kSerbianShort)); + CheckLocale("sr", UNUM_SHORT, kSerbianShort, UPRV_LENGTHOF(kSerbianShort)); } void CompactDecimalFormatTest::TestSerbianLong() { - CheckLocale("sr", UNUM_LONG, kSerbianLong, uprv_lengthof(kSerbianLong)); + CheckLocale("sr", UNUM_LONG, kSerbianLong, UPRV_LENGTHOF(kSerbianLong)); } void CompactDecimalFormatTest::TestSerbianLongNegative() { - CheckLocale("sr", UNUM_LONG, kSerbianLongNegative, uprv_lengthof(kSerbianLongNegative)); + CheckLocale("sr", UNUM_LONG, kSerbianLongNegative, UPRV_LENGTHOF(kSerbianLongNegative)); } void CompactDecimalFormatTest::TestJapaneseShort() { - CheckLocale(Locale::getJapan(), UNUM_SHORT, kJapaneseShort, uprv_lengthof(kJapaneseShort)); + CheckLocale(Locale::getJapan(), UNUM_SHORT, kJapaneseShort, UPRV_LENGTHOF(kJapaneseShort)); } void CompactDecimalFormatTest::TestSwahiliShort() { - CheckLocale("sw", UNUM_SHORT, kSwahiliShort, uprv_lengthof(kSwahiliShort)); + CheckLocale("sw", UNUM_SHORT, kSwahiliShort, UPRV_LENGTHOF(kSwahiliShort)); } void CompactDecimalFormatTest::TestFieldPosition() { @@ -258,7 +258,7 @@ void CompactDecimalFormatTest::TestFieldPosition() { } void CompactDecimalFormatTest::TestCsShort() { - CheckLocale("cs", UNUM_SHORT, kCsShort, uprv_lengthof(kCsShort)); + CheckLocale("cs", UNUM_SHORT, kCsShort, UPRV_LENGTHOF(kCsShort)); } void CompactDecimalFormatTest::TestSkLong() { @@ -267,15 +267,15 @@ void CompactDecimalFormatTest::TestSkLong() { // few{"0"} // one{"0"} // other{"0"} - CheckLocale("sk", UNUM_LONG, kSkLong, uprv_lengthof(kSkLong)); + CheckLocale("sk", UNUM_LONG, kSkLong, UPRV_LENGTHOF(kSkLong)); } void CompactDecimalFormatTest::TestSwahiliShortNegative() { - CheckLocale("sw", UNUM_SHORT, kSwahiliShortNegative, uprv_lengthof(kSwahiliShortNegative)); + CheckLocale("sw", UNUM_SHORT, kSwahiliShortNegative, UPRV_LENGTHOF(kSwahiliShortNegative)); } void CompactDecimalFormatTest::TestArabicLong() { - CheckLocale("ar", UNUM_LONG, kArabicLong, uprv_lengthof(kArabicLong)); + CheckLocale("ar", UNUM_LONG, kArabicLong, UPRV_LENGTHOF(kArabicLong)); } void CompactDecimalFormatTest::TestSignificantDigits() { diff --git a/icu4c/source/test/intltest/convtest.cpp b/icu4c/source/test/intltest/convtest.cpp index 1654c9285b9..400ea625ae4 100644 --- a/icu4c/source/test/intltest/convtest.cpp +++ b/icu4c/source/test/intltest/convtest.cpp @@ -290,7 +290,7 @@ ConversionTest::TestFromUnicode() { // read a substitution string, separated by an equal sign p=s.getBuffer()+index+1; length=s.length()-(index+1); - if(length<0 || length>=uprv_lengthof(cc.subString)) { + if(length<0 || length>=UPRV_LENGTHOF(cc.subString)) { errorCode=U_ILLEGAL_ARGUMENT_ERROR; } else { u_memcpy(cc.subString, p, length); @@ -444,7 +444,7 @@ ConversionTest::TestGetUnicodeSet() { if(!diffSet.isEmpty()) { diffSet.toPattern(s, TRUE); if(s.length()>100) { - s.replace(100, 0x7fffffff, ellipsis, uprv_lengthof(ellipsis)); + s.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis)); } errln("error: ucnv_getUnicodeSet(\"%s\") is missing items - conversion/getUnicodeSet test case %d", charset, i); @@ -456,7 +456,7 @@ ConversionTest::TestGetUnicodeSet() { if(!diffSet.isEmpty()) { diffSet.toPattern(s, TRUE); if(s.length()>100) { - s.replace(100, 0x7fffffff, ellipsis, uprv_lengthof(ellipsis)); + s.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis)); } errln("error: ucnv_getUnicodeSet(\"%s\") contains unexpected items - conversion/getUnicodeSet test case %d", charset, i); @@ -554,7 +554,7 @@ ConversionTest::TestGetUnicodeSet2() { LocalUConverterPointer cnv; char buffer[1024]; int32_t i; - for(i=0; i100) { - out.replace(100, 0x7fffffff, ellipsis, uprv_lengthof(ellipsis)); + out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis)); } errln("error: ucnv_getUnicodeSet(\"%s\") is missing items - which set: %d", cnvNames[i], which); @@ -636,7 +636,7 @@ ConversionTest::TestGetUnicodeSet2() { if(!diffSet.isEmpty()) { diffSet.toPattern(out, TRUE); if(out.length()>100) { - out.replace(100, 0x7fffffff, ellipsis, uprv_lengthof(ellipsis)); + out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis)); } errln("error: ucnv_getUnicodeSet(\"%s\") contains unexpected items - which set: %d", cnvNames[i], which); @@ -1029,7 +1029,7 @@ ConversionTest::ToUnicodeCase(ConversionCase &cc, UConverterToUCallback callback int32_t i, step; ok=TRUE; - for(i=0; i=0) { errorCode=U_ZERO_ERROR; resultLength=stepFromUTF8(cc, utf8Cnv, cnv, - result, uprv_lengthof(result), + result, UPRV_LENGTHOF(result), step, &errorCode); ok=checkFromUnicode( cc, cnv, steps[i].utf8Name, @@ -1527,7 +1527,7 @@ ConversionTest::FromUnicodeCase(ConversionCase &cc, UConverterFromUCallback call errorCode=U_ZERO_ERROR; resultLength=ucnv_fromUChars(cnv, - result, uprv_lengthof(result), + result, UPRV_LENGTHOF(result), cc.unicode, cc.unicodeLength, &errorCode); ok=checkFromUnicode( @@ -1576,7 +1576,7 @@ ConversionTest::checkFromUnicode(ConversionCase &cc, UConverter *cnv, const char msg=NULL; errorCode=U_ZERO_ERROR; - resultInvalidLength=uprv_lengthof(resultInvalidUChars); + resultInvalidLength=UPRV_LENGTHOF(resultInvalidUChars); ucnv_getInvalidUChars(cnv, resultInvalidUChars, &resultInvalidLength, &errorCode); if(U_FAILURE(errorCode)) { errln("fromUnicode[%d](%s cb=\"%s\" fb=%d flush=%d %s) ucnv_getInvalidUChars() failed - %s", diff --git a/icu4c/source/test/intltest/dcfmapts.cpp b/icu4c/source/test/intltest/dcfmapts.cpp index 5bafdf0f3e7..0e651de5017 100644 --- a/icu4c/source/test/intltest/dcfmapts.cpp +++ b/icu4c/source/test/intltest/dcfmapts.cpp @@ -572,7 +572,7 @@ void IntlTestDecimalFormatAPI::TestScale() UnicodeString percentPattern("#,##0%"); pat.setMaximumFractionDigits(4); - for(int32_t i=0; i < uprv_lengthof(testData); i++) { + for(int32_t i=0; i < UPRV_LENGTHOF(testData); i++) { if ( i > 2 ) { pat.applyPattern(percentPattern,status); } diff --git a/icu4c/source/test/intltest/dtfmttst.cpp b/icu4c/source/test/intltest/dtfmttst.cpp index e03576da514..0e2cd4b59b0 100644 --- a/icu4c/source/test/intltest/dtfmttst.cpp +++ b/icu4c/source/test/intltest/dtfmttst.cpp @@ -167,7 +167,7 @@ void DateFormatTest::TestPatterns() { }; IcuTestErrorCode errorCode(*this, "TestPatterns()"); - for (int32_t i = 0; i < uprv_lengthof(EXPECTED); i++) { + for (int32_t i = 0; i < UPRV_LENGTHOF(EXPECTED); i++) { // Verify that patterns have the correct values UnicodeString actualPattern(EXPECTED[i].actualPattern, -1, US_INV); UnicodeString expectedPattern(EXPECTED[i].expectedPattern, -1, US_INV); @@ -4178,7 +4178,7 @@ void DateFormatTest::TestDotAndAtLeniency() { // Test for date/time parsing regression with CLDR 22.1/ICU 50 pattern strings. // For details see http://bugs.icu-project.org/trac/ticket/9789 static const char *locales[] = { "en", "fr" }; - for (int32_t i = 0; i < uprv_lengthof(locales); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(locales); ++i) { Locale locale(locales[i]); for (DateFormat::EStyle dateStyle = DateFormat::FULL; dateStyle <= DateFormat::SHORT; diff --git a/icu4c/source/test/intltest/g7coll.cpp b/icu4c/source/test/intltest/g7coll.cpp index 53fc4f91b86..f660120663d 100644 --- a/icu4c/source/test/intltest/g7coll.cpp +++ b/icu4c/source/test/intltest/g7coll.cpp @@ -91,7 +91,7 @@ void G7CollationTest::TestG7Locales(/* char* par */) Locale("ja", "JP", "") }; - for (i = 0; i < uprv_lengthof(locales); i++) + for (i = 0; i < UPRV_LENGTHOF(locales); i++) { UnicodeString dispName; UErrorCode status = U_ZERO_ERROR; diff --git a/icu4c/source/test/intltest/genderinfotest.cpp b/icu4c/source/test/intltest/genderinfotest.cpp index 53fd987e3ef..740beebc4b0 100644 --- a/icu4c/source/test/intltest/genderinfotest.cpp +++ b/icu4c/source/test/intltest/genderinfotest.cpp @@ -54,17 +54,17 @@ void GenderInfoTest::runIndexedTest(int32_t index, UBool exec, const char *&name void GenderInfoTest::TestGetListGender() { check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_OTHER, NULL, 0); - check(UGENDER_FEMALE, UGENDER_FEMALE, UGENDER_FEMALE, kSingleFemale, uprv_lengthof(kSingleFemale)); - check(UGENDER_MALE, UGENDER_MALE, UGENDER_MALE, kSingleMale, uprv_lengthof(kSingleMale)); - check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_OTHER, kSingleOther, uprv_lengthof(kSingleOther)); + check(UGENDER_FEMALE, UGENDER_FEMALE, UGENDER_FEMALE, kSingleFemale, UPRV_LENGTHOF(kSingleFemale)); + check(UGENDER_MALE, UGENDER_MALE, UGENDER_MALE, kSingleMale, UPRV_LENGTHOF(kSingleMale)); + check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_OTHER, kSingleOther, UPRV_LENGTHOF(kSingleOther)); - check(UGENDER_OTHER, UGENDER_FEMALE, UGENDER_FEMALE, kAllFemale, uprv_lengthof(kAllFemale)); - check(UGENDER_OTHER, UGENDER_MALE, UGENDER_MALE, kAllMale, uprv_lengthof(kAllMale)); - check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kAllOther, uprv_lengthof(kAllOther)); + check(UGENDER_OTHER, UGENDER_FEMALE, UGENDER_FEMALE, kAllFemale, UPRV_LENGTHOF(kAllFemale)); + check(UGENDER_OTHER, UGENDER_MALE, UGENDER_MALE, kAllMale, UPRV_LENGTHOF(kAllMale)); + check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kAllOther, UPRV_LENGTHOF(kAllOther)); - check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kFemaleMale, uprv_lengthof(kFemaleMale)); - check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kFemaleOther, uprv_lengthof(kFemaleOther)); - check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kMaleOther, uprv_lengthof(kMaleOther)); + check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kFemaleMale, UPRV_LENGTHOF(kFemaleMale)); + check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kFemaleOther, UPRV_LENGTHOF(kFemaleOther)); + check(UGENDER_OTHER, UGENDER_OTHER, UGENDER_MALE, kMaleOther, UPRV_LENGTHOF(kMaleOther)); } void GenderInfoTest::TestFallback() { diff --git a/icu4c/source/test/intltest/itspoof.cpp b/icu4c/source/test/intltest/itspoof.cpp index fb4532d3d58..b5b90e27e4e 100644 --- a/icu4c/source/test/intltest/itspoof.cpp +++ b/icu4c/source/test/intltest/itspoof.cpp @@ -509,7 +509,7 @@ void IntlTestSpoof::testIdentifierInfo() { }; int testNum; - for (testNum = 0; testNum < uprv_lengthof(tests); testNum++) { + for (testNum = 0; testNum < UPRV_LENGTHOF(tests); testNum++) { char testNumStr[40]; sprintf(testNumStr, "testNum = %d", testNum); Test &test = tests[testNum]; @@ -573,7 +573,7 @@ void IntlTestSpoof::testIdentifierInfo() { status = U_ZERO_ERROR; IdentifierInfo identifierInfo(status); - for (testNum=0; testNum nf(NumberFormat::createInstance(en, status)); @@ -493,34 +493,34 @@ void MeasureFormatTest::TestFormatPeriodEn() { if (!assertSuccess("Error creating measure format en WIDE", status)) { return; } - verifyFormat("en WIDE", mf, fullData, uprv_lengthof(fullData)); + verifyFormat("en WIDE", mf, fullData, UPRV_LENGTHOF(fullData)); // exercise copy constructor { MeasureFormat mf2(mf); - verifyFormat("en WIDE copy", mf2, fullData, uprv_lengthof(fullData)); + verifyFormat("en WIDE copy", mf2, fullData, UPRV_LENGTHOF(fullData)); } // exercise clone { MeasureFormat *mf3 = (MeasureFormat *) mf.clone(); - verifyFormat("en WIDE copy", *mf3, fullData, uprv_lengthof(fullData)); + verifyFormat("en WIDE copy", *mf3, fullData, UPRV_LENGTHOF(fullData)); delete mf3; } mf = MeasureFormat(en, UMEASFMT_WIDTH_SHORT, (NumberFormat *) nf->clone(), status); if (!assertSuccess("Error creating measure format en SHORT", status)) { return; } - verifyFormat("en SHORT", mf, abbrevData, uprv_lengthof(abbrevData)); + verifyFormat("en SHORT", mf, abbrevData, UPRV_LENGTHOF(abbrevData)); mf = MeasureFormat(en, UMEASFMT_WIDTH_NARROW, (NumberFormat *) nf->clone(), status); if (!assertSuccess("Error creating measure format en NARROW", status)) { return; } - verifyFormat("en NARROW", mf, narrowData, uprv_lengthof(narrowData)); + verifyFormat("en NARROW", mf, narrowData, UPRV_LENGTHOF(narrowData)); mf = MeasureFormat(en, UMEASFMT_WIDTH_NUMERIC, (NumberFormat *) nf->clone(), status); if (!assertSuccess("Error creating measure format en NUMERIC", status)) { return; } - verifyFormat("en NUMERIC", mf, numericData, uprv_lengthof(numericData)); + verifyFormat("en NUMERIC", mf, numericData, UPRV_LENGTHOF(numericData)); Locale de(Locale::getGerman()); nf.adoptInstead(NumberFormat::createInstance(de, status)); @@ -532,12 +532,12 @@ void MeasureFormatTest::TestFormatPeriodEn() { if (!assertSuccess("Error creating measure format de WIDE", status)) { return; } - verifyFormat("de WIDE", mf, fullDataDe, uprv_lengthof(fullDataDe)); + verifyFormat("de WIDE", mf, fullDataDe, UPRV_LENGTHOF(fullDataDe)); mf = MeasureFormat(de, UMEASFMT_WIDTH_NUMERIC, (NumberFormat *) nf->clone(), status); if (!assertSuccess("Error creating measure format de NUMERIC", status)) { return; } - verifyFormat("de NUMERIC", mf, numericDataDe, uprv_lengthof(numericDataDe)); + verifyFormat("de NUMERIC", mf, numericDataDe, UPRV_LENGTHOF(numericDataDe)); } void MeasureFormatTest::Test10219FractionalPlurals() { @@ -548,8 +548,8 @@ void MeasureFormatTest::Test10219FractionalPlurals() { {"1 minute", "1.0 minutes", "1.01 minutes"} }; UErrorCode status = U_ZERO_ERROR; - for (int j = 0; j < uprv_lengthof(values); j++) { - for (int i = 0; i < uprv_lengthof(expected[j]); i++) { + for (int j = 0; j < UPRV_LENGTHOF(values); j++) { + for (int i = 0; i < UPRV_LENGTHOF(expected[j]); i++) { DecimalFormat *df = (DecimalFormat *) NumberFormat::createInstance(en, status); if (U_FAILURE(status)) { @@ -655,10 +655,10 @@ void MeasureFormatTest::TestGreek() { "7 \\u03AD\\u03C4\\u03B7"}; int32_t counter = 0; - for (int32_t locIndex = 0; locIndex < uprv_lengthof(locales); ++locIndex ) { - for( int32_t numIndex = 0; numIndex < uprv_lengthof(numbers); ++numIndex ) { - for ( int32_t styleIndex = 0; styleIndex < uprv_lengthof(styles); ++styleIndex ) { - for ( int32_t unitIndex = 0; unitIndex < uprv_lengthof(units); ++unitIndex ) { + for (int32_t locIndex = 0; locIndex < UPRV_LENGTHOF(locales); ++locIndex ) { + for( int32_t numIndex = 0; numIndex < UPRV_LENGTHOF(numbers); ++numIndex ) { + for ( int32_t styleIndex = 0; styleIndex < UPRV_LENGTHOF(styles); ++styleIndex ) { + for ( int32_t unitIndex = 0; unitIndex < UPRV_LENGTHOF(units); ++unitIndex ) { Measure measure(numbers[numIndex], new MeasureUnit(units[unitIndex]), status); if (!assertSuccess("Error creating Measure", status)) { return; @@ -732,7 +732,7 @@ void MeasureFormatTest::helperTestMultiples( return; } UnicodeString buffer; - fmt.formatMeasures(measures, uprv_lengthof(measures), buffer, pos, status); + fmt.formatMeasures(measures, UPRV_LENGTHOF(measures), buffer, pos, status); if (!assertSuccess("Error formatting measures", status)) { return; } @@ -855,7 +855,7 @@ void MeasureFormatTest::TestFieldPositionMultiple() { fmt, prefix, first, - uprv_lengthof(first), + UPRV_LENGTHOF(first), NumberFormat::kIntegerField, 8, 11); @@ -864,7 +864,7 @@ void MeasureFormatTest::TestFieldPositionMultiple() { fmt, prefix, second, - uprv_lengthof(second), + UPRV_LENGTHOF(second), NumberFormat::kDecimalSeparatorField, 23, 24); @@ -873,7 +873,7 @@ void MeasureFormatTest::TestFieldPositionMultiple() { fmt, prefix, third, - uprv_lengthof(third), + UPRV_LENGTHOF(third), NumberFormat::kDecimalSeparatorField, 0, 0); @@ -964,7 +964,7 @@ void MeasureFormatTest::TestDoubleZero() { } nf->setMinimumFractionDigits(2); nf->setMaximumFractionDigits(2); - fmt.formatMeasures(measures, uprv_lengthof(measures), appendTo, pos, status); + fmt.formatMeasures(measures, UPRV_LENGTHOF(measures), appendTo, pos, status); if (!assertSuccess("Error formatting", status)) { return; } @@ -974,7 +974,7 @@ void MeasureFormatTest::TestDoubleZero() { appendTo); measures[0] = Measure(-4.7, MeasureUnit::createHour(status), status); appendTo.remove(); - fmt.formatMeasures(measures, uprv_lengthof(measures), appendTo, pos, status); + fmt.formatMeasures(measures, UPRV_LENGTHOF(measures), appendTo, pos, status); if (!assertSuccess("Error formatting", status)) { return; } diff --git a/icu4c/source/test/intltest/numfmtst.cpp b/icu4c/source/test/intltest/numfmtst.cpp index ba216fdacfb..bf67e5238b6 100644 --- a/icu4c/source/test/intltest/numfmtst.cpp +++ b/icu4c/source/test/intltest/numfmtst.cpp @@ -3401,8 +3401,8 @@ NumberFormatTest::TestCurrencyIsoPluralFormat() { UNUM_CURRENCY_PLURAL }; - for (int32_t i=0; iselect(fData[i])== KEYWORD_A) != isKeywordA[i]) { errln("File %s, Line %d, ERROR: plural rules for decimal fractions test failed!\n" " number = %g, expected %s", __FILE__, __LINE__, fData[i], isKeywordA[i]?"TRUE":"FALSE"); @@ -396,7 +396,7 @@ void PluralRulesTest::testGetSamples() { } const UnicodeString* keyword; while (NULL != (keyword = keywords->snext(status))) { - int32_t count = rules->getSamples(*keyword, values, uprv_lengthof(values), status); + int32_t count = rules->getSamples(*keyword, values, UPRV_LENGTHOF(values), status); if (U_FAILURE(status)) { errln(UNICODE_STRING_SIMPLE("getSamples() failed for locale ") + locales[i].getName() + @@ -407,12 +407,12 @@ void PluralRulesTest::testGetSamples() { // TODO: Lots of these. // errln(UNICODE_STRING_SIMPLE("no samples for keyword ") + *keyword + UNICODE_STRING_SIMPLE(" in locale ") + locales[i].getName() ); } - if (count > uprv_lengthof(values)) { + if (count > UPRV_LENGTHOF(values)) { errln(UNICODE_STRING_SIMPLE("getSamples()=") + count + UNICODE_STRING_SIMPLE(", too many values, for locale ") + locales[i].getName() + UNICODE_STRING_SIMPLE(", keyword ") + *keyword); - count = uprv_lengthof(values); + count = UPRV_LENGTHOF(values); } for (int32_t j = 0; j < count; ++j) { if (values[j] == UPLRULES_NO_UNIQUE_VALUE) { @@ -937,7 +937,7 @@ void PluralRulesTest::testParseErrors() { "a: n % 37 ! in 3..4" }; - for (int i=0; iformat( keywords[i], result , ignore , status); if (!U_FAILURE(status)) { diff --git a/icu4c/source/test/intltest/simplepatternformattertest.cpp b/icu4c/source/test/intltest/simplepatternformattertest.cpp index 3b0f2982101..c408d091ba0 100644 --- a/icu4c/source/test/intltest/simplepatternformattertest.cpp +++ b/icu4c/source/test/intltest/simplepatternformattertest.cpp @@ -103,13 +103,13 @@ void SimplePatternFormatterTest::TestManyPlaceholders() { "Prefix: Templates frogtommy{0} and leg are out of order.", fmt.format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), appendTo, offsets, - uprv_lengthof(offsets), + UPRV_LENGTHOF(offsets), status)); assertSuccess("Status", status); - for (int32_t i = 0; i < uprv_lengthof(expectedOffsets); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(expectedOffsets); ++i) { if (expectedOffsets[i] != offsets[i]) { errln("Expected %d, got %d", expectedOffsets[i], offsets[i]); } @@ -117,25 +117,25 @@ void SimplePatternFormatterTest::TestManyPlaceholders() { appendTo.remove(); fmt.format( params, - uprv_lengthof(params) - 1, + UPRV_LENGTHOF(params) - 1, appendTo, offsets, - uprv_lengthof(offsets), + UPRV_LENGTHOF(offsets), status); if (status != U_ILLEGAL_ARGUMENT_ERROR) { errln("Expected U_ILLEGAL_ARGUMENT_ERROR"); } status = U_ZERO_ERROR; - offsets[uprv_lengthof(offsets) - 1] = 289; + offsets[UPRV_LENGTHOF(offsets) - 1] = 289; appendTo.remove(); fmt.format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), appendTo, offsets, - uprv_lengthof(offsets) - 1, + UPRV_LENGTHOF(offsets) - 1, status); - assertEquals("Offsets buffer length", 289, offsets[uprv_lengthof(offsets) - 1]); + assertEquals("Offsets buffer length", 289, offsets[UPRV_LENGTHOF(offsets) - 1]); // Test assignment SimplePatternFormatter s; @@ -146,7 +146,7 @@ void SimplePatternFormatterTest::TestManyPlaceholders() { "Templates frogtommy{0} and leg are out of order.", s.format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), appendTo, NULL, 0, @@ -160,7 +160,7 @@ void SimplePatternFormatterTest::TestManyPlaceholders() { "Templates frogtommy{0} and leg are out of order.", r.format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), appendTo, NULL, 0, @@ -210,13 +210,13 @@ void SimplePatternFormatterTest::TestOptimization() { "leg, freddy, frog and by", fmt.format( params, - uprv_lengthof(params), + UPRV_LENGTHOF(params), values[2], offsets, - uprv_lengthof(offsets), + UPRV_LENGTHOF(offsets), status)); assertSuccess("Status", status); - for (int32_t i = 0; i < uprv_lengthof(expectedOffsets); ++i) { + for (int32_t i = 0; i < UPRV_LENGTHOF(expectedOffsets); ++i) { if (expectedOffsets[i] != offsets[i]) { errln("Expected %d, got %d", expectedOffsets[i], offsets[i]); } diff --git a/icu4c/source/test/intltest/strcase.cpp b/icu4c/source/test/intltest/strcase.cpp index 17656b45576..01d8db9bd1e 100644 --- a/icu4c/source/test/intltest/strcase.cpp +++ b/icu4c/source/test/intltest/strcase.cpp @@ -490,7 +490,7 @@ StringCaseTest::TestCasing() { // or even just { 0 } as boundaries. static const UChar rules[] = { 0x2e, 0x2a, 0x3b }; // ".*;" UParseError parseError; - iter.adoptInstead(ubrk_openRules(rules, uprv_lengthof(rules), NULL, 0, &parseError, &status)); + iter.adoptInstead(ubrk_openRules(rules, UPRV_LENGTHOF(rules), NULL, 0, &parseError, &status)); } } #endif diff --git a/icu4c/source/test/intltest/tfsmalls.cpp b/icu4c/source/test/intltest/tfsmalls.cpp index 3eeef5d645e..80bc1c578cf 100644 --- a/icu4c/source/test/intltest/tfsmalls.cpp +++ b/icu4c/source/test/intltest/tfsmalls.cpp @@ -254,7 +254,7 @@ void test_Formattable( void ) ucs, ucs_ptr }; - const int32_t ft_cnt = uprv_lengthof(ftarray); + const int32_t ft_cnt = UPRV_LENGTHOF(ftarray); Formattable ft_arr( ftarray, ft_cnt ); UnicodeString temp; if ((ft_arr[0].getType() == Formattable::kDate) && (ft_arr[0].getDate() == 1.0) diff --git a/icu4c/source/test/intltest/tmsgfmt.cpp b/icu4c/source/test/intltest/tmsgfmt.cpp index 17be2b73115..939de8c627d 100644 --- a/icu4c/source/test/intltest/tmsgfmt.cpp +++ b/icu4c/source/test/intltest/tmsgfmt.cpp @@ -1605,7 +1605,7 @@ void TestMessageFormat::TestApostropheMode() { "I don't know", "I don't know", "I don''t know", "I don't know", "I don''t know", "I don''t know" }; - int32_t tuples_count = uprv_lengthof(tuples); + int32_t tuples_count = UPRV_LENGTHOF(tuples); for (int i = 0; i < tuples_count; i += 3) { UnicodeString& desired = tuples[i]; diff --git a/icu4c/source/test/intltest/tsmthred.cpp b/icu4c/source/test/intltest/tsmthred.cpp index 9bc3a77a051..0d7db526be0 100644 --- a/icu4c/source/test/intltest/tsmthred.cpp +++ b/icu4c/source/test/intltest/tsmthred.cpp @@ -276,7 +276,7 @@ private: IntlTest inteltst = IntlTest(); status = U_ZERO_ERROR; - length = u_shapeArabic(src, -1, dst, uprv_lengthof(dst), + length = u_shapeArabic(src, -1, dst, UPRV_LENGTHOF(dst), U_SHAPE_LETTERS_SHAPE|U_SHAPE_SEEN_TWOCELL_NEAR, &status); if(U_FAILURE(status)) { inteltst.errln("Fail: status %s\n", u_errorName(status)); @@ -284,7 +284,7 @@ private: } else if(length!=2) { inteltst.errln("Fail: len %d expected 3\n", length); return FALSE; - } else if(u_strncmp(dst,dst_old,uprv_lengthof(dst))) { + } else if(u_strncmp(dst,dst_old,UPRV_LENGTHOF(dst))) { inteltst.errln("Fail: got U+%04X U+%04X expected U+%04X U+%04X\n", dst[0],dst[1],dst_old[0],dst_old[1]); return FALSE; @@ -293,7 +293,7 @@ private: //"Trying new tail status = U_ZERO_ERROR; - length = u_shapeArabic(src, -1, dst, uprv_lengthof(dst), + length = u_shapeArabic(src, -1, dst, UPRV_LENGTHOF(dst), U_SHAPE_LETTERS_SHAPE|U_SHAPE_SEEN_TWOCELL_NEAR|U_SHAPE_TAIL_NEW_UNICODE, &status); if(U_FAILURE(status)) { inteltst.errln("Fail: status %s\n", u_errorName(status)); @@ -301,7 +301,7 @@ private: } else if(length!=2) { inteltst.errln("Fail: len %d expected 3\n", length); return FALSE; - } else if(u_strncmp(dst,dst_new,uprv_lengthof(dst))) { + } else if(u_strncmp(dst,dst_new,UPRV_LENGTHOF(dst))) { inteltst.errln("Fail: got U+%04X U+%04X expected U+%04X U+%04X\n", dst[0],dst[1],dst_new[0],dst_new[1]); return FALSE; @@ -1777,9 +1777,9 @@ void MultithreadTest::TestUnifiedCache() { gFinishedThreads = 0; gObjectsCreated = 0; - UnifiedCacheThread *threads[CACHE_LOAD][uprv_lengthof(gCacheLocales)]; + UnifiedCacheThread *threads[CACHE_LOAD][UPRV_LENGTHOF(gCacheLocales)]; for (int32_t i=0; istart(); } @@ -1787,15 +1787,15 @@ void MultithreadTest::TestUnifiedCache() { // Wait on all the threads to complete verify that LENGTHOF(gCacheLocales) // objects were created. umtx_lock(&gCTMutex); - while (gFinishedThreads < CACHE_LOAD*uprv_lengthof(gCacheLocales)) { + while (gFinishedThreads < CACHE_LOAD*UPRV_LENGTHOF(gCacheLocales)) { umtx_condWait(&gCTConditionVar, &gCTMutex); } - assertEquals("Objects created", uprv_lengthof(gCacheLocales), gObjectsCreated); + assertEquals("Objects created", UPRV_LENGTHOF(gCacheLocales), gObjectsCreated); umtx_unlock(&gCTMutex); // clean up threads for (int32_t i=0; igetCanonStartSet(iI[i], iSet)) { set.addAll(iSet); } @@ -1133,7 +1133,7 @@ BasicNormalizerTest::TestCompare() { } s1.setTo(c); - for(k=0; ksetMinimumFractionDigits(i); nf->setMaximumFractionDigits(i); nf->setRoundingMode(DecimalFormat::kRoundDown); diff --git a/icu4c/source/test/intltest/tztest.cpp b/icu4c/source/test/intltest/tztest.cpp index 192cc17b735..9979f76a06a 100644 --- a/icu4c/source/test/intltest/tztest.cpp +++ b/icu4c/source/test/intltest/tztest.cpp @@ -1905,9 +1905,9 @@ void TimeZoneTest::TestFebruary() { TimeZone *tz; UDate dt; int32_t t, i, raw, dst; - for (t = 0; t < uprv_lengthof(timezones); ++t) { + for (t = 0; t < UPRV_LENGTHOF(timezones); ++t) { tz = timezones[t]; - for (i = 0; i < uprv_lengthof(data); ++i) { + for (i = 0; i < UPRV_LENGTHOF(data); ++i) { gc.set(data[i].year, data[i].month, data[i].day, data[i].hour, data[i].minute, data[i].second); dt = gc.getTime(status); diff --git a/icu4c/source/test/intltest/ucdtest.cpp b/icu4c/source/test/intltest/ucdtest.cpp index 181fa50bdaa..a63e71291d5 100644 --- a/icu4c/source/test/intltest/ucdtest.cpp +++ b/icu4c/source/test/intltest/ucdtest.cpp @@ -38,7 +38,7 @@ UnicodeTest::UnicodeTest() unknownPropertyNames=NULL; } // Ignore some property names altogether. - for(int32_t i=0; iputi(UnicodeString(ignorePropNames[i], -1, US_INV), 1, errorCode); } } @@ -148,7 +148,7 @@ derivedPropsIndex[]={ UCHAR_CHANGES_WHEN_NFKC_CASEFOLDED }; -static int32_t numErrors[uprv_lengthof(derivedPropsIndex)]={ 0 }; +static int32_t numErrors[UPRV_LENGTHOF(derivedPropsIndex)]={ 0 }; enum { MAX_ERRORS=50 }; @@ -168,7 +168,7 @@ derivedPropsLineFn(void *context, } /* parse derived binary property name, ignore unknown names */ - i=getTokenIndex(derivedPropsNames, uprv_lengthof(derivedPropsNames), fields[1][0]); + i=getTokenIndex(derivedPropsNames, UPRV_LENGTHOF(derivedPropsNames), fields[1][0]); if(i<0) { UnicodeString propName(fields[1][0], (int32_t)(fields[1][1]-fields[1][0])); propName.trim(); @@ -186,13 +186,13 @@ derivedPropsLineFn(void *context, void UnicodeTest::TestAdditionalProperties() { #if !UCONFIG_NO_NORMALIZATION // test DerivedCoreProperties.txt and DerivedNormalizationProps.txt - if(uprv_lengthof(derivedProps) trie(buildTrie(data, uprv_lengthof(data), USTRINGTRIE_BUILD_FAST)); + LocalPointer trie(buildTrie(data, UPRV_LENGTHOF(data), USTRINGTRIE_BUILD_FAST)); if(trie.isNull()) { return; // buildTrie() reported an error } @@ -456,7 +456,7 @@ UCharsTrie *UCharsTrieTest::buildMonthsTrie(UStringTrieBuildOption buildOption) { "jun.", 6 }, { "june", 6 } }; - return buildTrie(data, uprv_lengthof(data), buildOption); + return buildTrie(data, UPRV_LENGTHOF(data), buildOption); } void UCharsTrieTest::TestHasUniqueValue() { @@ -588,10 +588,10 @@ void UCharsTrieTest::TestIteratorFromBranch() { { "uar", 1 }, { "uary", 1 } }; - checkIterator(iter, data, uprv_lengthof(data)); + checkIterator(iter, data, UPRV_LENGTHOF(data)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), data, uprv_lengthof(data)); + checkIterator(iter.reset(), data, UPRV_LENGTHOF(data)); } void UCharsTrieTest::TestIteratorFromLinearMatch() { @@ -616,10 +616,10 @@ void UCharsTrieTest::TestIteratorFromLinearMatch() { { "r", 1 }, { "ry", 1 } }; - checkIterator(iter, data, uprv_lengthof(data)); + checkIterator(iter, data, UPRV_LENGTHOF(data)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), data, uprv_lengthof(data)); + checkIterator(iter.reset(), data, UPRV_LENGTHOF(data)); } void UCharsTrieTest::TestTruncatingIteratorFromRoot() { @@ -662,10 +662,10 @@ void UCharsTrieTest::TestTruncatingIteratorFromRoot() { { "jun.", 6 }, { "june", 6 } }; - checkIterator(iter, data, uprv_lengthof(data)); + checkIterator(iter, data, UPRV_LENGTHOF(data)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), data, uprv_lengthof(data)); + checkIterator(iter.reset(), data, UPRV_LENGTHOF(data)); } void UCharsTrieTest::TestTruncatingIteratorFromLinearMatchShort() { @@ -674,7 +674,7 @@ void UCharsTrieTest::TestTruncatingIteratorFromLinearMatchShort() { { "abcdepq", 200 }, { "abcdeyz", 3000 } }; - LocalPointer trie(buildTrie(data, uprv_lengthof(data), USTRINGTRIE_BUILD_FAST)); + LocalPointer trie(buildTrie(data, UPRV_LENGTHOF(data), USTRINGTRIE_BUILD_FAST)); if(trie.isNull()) { return; // buildTrie() reported an error } @@ -690,10 +690,10 @@ void UCharsTrieTest::TestTruncatingIteratorFromLinearMatchShort() { static const StringAndValue expected[]={ { "cd", -1 } }; - checkIterator(iter, expected, uprv_lengthof(expected)); + checkIterator(iter, expected, UPRV_LENGTHOF(expected)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), expected, uprv_lengthof(expected)); + checkIterator(iter.reset(), expected, UPRV_LENGTHOF(expected)); } void UCharsTrieTest::TestTruncatingIteratorFromLinearMatchLong() { @@ -702,7 +702,7 @@ void UCharsTrieTest::TestTruncatingIteratorFromLinearMatchLong() { { "abcdepq", 200 }, { "abcdeyz", 3000 } }; - LocalPointer trie(buildTrie(data, uprv_lengthof(data), USTRINGTRIE_BUILD_FAST)); + LocalPointer trie(buildTrie(data, UPRV_LENGTHOF(data), USTRINGTRIE_BUILD_FAST)); if(trie.isNull()) { return; // buildTrie() reported an error } @@ -721,10 +721,10 @@ void UCharsTrieTest::TestTruncatingIteratorFromLinearMatchLong() { { "dep", -1 }, { "dey", -1 } }; - checkIterator(iter, expected, uprv_lengthof(expected)); + checkIterator(iter, expected, UPRV_LENGTHOF(expected)); // Reset, and we should get the same result. logln("after iter.reset()"); - checkIterator(iter.reset(), expected, uprv_lengthof(expected)); + checkIterator(iter.reset(), expected, UPRV_LENGTHOF(expected)); } void UCharsTrieTest::TestIteratorFromUChars() { @@ -735,13 +735,13 @@ void UCharsTrieTest::TestIteratorFromUChars() { }; builder_->clear(); IcuTestErrorCode errorCode(*this, "TestIteratorFromUChars()"); - for(int32_t i=0; iadd(data[i].s, data[i].value, errorCode); } UnicodeString trieUChars; builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); UCharsTrie::Iterator iter(trieUChars.getBuffer(), 0, errorCode); - checkIterator(iter, data, uprv_lengthof(data)); + checkIterator(iter, data, UPRV_LENGTHOF(data)); } void UCharsTrieTest::checkData(const StringAndValue data[], int32_t dataLength) { @@ -1034,7 +1034,7 @@ void UCharsTrieTest::checkIterator(UCharsTrie::Iterator &iter, if(iter.getString()!=expectedString) { char buffer[1000]; UnicodeString invString(prettify(iter.getString())); - invString.extract(0, invString.length(), buffer, uprv_lengthof(buffer), US_INV); + invString.extract(0, invString.length(), buffer, UPRV_LENGTHOF(buffer), US_INV); errln("trie iterator next().getString()=%s but expected %s for item %d", buffer, data[i].s, (int)i); } diff --git a/icu4c/source/test/intltest/usettest.cpp b/icu4c/source/test/intltest/usettest.cpp index e4955ff3634..3f1713d357b 100644 --- a/icu4c/source/test/intltest/usettest.cpp +++ b/icu4c/source/test/intltest/usettest.cpp @@ -2320,7 +2320,7 @@ public: const UnicodeString *s; char *s8=utf8; int32_t length8, utf8Count=0; - while(iter.nextRange() && stringsLengthuprv_lengthof(limits)) { + if(limitsCount>UPRV_LENGTHOF(limits)) { errln("FAIL: %s[0x%lx].%s.%s span count=%ld > %ld capacity - too many spans", - testName, (long)index, setNames[i], typeName, (long)limitsCount, (long)uprv_lengthof(limits)); + testName, (long)index, setNames[i], typeName, (long)limitsCount, (long)UPRV_LENGTHOF(limits)); return; } memcpy(expectLimits, limits, limitsCount*4); @@ -3278,7 +3278,7 @@ void UnicodeSetTest::testSpanContents(const UnicodeSetWithStrings *sets[4], uint UChar32 c, first; for(first=c=0;; c=nextCodePoint(c)) { - if(c>0x10ffff || length>(uprv_lengthof(s)-U16_MAX_LENGTH)) { + if(c>0x10ffff || length>(UPRV_LENGTHOF(s)-U16_MAX_LENGTH)) { localWhichSpans=whichSpans; if(stringContainsUnpairedSurrogate(s, length) && inconsistentSurrogates) { localWhichSpans&=~SPAN_UTF8; @@ -3314,7 +3314,7 @@ void UnicodeSetTest::testSpanUTF16String(const UnicodeSetWithStrings *sets[4], u return; } testSpan(sets, s, -1, TRUE, (whichSpans&~SPAN_UTF8), testName, 0); - testSpan(sets, s, uprv_lengthof(s)-1, TRUE, (whichSpans&~SPAN_UTF8), testName, 1); + testSpan(sets, s, UPRV_LENGTHOF(s)-1, TRUE, (whichSpans&~SPAN_UTF8), testName, 1); } void UnicodeSetTest::testSpanUTF8String(const UnicodeSetWithStrings *sets[4], uint32_t whichSpans, const char *testName) { @@ -3411,7 +3411,7 @@ void UnicodeSetTest::testSpanUTF8String(const UnicodeSetWithStrings *sets[4], ui return; } testSpan(sets, s, -1, FALSE, (whichSpans&~SPAN_UTF16), testName, 0); - testSpan(sets, s, uprv_lengthof(s)-1, FALSE, (whichSpans&~SPAN_UTF16), testName, 1); + testSpan(sets, s, UPRV_LENGTHOF(s)-1, FALSE, (whichSpans&~SPAN_UTF16), testName, 1); } // Take a set of span options and multiply them so that @@ -3613,7 +3613,7 @@ void UnicodeSetTest::TestSpan() { char *testNameLimit=testName; int32_t i, j; - for(i=0; ilabelToUnicodeUTF8(StringPiece(NULL, 5), sink, info, errorCode); if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || sink.NumberOfBytesWritten()!=0) { @@ -213,7 +213,7 @@ void UTS46Test::TestNotSTD3() { UNICODE_STRING_SIMPLE("\\u0000a_2+2=4\\u000A.essen.net").unescape() || info.hasErrors() ) { - prettify(result).extract(0, 0x7fffffff, buffer, uprv_lengthof(buffer)); + prettify(result).extract(0, 0x7fffffff, buffer, UPRV_LENGTHOF(buffer)); errln("notSTD3.nameToUnicode(non-LDH ASCII) unexpected errors %04lx string %s", (long)info.getErrors(), buffer); } @@ -227,7 +227,7 @@ void UTS46Test::TestNotSTD3() { input=UNICODE_STRING_SIMPLE("a\\u2260b\\u226Ec\\u226Fd").unescape(); not3->nameToUnicode(input, result, info, errorCode); if(result!=input || info.hasErrors()) { - prettify(result).extract(0, 0x7fffffff, buffer, uprv_lengthof(buffer)); + prettify(result).extract(0, 0x7fffffff, buffer, UPRV_LENGTHOF(buffer)); errln("notSTD3.nameToUnicode(equiv to non-LDH ASCII) unexpected errors %04lx string %s", (long)info.getErrors(), buffer); } @@ -582,7 +582,7 @@ void UTS46Test::TestSomeCases() { IcuTestErrorCode errorCode(*this, "TestSomeCases"); char buffer[400], buffer2[400]; int32_t i; - for(i=0; icountKeys()>uprv_lengthof(shortBits)) { + if(bitHash->countKeys()>UPRV_LENGTHOF(shortBits)) { bits=(int64_t *)uprv_malloc(bitHash->countKeys()*8); } if(bits!=NULL) { diff --git a/icu4c/source/test/perf/unisetperf/unisetperf.cpp b/icu4c/source/test/perf/unisetperf/unisetperf.cpp index 67b1b59441a..db46b1e70ce 100644 --- a/icu4c/source/test/perf/unisetperf/unisetperf.cpp +++ b/icu4c/source/test/perf/unisetperf/unisetperf.cpp @@ -44,7 +44,7 @@ static const char *const unisetperf_usage = class UnicodeSetPerformanceTest : public UPerfTest { public: UnicodeSetPerformanceTest(int32_t argc, const char *argv[], UErrorCode &status) - : UPerfTest(argc, argv, options, uprv_lengthof(options), unisetperf_usage, status), + : UPerfTest(argc, argv, options, UPRV_LENGTHOF(options), unisetperf_usage, status), utf8(NULL), utf8Length(0), countInputCodePoints(0), spanCount(0) { if (U_SUCCESS(status)) { UnicodeString pattern=UnicodeString(options[SET_PATTERN].value, -1, US_INV).unescape(); diff --git a/icu4c/source/test/perf/utfperf/utfperf.cpp b/icu4c/source/test/perf/utfperf/utfperf.cpp index e62db57e437..98bc7282482 100644 --- a/icu4c/source/test/perf/utfperf/utfperf.cpp +++ b/icu4c/source/test/perf/utfperf/utfperf.cpp @@ -65,7 +65,7 @@ static const char *const utfperf_usage = class UtfPerformanceTest : public UPerfTest{ public: UtfPerformanceTest(int32_t argc, const char *argv[], UErrorCode &status) - : UPerfTest(argc, argv, options, uprv_lengthof(options), utfperf_usage, status) { + : UPerfTest(argc, argv, options, UPRV_LENGTHOF(options), utfperf_usage, status) { if (U_SUCCESS(status)) { charset = options[CHARSET].value; diff --git a/icu4c/source/tools/gennorm2/gennorm2.cpp b/icu4c/source/tools/gennorm2/gennorm2.cpp index 2633385adcf..5ca963fdfdf 100644 --- a/icu4c/source/tools/gennorm2/gennorm2.cpp +++ b/icu4c/source/tools/gennorm2/gennorm2.cpp @@ -237,7 +237,7 @@ void parseFile(FILE *f, Normalizer2DataBuilder &builder) { } if(*delimiter=='=' || *delimiter=='>') { UChar uchars[Normalizer2Impl::MAPPING_LENGTH_MASK]; - int32_t length=u_parseString(delimiter+1, uchars, uprv_lengthof(uchars), NULL, errorCode); + int32_t length=u_parseString(delimiter+1, uchars, UPRV_LENGTHOF(uchars), NULL, errorCode); if(errorCode.isFailure()) { fprintf(stderr, "gennorm2 error: parsing mapping string from %s\n", line); exit(errorCode.reset()); diff --git a/icu4c/source/tools/gennorm2/n2builder.cpp b/icu4c/source/tools/gennorm2/n2builder.cpp index 187833c2de6..042694e4150 100644 --- a/icu4c/source/tools/gennorm2/n2builder.cpp +++ b/icu4c/source/tools/gennorm2/n2builder.cpp @@ -68,7 +68,7 @@ public: HangulIterator() : rangeIndex(0) {} const Range *nextRange() { - if(rangeIndexstage1[i1]=(uint16_t)newBlock; extData->stage2Top=newBlock+MBCS_STAGE_2_BLOCK_SIZE; - if(extData->stage2Top>uprv_lengthof(extData->stage2)) { + if(extData->stage2Top>UPRV_LENGTHOF(extData->stage2)) { fprintf(stderr, "error: too many stage 2 entries at U+%04x\n", (int)c); exit(U_MEMORY_ALLOCATION_ERROR); } @@ -868,7 +868,7 @@ addFromUTrieEntry(CnvExtData *extData, UChar32 c, uint32_t value) { extData->stage2[i2]=(uint16_t)(newBlock>>UCNV_EXT_STAGE_2_LEFT_SHIFT); extData->stage3Top=newBlock+MBCS_STAGE_3_BLOCK_SIZE; - if(extData->stage3Top>uprv_lengthof(extData->stage3)) { + if(extData->stage3Top>UPRV_LENGTHOF(extData->stage3)) { fprintf(stderr, "error: too many stage 3 entries at U+%04x\n", (int)c); exit(U_MEMORY_ALLOCATION_ERROR); } @@ -912,7 +912,7 @@ addFromUTrieEntry(CnvExtData *extData, UChar32 c, uint32_t value) { } } } else { - if((i3b=extData->stage3bTop++)>=uprv_lengthof(extData->stage3b)) { + if((i3b=extData->stage3bTop++)>=UPRV_LENGTHOF(extData->stage3b)) { fprintf(stderr, "error: too many stage 3b entries at U+%04x\n", (int)c); exit(U_MEMORY_ALLOCATION_ERROR); } diff --git a/icu4c/source/tools/makeconv/makeconv.c b/icu4c/source/tools/makeconv/makeconv.c index 8a9a9ec6616..4eabcba51f5 100644 --- a/icu4c/source/tools/makeconv/makeconv.c +++ b/icu4c/source/tools/makeconv/makeconv.c @@ -211,7 +211,7 @@ int main(int argc, char* argv[]) /* preset then read command line options */ options[OPT_DESTDIR].value=u_getDataDirectory(); - argc=u_parseArgs(argc, argv, uprv_lengthof(options), options); + argc=u_parseArgs(argc, argv, UPRV_LENGTHOF(options), options); /* error handling, printing usage message */ if(argc<0) { diff --git a/icu4c/source/tools/toolutil/package.cpp b/icu4c/source/tools/toolutil/package.cpp index 624c6e498d8..65805391253 100644 --- a/icu4c/source/tools/toolutil/package.cpp +++ b/icu4c/source/tools/toolutil/package.cpp @@ -592,7 +592,7 @@ Package::readPackage(const char *filename) { exit(U_INVALID_FORMAT_ERROR); } prefixLength=(int32_t)(prefixLimit-s); - if(prefixLength==0 || prefixLength>=uprv_lengthof(pkgPrefix)) { + if(prefixLength==0 || prefixLength>=UPRV_LENGTHOF(pkgPrefix)) { fprintf(stderr, "icupkg: --auto_toc_prefix[_with_type] but " "the prefix of the first entry \"%s\" is empty or too long\n", diff --git a/icu4c/source/tools/toolutil/pkg_icu.cpp b/icu4c/source/tools/toolutil/pkg_icu.cpp index c452e3db6bd..c2f3904878d 100644 --- a/icu4c/source/tools/toolutil/pkg_icu.cpp +++ b/icu4c/source/tools/toolutil/pkg_icu.cpp @@ -35,7 +35,7 @@ isListTextFile(const char *listname) { const char *listNameEnd=strchr(listname, 0); const char *suffix; int32_t i, length; - for(i=0; ilength && 0==memcmp(listNameEnd-length, suffix, length)) { diff --git a/icu4c/source/tools/toolutil/ppucd.cpp b/icu4c/source/tools/toolutil/ppucd.cpp index 23b0f99ad14..ed5229be786 100644 --- a/icu4c/source/tools/toolutil/ppucd.cpp +++ b/icu4c/source/tools/toolutil/ppucd.cpp @@ -296,7 +296,7 @@ PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newV int32_t prop=pnames->getPropertyEnum(p); if(prop<0) { for(int32_t i=0;; ++i) { - if(i==uprv_lengthof(ppucdProperties)) { + if(i==UPRV_LENGTHOF(ppucdProperties)) { // Ignore unknown property names. return TRUE; } diff --git a/icu4c/source/tools/toolutil/swapimpl.cpp b/icu4c/source/tools/toolutil/swapimpl.cpp index 0f92e261aa3..dbeff2d7b8a 100644 --- a/icu4c/source/tools/toolutil/swapimpl.cpp +++ b/icu4c/source/tools/toolutil/swapimpl.cpp @@ -790,7 +790,7 @@ udata_swap(const UDataSwapper *ds, } /* dispatch to the swap function for the dataFormat */ - for(i=0; idataFormat, 4)) { swappedLength=swapFns[i].swapFn(ds, inData, length, outData, pErrorCode);