/external/icu4c/i18n/ |
ucol_res.cpp | 275 reorderRes = ures_getByKey(collElem, "%%ReorderCodes", NULL, &intStatus); 278 const int32_t* reorderCodes = ures_getIntVector(reorderRes, &reorderCodesLen, status); 280 ucol_setReorderCodes(result, reorderCodes, reorderCodesLen, status); 284 uprv_memcpy(result->defaultReorderCodes, result->reorderCodes, result->defaultReorderCodesLength * sizeof(int32_t)); 614 if(source->reorderCodes[i] != target->reorderCodes[i]) { [all...] |
ucol_tok.h | 140 int32_t* reorderCodes;
|
ucol.cpp | 551 int32_t* reorderCodes; 574 if (coll->reorderCodes) { 619 reorderCodes = (int32_t*)((uint8_t*)defaultReorderCodes + defaultReorderCodesSize); 620 leadBytePermutationTable = (uint8_t*)reorderCodes + reorderCodesSize; 663 if (coll->reorderCodes) { 664 localCollator->reorderCodes = 665 (int32_t*)uprv_memcpy(reorderCodes, coll->reorderCodes, coll->reorderCodesLength * sizeof(int32_t)); 725 if(coll->reorderCodes != NULL && coll->freeReorderCodesOnClose == TRUE) { 726 uprv_free(coll->reorderCodes); [all...] |
tblcoll.cpp | 623 void RuleBasedCollator::setReorderCodes(const int32_t *reorderCodes, 628 ucol_setReorderCodes(ucollator, reorderCodes, reorderCodesLength, &status);
|
ucol_tok.cpp | 666 src->reorderCodes = (int32_t*)uprv_malloc(codeCount * sizeof(int32_t)); 684 src->reorderCodes[codeIndex] = ucol_findReorderingEntry(conversion); 685 if (src->reorderCodes[codeIndex] == USCRIPT_INVALID_CODE) { 686 src->reorderCodes[codeIndex] = u_getPropertyValueEnum(UCHAR_SCRIPT, conversion); 688 if (src->reorderCodes[codeIndex] == USCRIPT_INVALID_CODE) { [all...] |
coll.cpp | 848 Collator::setReorderCodes(const int32_t* /* reorderCodes */,
|
ucol_imp.h | [all...] |
/external/icu4c/test/cintltst/ |
cmsccoll.c | [all...] |
/external/icu4c/tools/genrb/ |
parse.c | 905 int32_t reorderCodes[USCRIPT_CODE_LIMIT + (UCOL_REORDER_CODE_LIMIT - UCOL_REORDER_CODE_FIRST)]; 940 coll, reorderCodes, USCRIPT_CODE_LIMIT + (UCOL_REORDER_CODE_LIMIT - UCOL_REORDER_CODE_FIRST), &intStatus); 942 struct SResource *reorderCodeRes = intvector_open(state->bundle, "%%ReorderCodes", NULL, status); 944 intvector_add(reorderCodeRes, reorderCodes[reorderCodeIndex], status); [all...] |
/external/icu4c/i18n/unicode/ |
tblcoll.h | 688 * @param reorderCodes An array of script codes in the new order. This can be NULL if the 690 * @param reorderCodesLength The length of reorderCodes. 696 virtual void U_EXPORT2 setReorderCodes(const int32_t* reorderCodes, [all...] |
coll.h | 619 * @param reorderCodes An array of script codes in the new order. This can be NULL if the 621 * @param reorderCodesLength The length of reorderCodes. 627 virtual void U_EXPORT2 setReorderCodes(const int32_t* reorderCodes, [all...] |
ucol.h | 632 * @param reorderCodes An array of script codes in the new order. This can be NULL if the 634 * @param reorderCodesLength The length of reorderCodes. 643 const int32_t* reorderCodes, [all...] |