Home
last modified time | relevance | path

Searched refs:remainingChars (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
Drematch.cpp2121 … UChar *remainingChars = (UChar *)uprv_malloc(sizeof(UChar)*(remaining16Length+1)); in split() local
2122 if (remainingChars == NULL) { in split()
2127 …utext_extract(input, nextOutputStringStart, fActiveLimit, remainingChars, remaining16Length+1, &st… in split()
2129 …utext_replace(dest[i], 0, utext_nativeLength(dest[i]), remainingChars, remaining16Length, &status); in split()
2132 … utext_openUChars(&remainingText, remainingChars, remaining16Length, &status); in split()
2137 uprv_free(remainingChars); in split()
2160 UChar *remainingChars = (UChar *)uprv_malloc(sizeof(UChar)*(remaining16Length+1)); in split() local
2161 if (remainingChars == NULL) { in split()
2165 …utext_extract(input, nextOutputStringStart, fMatchStart, remainingChars, remaining16Length+1, &sta… in split()
2167 …utext_replace(dest[i], 0, utext_nativeLength(dest[i]), remainingChars, remaining16Length, &status); in split()
[all …]
/external/jdiff/src/jdiff/
DComments.java250 int remainingChars = text.length() - i; in convertAtLinks()
254 if (c == '{' && remainingChars >= 5) { in convertAtLinks()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DToStream.java2437 final int remainingChars = (limit - start); in comment() local
2438 if (remainingChars > 0) in comment()
2439 writer.write(ch, start, remainingChars); in comment()