• Home
  • Raw
  • Download

Lines Matching refs:reorderCodes

572     int32_t* reorderCodes;  in ucol_safeClone()  local
595 if (coll->reorderCodes) { in ucol_safeClone()
640 reorderCodes = (int32_t*)((uint8_t*)defaultReorderCodes + defaultReorderCodesSize); in ucol_safeClone()
641 leadBytePermutationTable = (uint8_t*)reorderCodes + reorderCodesSize; in ucol_safeClone()
684 if (coll->reorderCodes) { in ucol_safeClone()
685 localCollator->reorderCodes = in ucol_safeClone()
686 …(int32_t*)uprv_memcpy(reorderCodes, coll->reorderCodes, coll->reorderCodesLength * sizeof(int32_t)… in ucol_safeClone()
746 if(coll->reorderCodes != NULL && coll->freeReorderCodesOnClose == TRUE) { in ucol_close()
747 uprv_free(coll->reorderCodes); in ucol_close()
945 result->reorderCodes = NULL; in ucol_initCollator()
6794 dest[i] = coll->reorderCodes[i]; in ucol_getReorderCodes()
6801 const int32_t* reorderCodes, in ucol_setReorderCodes() argument
6808 if (reorderCodesLength < 0 || (reorderCodesLength > 0 && reorderCodes == NULL)) { in ucol_setReorderCodes()
6814 ((Collator*)coll->delegate)->setReorderCodes(reorderCodes, reorderCodesLength, *status); in ucol_setReorderCodes()
6818 if (coll->reorderCodes != NULL && coll->freeReorderCodesOnClose == TRUE) { in ucol_setReorderCodes()
6819 uprv_free(coll->reorderCodes); in ucol_setReorderCodes()
6821 coll->reorderCodes = NULL; in ucol_setReorderCodes()
6830 coll->reorderCodes = (int32_t*) uprv_malloc(reorderCodesLength * sizeof(int32_t)); in ucol_setReorderCodes()
6831 if (coll->reorderCodes == NULL) { in ucol_setReorderCodes()
6837 coll->reorderCodes[i] = reorderCodes[i]; in ucol_setReorderCodes()