Home
last modified time | relevance | path

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

/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/
DBufferReader.kt26 open class BufferReaderState(var buffer: ByteArray, var index: Int, var endIndexExclusive: Int) { in isDigit() variable in trebuchet.util.BufferReaderState
42 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 - index
150 this.endIndexExclusive = slice.endIndex in reset()
169 while (index < endIndexExclusive) { in readLong()
[all …]