Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Drematch.cpp2126 … UChar *remainingChars = (UChar *)uprv_malloc(sizeof(UChar)*(remaining16Length+1)); in split() local
2127 if (remainingChars == NULL) { in split()
2132 …utext_extract(input, nextOutputStringStart, fActiveLimit, remainingChars, remaining16Length+1, &st… in split()
2134 …utext_replace(dest[i], 0, utext_nativeLength(dest[i]), remainingChars, remaining16Length, &status); in split()
2137 … utext_openUChars(&remainingText, remainingChars, remaining16Length, &status); in split()
2142 uprv_free(remainingChars); in split()
2165 UChar *remainingChars = (UChar *)uprv_malloc(sizeof(UChar)*(remaining16Length+1)); in split() local
2166 if (remainingChars == NULL) { in split()
2170 …utext_extract(input, nextOutputStringStart, fMatchStart, remainingChars, remaining16Length+1, &sta… in split()
2172 …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/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DUTF8JsonGenerator.java1747 … _writeCustomEscape(byte[] outputBuffer, int outputPtr, SerializableString esc, int remainingChars) in _writeCustomEscape() argument
1753 … return _handleLongCustomEscape(outputBuffer, outputPtr, _outputEnd, raw, remainingChars); in _writeCustomEscape()
1761 byte[] raw, int remainingChars) in _handleLongCustomEscape() argument
1777 if ((outputPtr + 6 * remainingChars) > outputEnd) { in _handleLongCustomEscape()
/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()