Searched refs:inLimit (Results 1 – 2 of 2) sorted by relevance
1192 final int inLimit = in.length(); in encodeUtf8() local1193 if (inLimit > length || out.length - length < offset) { in encodeUtf8()1196 "Failed writing " + in.charAt(inLimit - 1) + " at index " + (offset + length)); in encodeUtf8()1202 for (char c; inIx < inLimit && (c = in.charAt(inIx)) < 0x80; ++inIx) { in encodeUtf8()1205 if (inIx == inLimit) { in encodeUtf8()1210 for (char c; inIx < inLimit; ++inIx) { in encodeUtf8()1226 if (inIx + 1 == inLimit || !isSurrogatePair(c, (low = in.charAt(++inIx)))) { in encodeUtf8()1227 throw new UnpairedSurrogateException((inIx - 1), inLimit); in encodeUtf8()1236 && (inIx + 1 == inLimit || !isSurrogatePair(c, in.charAt(inIx + 1)))) { in encodeUtf8()1238 throw new UnpairedSurrogateException(inIx, inLimit); in encodeUtf8()[all …]
118352 Ljava/util/Properties$LineReader;->inLimit:I