Home | History | Annotate | Download | only in i18n

Lines Matching defs:remainingChars

2114                     UChar *remainingChars = (UChar *)uprv_malloc(sizeof(UChar)*(remaining16Length+1));
2115 if (remainingChars == NULL) {
2120 utext_extract(input, nextOutputStringStart, fActiveLimit, remainingChars, remaining16Length+1, &status);
2122 utext_replace(dest[i], 0, utext_nativeLength(dest[i]), remainingChars, remaining16Length, &status);
2125 utext_openUChars(&remainingText, remainingChars, remaining16Length, &status);
2130 uprv_free(remainingChars);
2153 UChar *remainingChars = (UChar *)uprv_malloc(sizeof(UChar)*(remaining16Length+1));
2154 if (remainingChars == NULL) {
2158 utext_extract(input, nextOutputStringStart, fMatchStart, remainingChars, remaining16Length+1, &status);
2160 utext_replace(dest[i], 0, utext_nativeLength(dest[i]), remainingChars, remaining16Length, &status);
2163 utext_openUChars(&remainingText, remainingChars, remaining16Length, &status);
2168 uprv_free(remainingChars);
2216 UChar *remainingChars = (UChar *)uprv_malloc(sizeof(UChar)*(remaining16Length+1));
2217 if (remainingChars == NULL) {
2222 utext_extract(input, nextOutputStringStart, fActiveLimit, remainingChars, remaining16Length+1, &status);
2224 utext_replace(dest[i], 0, utext_nativeLength(dest[i]), remainingChars, remaining16Length, &status);
2227 utext_openUChars(&remainingText, remainingChars, remaining16Length, &status);
2232 uprv_free(remainingChars);