Home
last modified time | relevance | path

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

/tools/trebuchet/core/common/src/main/kotlin/trebuchet/importers/ftrace/
DFtraceLine.kt129 skipUntil { it == '-'.toByte() } in parseLine()
130 skipUntil { it == '('.toByte() || it == '['.toByte() } in parseLine()
140 skipUntil { it == ')'.toByte() } in parseLine()
150 val func = sliceTo(ftraceLine.function) { skipUntil { it == ':'.toByte() } } in parseLine()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/importers/ftrace/events/
DTraceMarkerEvent.kt75 val name = stringTo { skipUntil { it == '|'.toByte() } } in readCounter()
86 val name = stringTo { skipUntil { it == '|'.toByte() } } in BufferReader()
97 val name = stringTo { skipUntil { it == '|'.toByte() } } in BufferReader()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/
DBufferReader.kt49 inline fun skipUntil(cb: (Byte) -> Boolean) { in isDigit() method in trebuchet.util.BufferReaderState
188 skipUntil { it == '.'.toByte() || isDigit() } in readDouble()