/external/icu/icu4c/source/common/ |
D | unorm.cpp | 50 UErrorCode *pErrorCode) { in unorm_quickCheck() argument 51 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode); in unorm_quickCheck() 52 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode); in unorm_quickCheck() 58 UErrorCode *pErrorCode) { in unorm_quickCheckWithOptions() argument 59 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode); in unorm_quickCheckWithOptions() 61 FilteredNormalizer2 fn2(*n2, *uniset_getUnicode32Instance(*pErrorCode)); in unorm_quickCheckWithOptions() 64 src, srcLength, pErrorCode); in unorm_quickCheckWithOptions() 66 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode); in unorm_quickCheckWithOptions() 73 UErrorCode *pErrorCode) { in unorm_isNormalized() argument 74 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode); in unorm_isNormalized() [all …]
|
D | utrie_swap.cpp | 28 UErrorCode *pErrorCode) { in utrie_swap() argument 34 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in utrie_swap() 38 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in utrie_swap() 44 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in utrie_swap() 63 *pErrorCode=U_INVALID_FORMAT_ERROR; /* not a UTrie */ in utrie_swap() 74 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in utrie_swap() 81 ds->swapArray32(ds, inTrie, sizeof(UTrieHeader), outTrie, pErrorCode); in utrie_swap() 85 ds->swapArray16(ds, inTrie+1, trie.indexLength*2, outTrie+1, pErrorCode); in utrie_swap() 87 (uint16_t *)(outTrie+1)+trie.indexLength, pErrorCode); in utrie_swap() 89 … ds->swapArray16(ds, inTrie+1, (trie.indexLength+trie.dataLength)*2, outTrie+1, pErrorCode); in utrie_swap() [all …]
|
D | udata.cpp | 212 setCommonICUDataPointer(const void *pData, UBool /*warn*/, UErrorCode *pErrorCode) { in setCommonICUDataPointer() argument 216 udata_checkCommonData(&tData, pErrorCode); in setCommonICUDataPointer() 217 return setCommonICUData(&tData, FALSE, pErrorCode); in setCommonICUDataPointer() 414 UErrorCode *pErrorCode); 415 const char *next(UErrorCode *pErrorCode); 448 UErrorCode *pErrorCode) in UDataPathIterator() argument 462 packageStub.append(U_FILE_SEP_CHAR, *pErrorCode).append(pkg, *pErrorCode); in UDataPathIterator() 476 itemPath.append(item, (int32_t)(basename-item), *pErrorCode); in UDataPathIterator() 514 const char *UDataPathIterator::next(UErrorCode *pErrorCode) in next() argument 516 if(U_FAILURE(*pErrorCode)) { in next() [all …]
|
D | udataswp.cpp | 35 UErrorCode *pErrorCode) { in uprv_swapArray16() argument 41 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in uprv_swapArray16() 45 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in uprv_swapArray16() 65 UErrorCode *pErrorCode) { in uprv_copyArray16() argument 66 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in uprv_copyArray16() 70 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in uprv_copyArray16() 83 UErrorCode *pErrorCode) { in uprv_swapArray32() argument 89 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in uprv_swapArray32() 93 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in uprv_swapArray32() 113 UErrorCode *pErrorCode) { in uprv_copyArray32() argument [all …]
|
D | ubiditransform.cpp | 93 ubiditransform_open(UErrorCode *pErrorCode) in ubiditransform_open() argument 96 if (U_SUCCESS(*pErrorCode)) { in ubiditransform_open() 99 *pErrorCode = U_MEMORY_ALLOCATION_ERROR; in ubiditransform_open() 129 action_resolve(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_resolve() argument 132 pTransform->pActiveScheme->baseLevel, NULL, pErrorCode); in action_resolve() 146 action_reorder(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_reorder() argument 149 static_cast<uint16_t>(pTransform->reorderingOptions), pErrorCode); in action_reorder() 166 action_setInverse(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_setInverse() argument 168 (void)pErrorCode; in action_setInverse() 185 action_setRunsOnly(UBiDiTransform *pTransform, UErrorCode *pErrorCode) in action_setRunsOnly() argument [all …]
|
D | ucnv_io.cpp | 313 haveAliasData(UErrorCode *pErrorCode) { in haveAliasData() argument 314 umtx_initOnce(gAliasDataInitOnce, &initAliasData, *pErrorCode); in haveAliasData() 315 return U_SUCCESS(*pErrorCode); in haveAliasData() 319 isAlias(const char *alias, UErrorCode *pErrorCode) { in isAlias() argument 321 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in isAlias() 552 findConverter(const char *alias, UBool *containsOption, UErrorCode *pErrorCode) { in findConverter() argument 561 *pErrorCode = U_BUFFER_OVERFLOW_ERROR; in findConverter() 599 *pErrorCode = U_AMBIGUOUS_ALIAS_WARNING; in findConverter() 645 findTaggedAliasListsOffset(const char *alias, const char *standard, UErrorCode *pErrorCode) { in findTaggedAliasListsOffset() argument 655 *pErrorCode = myErr; in findTaggedAliasListsOffset() [all …]
|
D | ustr_wcs.cpp | 70 UErrorCode *pErrorCode){ in _strToWCS() argument 85 conv = u_getDefaultConverter(pErrorCode); in _strToWCS() 87 if(U_FAILURE(*pErrorCode)){ in _strToWCS() 99 *pErrorCode = U_ZERO_ERROR; in _strToWCS() 102 …v_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode); in _strToWCS() 106 if(*pErrorCode==U_BUFFER_OVERFLOW_ERROR){ in _strToWCS() 128 if(U_FAILURE(*pErrorCode)){ in _strToWCS() 169 *pErrorCode = U_INVALID_CHAR_FOUND; in _strToWCS() 216 *pErrorCode = U_MEMORY_ALLOCATION_ERROR; in _strToWCS() 223 u_terminateWChars(dest,destCapacity,count,pErrorCode); in _strToWCS() [all …]
|
D | normalizer2.cpp | 314 unorm2_getNFCInstance(UErrorCode *pErrorCode) { in unorm2_getNFCInstance() argument 315 return (const UNormalizer2 *)Normalizer2::getNFCInstance(*pErrorCode); in unorm2_getNFCInstance() 319 unorm2_getNFDInstance(UErrorCode *pErrorCode) { in unorm2_getNFDInstance() argument 320 return (const UNormalizer2 *)Normalizer2::getNFDInstance(*pErrorCode); in unorm2_getNFDInstance() 332 UErrorCode *pErrorCode) { in unorm2_normalize() argument 333 if(U_FAILURE(*pErrorCode)) { in unorm2_normalize() 340 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in unorm2_normalize() 351 if(buffer.init(length, *pErrorCode)) { in unorm2_normalize() 352 n2wi->normalize(src, length>=0 ? src+length : NULL, buffer, *pErrorCode); in unorm2_normalize() 356 n2->normalize(srcString, destString, *pErrorCode); in unorm2_normalize() [all …]
|
D | ubidiwrt.cpp | 62 UErrorCode *pErrorCode) { in doWriteForward() argument 69 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteForward() 83 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteForward() 101 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteForward() 130 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteForward() 155 UErrorCode *pErrorCode) { in doWriteReverse() argument 187 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteReverse() 215 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteReverse() 264 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in doWriteReverse() 312 UErrorCode *pErrorCode) { in ubidi_writeReverse() argument [all …]
|
D | locdispnames.cpp | 303 UErrorCode *pErrorCode) { in _getStringOrCopyKey() argument 311 rb=ures_open(path, locale, pErrorCode); in _getStringOrCopyKey() 313 if(U_SUCCESS(*pErrorCode)) { in _getStringOrCopyKey() 314 s=ures_getStringByKey(rb, tableKey, &length, pErrorCode); in _getStringOrCopyKey() 321 *pErrorCode = U_MISSING_RESOURCE_ERROR; in _getStringOrCopyKey() 329 pErrorCode); in _getStringOrCopyKey() 333 if(U_SUCCESS(*pErrorCode)) { in _getStringOrCopyKey() 342 *pErrorCode=U_USING_DEFAULT_WARNING; in _getStringOrCopyKey() 345 return u_terminateUChars(dest, destCapacity, length, pErrorCode); in _getStringOrCopyKey() 356 UErrorCode *pErrorCode) { in _getDisplayNameForComponent() argument [all …]
|
D | propsvec.cpp | 44 upvec_open(int32_t columns, UErrorCode *pErrorCode) { in upvec_open() argument 49 if(U_FAILURE(*pErrorCode)) { in upvec_open() 53 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in upvec_open() 63 *pErrorCode=U_MEMORY_ALLOCATION_ERROR; in upvec_open() 158 UErrorCode *pErrorCode) { in upvec_setValue() argument 165 if(U_FAILURE(*pErrorCode)) { in upvec_setValue() 172 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in upvec_setValue() 176 *pErrorCode=U_NO_WRITE_PERMISSION; in upvec_setValue() 215 *pErrorCode=U_INTERNAL_PROGRAM_ERROR; in upvec_setValue() 220 *pErrorCode=U_MEMORY_ALLOCATION_ERROR; in upvec_setValue() [all …]
|
D | ucol_swp.cpp | 92 UErrorCode *pErrorCode) { in swapFormatVersion3() argument 103 if(U_FAILURE(*pErrorCode)) { in swapFormatVersion3() 107 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in swapFormatVersion3() 129 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in swapFormatVersion3() 142 *pErrorCode=U_UNSUPPORTED_ERROR; in swapFormatVersion3() 149 *pErrorCode=U_INVALID_FORMAT_ERROR; in swapFormatVersion3() 179 outHeader, pErrorCode); in swapFormatVersion3() 181 &(outHeader->scriptToLeadByte), pErrorCode); in swapFormatVersion3() 189 outBytes+header.options, pErrorCode); in swapFormatVersion3() 202 outBytes+header.expansion, pErrorCode); in swapFormatVersion3() [all …]
|
D | utrie2_builder.cpp | 116 utrie2_open(uint32_t initialValue, uint32_t errorValue, UErrorCode *pErrorCode) { in utrie2_open() argument 122 if(U_FAILURE(*pErrorCode)) { in utrie2_open() 133 *pErrorCode=U_MEMORY_ALLOCATION_ERROR; in utrie2_open() 148 newTrie->t3=umutablecptrie_open(initialValue, errorValue, pErrorCode); in utrie2_open() 242 utrie2_set32(trie, i, initialValue, pErrorCode); in utrie2_open() 299 utrie2_clone(const UTrie2 *other, UErrorCode *pErrorCode) { in utrie2_clone() argument 302 if(U_FAILURE(*pErrorCode)) { in utrie2_clone() 306 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in utrie2_clone() 403 utrie2_cloneAsThawed(const UTrie2 *other, UErrorCode *pErrorCode) { in utrie2_cloneAsThawed() argument 407 if(U_FAILURE(*pErrorCode)) { in utrie2_cloneAsThawed() [all …]
|
D | ustrtrns.cpp | 46 UErrorCode *pErrorCode) { in u_strFromUTF32WithSub() argument 55 if(U_FAILURE(*pErrorCode)){ in u_strFromUTF32WithSub() 62 *pErrorCode = U_ILLEGAL_ARGUMENT_ERROR; in u_strFromUTF32WithSub() 117 *pErrorCode = U_INVALID_CHAR_FOUND; in u_strFromUTF32WithSub() 134 u_terminateUChars(dest, destCapacity, reqLength, pErrorCode); in u_strFromUTF32WithSub() 145 UErrorCode *pErrorCode) { in u_strFromUTF32() argument 150 pErrorCode); in u_strFromUTF32() 160 UErrorCode *pErrorCode) { in u_strToUTF32WithSub() argument 170 if(U_FAILURE(*pErrorCode)){ in u_strToUTF32WithSub() 177 *pErrorCode = U_ILLEGAL_ARGUMENT_ERROR; in u_strToUTF32WithSub() [all …]
|
D | unormcmp.cpp | 146 UErrorCode *pErrorCode) { in unorm_cmpEquivFold() argument 181 nfcImpl=Normalizer2Factory::getNFCImpl(*pErrorCode); in unorm_cmpEquivFold() 185 if(U_FAILURE(*pErrorCode)) { in unorm_cmpEquivFold() 533 UnicodeString &normalized, UErrorCode *pErrorCode) { in _normalize() argument 537 int32_t spanQCYes=n2->spanQuickCheckYes(str, *pErrorCode); in _normalize() 538 if (U_FAILURE(*pErrorCode)) { in _normalize() 552 n2->normalizeSecondAndAppend(normalized, unnormalized, *pErrorCode); in _normalize() 553 if (U_SUCCESS(*pErrorCode)) { in _normalize() 564 UErrorCode *pErrorCode) { in unorm_compare() argument 566 if(U_FAILURE(*pErrorCode)) { in unorm_compare() [all …]
|
D | ucnv_u7.cpp | 199 UErrorCode *pErrorCode) { in _UTF7Open() argument 206 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in _UTF7Open() 212 UErrorCode *pErrorCode) { in _UTF7ToUnicodeWithOffsets() argument 278 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets() 299 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in _UTF7ToUnicodeWithOffsets() 339 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets() 346 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets() 352 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets() 425 *pErrorCode=U_ILLEGAL_CHAR_FOUND; in _UTF7ToUnicodeWithOffsets() 434 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in _UTF7ToUnicodeWithOffsets() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | swapimpl.cpp | 78 UErrorCode *pErrorCode) { in upname_swap() argument 80 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in upname_swap() 81 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in upname_swap() 100 *pErrorCode=U_UNSUPPORTED_ERROR; in upname_swap() 113 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in upname_swap() 125 *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; in upname_swap() 133 ds->swapArray32(ds, inBytes, numBytesIndexesAndValueMaps, outBytes, pErrorCode); in upname_swap() 163 UErrorCode *pErrorCode) { in uprops_swap() argument 171 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in uprops_swap() 172 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in uprops_swap() [all …]
|
D | uparse.cpp | 78 UErrorCode *pErrorCode) { in u_parseDelimitedFile() argument 84 if(U_FAILURE(*pErrorCode)) { in u_parseDelimitedFile() 89 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in u_parseDelimitedFile() 100 *pErrorCode=U_FILE_ACCESS_ERROR; in u_parseDelimitedFile() 115 *pErrorCode=U_ZERO_ERROR; in u_parseDelimitedFile() 117 *pErrorCode=U_USING_DEFAULT_WARNING; in u_parseDelimitedFile() 159 *pErrorCode=U_PARSE_ERROR; in u_parseDelimitedFile() 167 if(U_FAILURE(*pErrorCode)) { in u_parseDelimitedFile() 172 lineFn(context, fields, fieldCount, pErrorCode); in u_parseDelimitedFile() 173 if(U_FAILURE(*pErrorCode)) { in u_parseDelimitedFile() [all …]
|
D | pkgitems.cpp | 132 UErrorCode *pErrorCode) { in makeTargetName() argument 154 *pErrorCode=U_BUFFER_OVERFLOW_ERROR; in makeTargetName() 166 UErrorCode *pErrorCode) { in checkIDSuffix() argument 168 makeTargetName(itemName, id, idLength, suffix, target, (int32_t)sizeof(target), pErrorCode); in checkIDSuffix() 169 if(U_SUCCESS(*pErrorCode)) { in checkIDSuffix() 177 UErrorCode *pErrorCode) { in checkParent() argument 212 checkIDSuffix(itemName, parent, parentLength, suffix, check, context, pErrorCode); in checkParent() 225 CheckDependency check, void *context, UErrorCode *pErrorCode) { in checkAlias() argument 231 *pErrorCode=U_INVALID_CHAR_FOUND; in checkAlias() 257 *pErrorCode=U_UNSUPPORTED_ERROR; in checkAlias() [all …]
|
D | unewdata.cpp | 39 UErrorCode *pErrorCode) { in udata_create() argument 46 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in udata_create() 49 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in udata_create() 56 *pErrorCode=U_MEMORY_ALLOCATION_ERROR; in udata_create() 81 *pErrorCode = U_BUFFER_OVERFLOW_ERROR; in udata_create() 105 *pErrorCode=U_FILE_ACCESS_ERROR; in udata_create() 144 udata_finish(UNewDataMemory *pData, UErrorCode *pErrorCode) { in udata_finish() argument 147 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in udata_finish() 156 *pErrorCode=U_FILE_ACCESS_ERROR; in udata_finish() 184 udata_createDummy(const char *dir, const char *type, const char *name, UErrorCode *pErrorCode) { in udata_createDummy() argument [all …]
|
/external/icu/icu4c/source/i18n/ |
D | udatpg.cpp | 32 udatpg_open(const char *locale, UErrorCode *pErrorCode) { in udatpg_open() argument 34 return (UDateTimePatternGenerator *)DateTimePatternGenerator::createInstance(*pErrorCode); in udatpg_open() 36 …(UDateTimePatternGenerator *)DateTimePatternGenerator::createInstance(Locale(locale), *pErrorCode); in udatpg_open() 41 udatpg_openEmpty(UErrorCode *pErrorCode) { in udatpg_openEmpty() argument 42 return (UDateTimePatternGenerator *)DateTimePatternGenerator::createEmptyInstance(*pErrorCode); in udatpg_openEmpty() 51 udatpg_clone(const UDateTimePatternGenerator *dtpg, UErrorCode *pErrorCode) { in udatpg_clone() argument 52 if(U_FAILURE(*pErrorCode)) { in udatpg_clone() 62 UErrorCode *pErrorCode) { in udatpg_getBestPattern() argument 65 bestPattern, capacity, pErrorCode); in udatpg_getBestPattern() 73 UErrorCode *pErrorCode) { in udatpg_getBestPatternWithOptions() argument [all …]
|
/external/icu/icu4c/source/tools/gensprep/ |
D | gensprep.c | 58 parseMappings(const char *filename, UBool reportError, UErrorCode *pErrorCode); 61 parseNormalizationCorrections(const char *filename, UErrorCode *pErrorCode); 280 UErrorCode *pErrorCode) { in normalizationCorrectionsLineFn() argument 290 if(U_FAILURE(*pErrorCode)) { in normalizationCorrectionsLineFn() 292 exit(*pErrorCode); in normalizationCorrectionsLineFn() 298 length=u_parseCodePoints(s, mapping, sizeof(mapping)/4, pErrorCode); in normalizationCorrectionsLineFn() 307 if(U_FAILURE(*pErrorCode)) { in normalizationCorrectionsLineFn() 309 (long)code, u_errorName(*pErrorCode)); in normalizationCorrectionsLineFn() 310 exit(*pErrorCode); in normalizationCorrectionsLineFn() 317 storeMapping(code,mapping, length, USPREP_MAP, pErrorCode); in normalizationCorrectionsLineFn() [all …]
|
/external/icu/icu4c/source/common/unicode/ |
D | unorm2.h | 136 unorm2_getNFCInstance(UErrorCode *pErrorCode); 150 unorm2_getNFDInstance(UErrorCode *pErrorCode); 164 unorm2_getNFKCInstance(UErrorCode *pErrorCode); 178 unorm2_getNFKDInstance(UErrorCode *pErrorCode); 192 unorm2_getNFKCCasefoldInstance(UErrorCode *pErrorCode); 219 UErrorCode *pErrorCode); 237 unorm2_openFiltered(const UNormalizer2 *norm2, const USet *filterSet, UErrorCode *pErrorCode); 287 UErrorCode *pErrorCode); 310 UErrorCode *pErrorCode); 333 UErrorCode *pErrorCode); [all …]
|
/external/icu/libandroidicu/include/unicode/ |
D | unorm2.h | 136 unorm2_getNFCInstance(UErrorCode *pErrorCode); 150 unorm2_getNFDInstance(UErrorCode *pErrorCode); 164 unorm2_getNFKCInstance(UErrorCode *pErrorCode); 178 unorm2_getNFKDInstance(UErrorCode *pErrorCode); 192 unorm2_getNFKCCasefoldInstance(UErrorCode *pErrorCode); 219 UErrorCode *pErrorCode); 237 unorm2_openFiltered(const UNormalizer2 *norm2, const USet *filterSet, UErrorCode *pErrorCode); 287 UErrorCode *pErrorCode); 310 UErrorCode *pErrorCode); 333 UErrorCode *pErrorCode); [all …]
|
/external/icu/icu4c/source/tools/icuswap/ |
D | icuswap.cpp | 77 UErrorCode *pErrorCode); 292 UErrorCode *pErrorCode) { in extractPackageName() argument 296 if(U_FAILURE(*pErrorCode)) { in extractPackageName() 306 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in extractPackageName() 313 *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; in extractPackageName() 339 UErrorCode *pErrorCode) { in udata_swapPackage() argument 358 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in udata_swapPackage() 359 if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) { in udata_swapPackage() 376 *pErrorCode=U_UNSUPPORTED_ERROR; in udata_swapPackage() 388 pErrorCode); in udata_swapPackage() [all …]
|