Searched refs:reorderCodes (Results 1 - 11 of 11) sorted by relevance

/external/icu4c/i18n/
H A Ducol_res.cpp278 const int32_t* reorderCodes = ures_getIntVector(reorderRes, &reorderCodesLen, status); local
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]) {
1049 if (parser->reorderCodesLength == 0 || parser->reorderCodes == NULL) {
1054 if (coll->reorderCodes != NULL && coll->freeReorderCodesOnClose == TRUE) {
1055 uprv_free(coll->reorderCodes);
1067 uprv_memcpy(coll->defaultReorderCodes, parser->reorderCodes, coll->defaultReorderCodesLength * sizeof(int32_t));
1071 coll->reorderCodes
[all...]
H A Ducol_tok.h140 int32_t* reorderCodes; member in struct:__anon5365
H A Dtblcoll.cpp623 void RuleBasedCollator::setReorderCodes(const int32_t *reorderCodes, argument
628 ucol_setReorderCodes(ucollator, reorderCodes, reorderCodesLength, &status);
H A Ducol.cpp551 int32_t* reorderCodes; local
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);
6731 ucol_setReorderCodes(UCollator* coll, const int32_t* reorderCodes, int32_t reorderCodesLength, UErrorCode *status) argument
[all...]
H A Ducol_tok.cpp666 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) {
2447 if (src->reorderCodes != NULL) {
2448 uprv_free(src->reorderCodes);
H A Ducol_imp.h1060 int32_t* reorderCodes; member in struct:UCollator
/external/icu4c/test/cintltst/
H A Dcmsccoll.c5841 int32_t reorderCodes[1] = {USCRIPT_GREEK}; local
5885 ucol_setReorderCodes(myCollation, reorderCodes, 1, &status);
5914 int32_t reorderCodes[1] = {USCRIPT_GREEK}; local
5937 ucol_setReorderCodes(myCollation, reorderCodes, LEN(reorderCodes), &status);
5966 ucol_setReorderCodes(myCollation, reorderCodes, LEN(reorderCodes), &status);
5994 int32_t reorderCodes[3] = {USCRIPT_GREEK, USCRIPT_HAN, UCOL_REORDER_CODE_PUNCTUATION}; local
6015 ucol_setReorderCodes(myCollation, reorderCodes, LEN(reorderCodes),
6101 int32_t reorderCodes[3] = {USCRIPT_GREEK, USCRIPT_HAN, UCOL_REORDER_CODE_PUNCTUATION}; local
6289 int32_t reorderCodes[3] = {USCRIPT_GREEK, USCRIPT_HAN, UCOL_REORDER_CODE_PUNCTUATION}; local
[all...]
/external/icu4c/i18n/unicode/
H A Dcoll.h619 * @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,
H A Dtblcoll.h688 * @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,
H A Ducol.h632 * @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,
/external/icu4c/tools/genrb/
H A Dparse.c905 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);
944 intvector_add(reorderCodeRes, reorderCodes[reorderCodeIndex], status);

Completed in 136 milliseconds