Lines Matching refs:reorderCodesLength
596 reorderCodesSize = coll->reorderCodesLength * sizeof(int32_t);
686 (int32_t*)uprv_memcpy(reorderCodes, coll->reorderCodes, coll->reorderCodesLength * sizeof(int32_t));
687 localCollator->reorderCodesLength = coll->reorderCodesLength;
946 result->reorderCodesLength = 0;
6785 printf("coll->reorderCodesLength = %d\n", coll->reorderCodesLength);
6789 if (coll->reorderCodesLength > destCapacity) {
6791 return coll->reorderCodesLength;
6793 for (int32_t i = 0; i < coll->reorderCodesLength; i++) {
6796 return coll->reorderCodesLength;
6802 int32_t reorderCodesLength,
6808 if (reorderCodesLength < 0 || (reorderCodesLength > 0 && reorderCodes == NULL)) {
6814 ((Collator*)coll->delegate)->setReorderCodes(reorderCodes, reorderCodesLength, *status);
6822 coll->reorderCodesLength = 0;
6823 if (reorderCodesLength == 0) {
6830 coll->reorderCodes = (int32_t*) uprv_malloc(reorderCodesLength * sizeof(int32_t));
6836 for (int32_t i = 0; i < reorderCodesLength; i++) {
6839 coll->reorderCodesLength = reorderCodesLength;