Home
last modified time | relevance | path

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

/external/v8/src/js/
Dharmony-string-padding.js35 var remainingChars = (fillLength - fillString.length * repetitions) | 0;
45 if (remainingChars) {
46 filler += %_SubString(fillString, 0, remainingChars);
/external/r8/src/main/java/com/android/tools/r8/shaking/
DProguardConfigurationParser.java236 if (remainingChars() < 2) { in acceptArobaseInclude()
824 private int remainingChars() { in remainingChars() method in ProguardConfigurationParser.ProguardFileParser
835 if (remainingChars() < expected.length()) { in expectString()
846 if (remainingChars() < expected.length()) { in acceptString()
/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()