Searched refs:maxLength (Results 1 – 5 of 5) sorted by relevance
146 int maxLength = 0; in testMergedOutputSizeIsBounded() local151 maxLength = Math.max(maxLength, merged.getLength()); in testMergedOutputSizeIsBounded()155 assertTrue(maxLength + " < " + maxExpectedLength, maxLength < maxExpectedLength); in testMergedOutputSizeIsBounded()
319 int maxLength = size - cursor; in read() local320 if (length > maxLength) { in read()321 length = maxLength; in read()
316 public String toQuoted(int maxLength) { in toQuoted() argument321 if (length <= (maxLength - 2)) { in toQuoted()324 string = string.substring(0, maxLength - 5); in toQuoted()