Searched defs:reorderCode (Results 1 - 6 of 6) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcollationdata.cpp157 int32_t reorderCode = reorder[i] - UCOL_REORDER_CODE_FIRST; local
158 if(0 <= reorderCode && reorderCode <= 31) {
159 specials |= (uint32_t)1 << reorderCode;
166 int32_t reorderCode = (int32_t)scripts[i + 2] - UCOL_REORDER_CODE_FIRST; local
167 if(reorderCode < 0) { break; } // Went beyond special reorder codes.
168 if((specials & ((uint32_t)1 << reorderCode)) == 0) {
H A Ducol.cpp394 ucol_getEquivalentReorderCodes(int32_t reorderCode, argument
398 return Collator::getEquivalentReorderCodes(reorderCode, dest, destCapacity, *pErrorCode);
H A Dcoll.cpp964 Collator::getEquivalentReorderCodes(int32_t reorderCode, argument
974 return baseData->getEquivalentScripts(reorderCode, dest, capacity, errorCode);
/external/chromium_org/third_party/icu/source/i18n/
H A Dtblcoll.cpp549 int32_t RuleBasedCollator::getEquivalentReorderCodes(int32_t reorderCode, argument
554 return ucol_getEquivalentReorderCodes(reorderCode, dest, destCapacity, &status);
H A Ducol_res.cpp1092 ucol_getLeadBytesForReorderCode(const UCollator *uca, int reorderCode, uint16_t* returnLeadBytes, int returnCapacity) { argument
1098 if (reorderCode == reorderCodeIndex[i*2]) {
1360 int reorderCode = 0; local
1363 while (reorderCode < 256 && newLeadByteUsed[reorderCode]) {
1364 reorderCode++;
1366 coll->leadBytePermutationTable[i] = reorderCode;
1368 newLeadByteUsed[reorderCode] = true;
H A Ducol.cpp6764 ucol_getEquivalentReorderCodes(int32_t reorderCode, argument
6794 leadBytesCount = ucol_getLeadBytesForReorderCode(uca, reorderCode, leadBytes, 256);

Completed in 512 milliseconds