Searched refs:endIndexExclusive (Results 1 – 1 of 1) sorted by relevance
26 open class BufferReaderState(var buffer: ByteArray, var index: Int, var endIndexExclusive: Int) { in isDigit() variable in trebuchet.util.BufferReaderState42 while (index < endIndexExclusive && buffer[index] == char) { index++ } in isDigit()50 while (index < endIndexExclusive && !cb(peek())) { index++ } in isDigit()53 inline fun end() { index = endIndexExclusive } in isDigit()56 val foundAt = search.find(buffer, index, endIndexExclusive) in isDigit()57 index = if (foundAt != -1) foundAt else endIndexExclusive in isDigit()118 tempPreview.endIndexExclusive = startIndex + matcher!!.end(group) in read()135 get() = endIndexExclusive - index150 this.endIndexExclusive = slice.endIndex in reset()169 while (index < endIndexExclusive) { in readLong()[all …]