Searched refs:reorderCodesLength (Results 1 – 13 of 13) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | collationsettings.cpp | 34 reorderCodes(NULL), reorderCodesLength(0), reorderCodesCapacity(0), in CollationSettings() 53 if(reorderCodesLength != other.reorderCodesLength) { return FALSE; } in operator ==() 54 for(int32_t i = 0; i < reorderCodesLength; ++i) { in operator ==() 64 h ^= reorderCodesLength; in hashCode() 65 for(int32_t i = 0; i < reorderCodesLength; ++i) { in hashCode() 79 reorderCodesLength = 0; in resetReordering() 100 reorderCodesLength = length; in aliasReordering() 217 reorderCodesLength = codesLength; in setReorderArrays() 236 reorderCodesLength = other.reorderCodesLength; in copyReorderingFrom() 238 setReorderArrays(other.reorderCodes, other.reorderCodesLength, in copyReorderingFrom()
|
D | collationdatareader.cpp | 105 int32_t reorderCodesLength = 0; in read() local 119 reorderCodesLength = length / 4; in read() 125 while(reorderRangesLength < reorderCodesLength && in read() 126 (reorderCodes[reorderCodesLength - reorderRangesLength - 1] & 0xffff0000) != 0) { in read() 129 U_ASSERT(reorderRangesLength < reorderCodesLength); in read() 131 reorderCodesLength -= reorderRangesLength; in read() 132 reorderRanges = reinterpret_cast<const uint32_t *>(reorderCodes + reorderCodesLength); in read() 144 if(reorderCodesLength == 0) { in read() 419 reorderCodesLength == ts.reorderCodesLength && in read() 420 uprv_memcmp(reorderCodes, ts.reorderCodes, reorderCodesLength * 4) == 0 && in read() [all …]
|
D | collationdatawriter.cpp | 129 U_ASSERT(settings.reorderCodesLength == 0); in write() 135 if(settings.reorderCodesLength == 0) { in write() 162 int32_t reorderCodesLength = settings.reorderCodesLength; in write() local 167 data.makeReorderRanges(reorderCodes, reorderCodesLength, codesAndRanges, errorCode); in write() 169 for(int32_t i = 0; i < reorderCodesLength; ++i) { in write() 174 reorderCodesLength = codesAndRanges.size(); in write() 191 int32_t sum = headerSize + (indexesLength + reorderCodesLength) * 4; in write() 231 totalSize += reorderCodesLength * 4; in write()
|
D | collationsettings.h | 110 reorderCodes(NULL), reorderCodesLength(0), reorderCodesCapacity(0), in CollationSettings() 249 int32_t reorderCodesLength; member
|
D | collationtailoring.cpp | 41 U_ASSERT(baseSettings->reorderCodesLength == 0); in CollationTailoring()
|
D | ucol.cpp | 384 int32_t reorderCodesLength, in ucol_setReorderCodes() argument 390 Collator::fromUCollator(coll)->setReorderCodes(reorderCodes, reorderCodesLength, *status); in ucol_setReorderCodes()
|
D | rulebasedcollator.cpp | 643 int32_t length = settings->reorderCodesLength; in getReorderCodes() 664 if(length == settings->reorderCodesLength && in setReorderCodes()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationDataReader.java | 147 int reorderCodesLength; in read() local 157 reorderCodesLength = length / 4; in read() 158 reorderCodes = ICUBinary.getInts(inBytes, reorderCodesLength, length & 3); in read() 165 while(reorderRangesLength < reorderCodesLength && in read() 166 … (reorderCodes[reorderCodesLength - reorderRangesLength - 1] & 0xffff0000) != 0) { in read() 169 assert(reorderRangesLength < reorderCodesLength); in read() argument 170 reorderCodesLength -= reorderRangesLength; in read() 173 reorderCodesLength = 0; in read() 185 if(reorderCodesLength == 0) { in read() 482 if(reorderCodesLength != 0) { in read() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationDataReader.java | 148 int reorderCodesLength; in read() local 158 reorderCodesLength = length / 4; in read() 159 reorderCodes = ICUBinary.getInts(inBytes, reorderCodesLength, length & 3); in read() 166 while(reorderRangesLength < reorderCodesLength && in read() 167 … (reorderCodes[reorderCodesLength - reorderRangesLength - 1] & 0xffff0000) != 0) { in read() 170 assert(reorderRangesLength < reorderCodesLength); in read() argument 171 reorderCodesLength -= reorderRangesLength; in read() 174 reorderCodesLength = 0; in read() 186 if(reorderCodesLength == 0) { in read() 483 if(reorderCodesLength != 0) { in read() [all …]
|
/external/icu/icu4c/source/i18n/unicode/ |
D | tblcoll.h | 679 int32_t reorderCodesLength,
|
D | coll.h | 641 int32_t reorderCodesLength,
|
D | ucol.h | 746 int32_t reorderCodesLength,
|
/external/icu/icu4c/source/tools/genrb/ |
D | parse.cpp | 1017 *t->data, t->settings->reorderCodes, t->settings->reorderCodesLength); in addCollation()
|