Home | History | Annotate | Download | only in i18n

Lines Matching refs:resultLength

650                            int32_t             resultLength,
653 return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status);
825 virtual const char* next(int32_t* resultLength, UErrorCode& /*status*/) {
829 if(resultLength != NULL) {
830 *resultLength = (int32_t)uprv_strlen(result);
833 if(resultLength != NULL) {
834 *resultLength = 0;
842 int32_t resultLength = 0;
843 const char *s = next(&resultLength, status);
844 return setChars(s, resultLength, status);