Home | History | Annotate | Download | only in i18n

Lines Matching defs:resultLength

571                            int32_t             resultLength,
574 return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status);
741 virtual const char* next(int32_t* resultLength, UErrorCode& /*status*/) {
745 if(resultLength != NULL) {
746 *resultLength = (int32_t)uprv_strlen(result);
749 if(resultLength != NULL) {
750 *resultLength = 0;
758 int32_t resultLength = 0;
759 const char *s = next(&resultLength, status);
760 return setChars(s, resultLength, status);