Home
last modified time | relevance | path

Searched refs:reorderCodesLength (Results 1 – 15 of 15) sorted by relevance

/external/icu/icu4c/source/i18n/
Dcollationsettings.cpp36 reorderCodes(NULL), reorderCodesLength(0), reorderCodesCapacity(0), in CollationSettings()
55 if(reorderCodesLength != other.reorderCodesLength) { return FALSE; } in operator ==()
56 for(int32_t i = 0; i < reorderCodesLength; ++i) { in operator ==()
66 h ^= reorderCodesLength; in hashCode()
67 for(int32_t i = 0; i < reorderCodesLength; ++i) { in hashCode()
81 reorderCodesLength = 0; in resetReordering()
102 reorderCodesLength = length; in aliasReordering()
219 reorderCodesLength = codesLength; in setReorderArrays()
238 reorderCodesLength = other.reorderCodesLength; in copyReorderingFrom()
240 setReorderArrays(other.reorderCodes, other.reorderCodesLength, in copyReorderingFrom()
Dcollationdatareader.cpp107 int32_t reorderCodesLength = 0; in read() local
121 reorderCodesLength = length / 4; in read()
127 while(reorderRangesLength < reorderCodesLength && in read()
128 (reorderCodes[reorderCodesLength - reorderRangesLength - 1] & 0xffff0000) != 0) { in read()
131 U_ASSERT(reorderRangesLength < reorderCodesLength); in read()
133 reorderCodesLength -= reorderRangesLength; in read()
134 reorderRanges = reinterpret_cast<const uint32_t *>(reorderCodes + reorderCodesLength); in read()
146 if(reorderCodesLength == 0) { in read()
421 reorderCodesLength == ts.reorderCodesLength && in read()
422 (reorderCodesLength == 0 || in read()
[all …]
Dcollationdatawriter.cpp131 U_ASSERT(settings.reorderCodesLength == 0); in write()
137 if(settings.reorderCodesLength == 0) { in write()
164 int32_t reorderCodesLength = settings.reorderCodesLength; in write() local
169 data.makeReorderRanges(reorderCodes, reorderCodesLength, codesAndRanges, errorCode); in write()
171 for(int32_t i = 0; i < reorderCodesLength; ++i) { in write()
176 reorderCodesLength = codesAndRanges.size(); in write()
193 int32_t sum = headerSize + (indexesLength + reorderCodesLength) * 4; in write()
233 totalSize += reorderCodesLength * 4; in write()
Dcollationsettings.h112 reorderCodes(NULL), reorderCodesLength(0), reorderCodesCapacity(0), in CollationSettings()
251 int32_t reorderCodesLength; member
Dcollationtailoring.cpp43 U_ASSERT(baseSettings->reorderCodesLength == 0); in CollationTailoring()
Ducol.cpp387 int32_t reorderCodesLength, in ucol_setReorderCodes() argument
393 Collator::fromUCollator(coll)->setReorderCodes(reorderCodes, reorderCodesLength, *status); in ucol_setReorderCodes()
Drulebasedcollator.cpp645 int32_t length = settings->reorderCodesLength; in getReorderCodes()
666 if(length == settings->reorderCodesLength && in setReorderCodes()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationDataReader.java149 int reorderCodesLength; in read() local
159 reorderCodesLength = length / 4; in read()
160 reorderCodes = ICUBinary.getInts(inBytes, reorderCodesLength, length & 3); in read()
167 while(reorderRangesLength < reorderCodesLength && in read()
168 … (reorderCodes[reorderCodesLength - reorderRangesLength - 1] & 0xffff0000) != 0) { in read()
171 assert(reorderRangesLength < reorderCodesLength); in read() argument
172 reorderCodesLength -= reorderRangesLength; in read()
175 reorderCodesLength = 0; in read()
187 if(reorderCodesLength == 0) { in read()
484 if(reorderCodesLength != 0) { in read()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationDataReader.java150 int reorderCodesLength; in read() local
160 reorderCodesLength = length / 4; in read()
161 reorderCodes = ICUBinary.getInts(inBytes, reorderCodesLength, length & 3); in read()
168 while(reorderRangesLength < reorderCodesLength && in read()
169 … (reorderCodes[reorderCodesLength - reorderRangesLength - 1] & 0xffff0000) != 0) { in read()
172 assert(reorderRangesLength < reorderCodesLength); in read() argument
173 reorderCodesLength -= reorderRangesLength; in read()
176 reorderCodesLength = 0; in read()
188 if(reorderCodesLength == 0) { in read()
485 if(reorderCodesLength != 0) { in read()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Dtblcoll.h681 int32_t reorderCodesLength,
Dcoll.h646 int32_t reorderCodesLength,
Ducol.h757 int32_t reorderCodesLength,
/external/icu/libandroidicu/include/unicode/
Ducol.h757 int32_t reorderCodesLength,
/external/icu/icu4c/source/tools/genrb/
Dparse.cpp1019 *t->data, t->settings->reorderCodes, t->settings->reorderCodesLength); in addCollation()
/external/icu/libandroidicu/static_shim/
Dshim.cpp1255 …es_android(UCollator * coll, const int32_t * reorderCodes, int32_t reorderCodesLength, UErrorCode … in ucol_setReorderCodes_android() argument
1256 ucol_setReorderCodes(coll, reorderCodes, reorderCodesLength, pErrorCode); in ucol_setReorderCodes_android()