Searched defs:returnCapacity (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_res.cpp1049 static int ucol_getLeadBytesForReorderCode(UCollator *coll, int reorderCode, uint16_t* returnLeadBytes, int returnCapacity) { argument
1060 if (returnCapacity >= 1) {
1068 leadByteCount = leadByteCount > returnCapacity ? returnCapacity : leadByteCount;
1076 static int ucol_getReorderCodesForLeadByte(UCollator *coll, int leadByte, int16_t* returnReorderCodes, int returnCapacity) { argument
1085 if (returnCapacity >= 1) {
1093 reorderCodeCount = reorderCodeCount > returnCapacity ? returnCapacity : reorderCodeCount;
/external/icu4c/i18n/
H A Ducol_res.cpp1096 ucol_getLeadBytesForReorderCode(const UCollator *uca, int reorderCode, uint16_t* returnLeadBytes, int returnCapacity) { argument
1106 if (returnCapacity >= 1) {
1114 leadByteCount = leadByteCount > returnCapacity ? returnCapacity : leadByteCount;
1134 ucol_getReorderCodesForLeadByte(const UCollator *uca, int leadByte, int16_t* returnReorderCodes, int returnCapacity) { argument
1144 if (returnCapacity >= 1) {
1152 uint16_t reorderCodeCount = *reorderCodeData > returnCapacity ? returnCapacity : *reorderCodeData;

Completed in 55 milliseconds