Home | History | Annotate | Download | only in i18n

Lines Matching defs:resultLength

598                            int32_t             resultLength,
601 return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status);
769 virtual const char* next(int32_t* resultLength, UErrorCode& /*status*/) {
773 if(resultLength != NULL) {
774 *resultLength = (int32_t)uprv_strlen(result);
777 if(resultLength != NULL) {
778 *resultLength = 0;
786 int32_t resultLength = 0;
787 const char *s = next(&resultLength, status);
788 return setChars(s, resultLength, status);