HomeSort by relevance Sort by last modified time
    Searched refs:reorderCodes (Results 1 - 12 of 12) sorted by null

  /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));
613 if(source->reorderCodes[i] != target->reorderCodes[i]) {
    [all...]
ucol_tok.h 140 int32_t* reorderCodes;
tblcoll.cpp 526 void RuleBasedCollator::setReorderCodes(const int32_t *reorderCodes,
531 ucol_setReorderCodes(ucollator, reorderCodes, reorderCodesLength, &status);
ucol.cpp 572 int32_t* reorderCodes;
595 if (coll->reorderCodes) {
640 reorderCodes = (int32_t*)((uint8_t*)defaultReorderCodes + defaultReorderCodesSize);
641 leadBytePermutationTable = (uint8_t*)reorderCodes + reorderCodesSize;
684 if (coll->reorderCodes) {
685 localCollator->reorderCodes =
686 (int32_t*)uprv_memcpy(reorderCodes, coll->reorderCodes, coll->reorderCodesLength * sizeof(int32_t));
746 if(coll->reorderCodes != NULL && coll->freeReorderCodesOnClose == TRUE) {
747 uprv_free(coll->reorderCodes);
    [all...]
ucol_tok.cpp 660 src->reorderCodes = (int32_t*)uprv_malloc(codeCount * sizeof(int32_t));
678 src->reorderCodes[codeIndex] = ucol_findReorderingEntry(conversion);
679 if (src->reorderCodes[codeIndex] == USCRIPT_INVALID_CODE) {
680 src->reorderCodes[codeIndex] = u_getPropertyValueEnum(UCHAR_SCRIPT, conversion);
682 if (src->reorderCodes[codeIndex] == USCRIPT_INVALID_CODE) {
    [all...]
ucol_imp.h     [all...]
  /external/icu4c/test/intltest/
alphaindextst.cpp 315 int32_t reorderCodes[20];
317 if (index->getCollator().getReorderCodes(reorderCodes, LENGTHOF(reorderCodes), status) > 0) {
555 int32_t reorderCodes[] = { USCRIPT_HAN };
556 coll->setReorderCodes(reorderCodes, LENGTHOF(reorderCodes), status);
584 int32_t reorderCodes[] = { USCRIPT_HAN };
585 coll->setReorderCodes(reorderCodes, LENGTHOF(reorderCodes), status);
  /external/icu4c/test/cintltst/
cmsccoll.c     [all...]
  /external/icu4c/i18n/unicode/
coll.h 654 * @param reorderCodes An array of script codes in the new order. This can be NULL if the
656 * @param reorderCodesLength The length of reorderCodes.
664 virtual void setReorderCodes(const int32_t* reorderCodes,
    [all...]
tblcoll.h 588 * @param reorderCodes An array of script codes in the new order. This can be NULL if the
590 * @param reorderCodesLength The length of reorderCodes.
596 virtual void setReorderCodes(const int32_t* reorderCodes,
    [all...]
ucol.h 708 * @param reorderCodes An array of script codes in the new order. This can be NULL if the
710 * @param reorderCodesLength The length of reorderCodes.
721 const int32_t* reorderCodes,
    [all...]
  /external/icu4c/tools/genrb/
parse.cpp 921 int32_t reorderCodes[USCRIPT_CODE_LIMIT + (UCOL_REORDER_CODE_LIMIT - UCOL_REORDER_CODE_FIRST)];
958 coll, reorderCodes, USCRIPT_CODE_LIMIT + (UCOL_REORDER_CODE_LIMIT - UCOL_REORDER_CODE_FIRST), &intStatus);
960 struct SResource *reorderCodeRes = intvector_open(state->bundle, "%%ReorderCodes", NULL, status);
962 intvector_add(reorderCodeRes, reorderCodes[reorderCodeIndex], status);
    [all...]

Completed in 216 milliseconds