Home
last modified time | relevance | path

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

/tools/metalava/src/main/java/com/android/tools/metalava/
DTerminal.kt45 if (sb.last().isDigit()) in terminalAttributes()
51 if (sb.last().isDigit()) in terminalAttributes()
56 if (sb.last().isDigit()) in terminalAttributes()
61 if (sb.last().isDigit()) in terminalAttributes()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/
DBufferReader.kt24 inline fun Byte.isDigit() = this >= '0'.toByte() && this <= '9'.toByte() in isDigit() method
31 inline fun isDigit() = buffer[index].isDigit() in isDigit() method in trebuchet.util.BufferReaderState
188 skipUntil { it == '.'.toByte() || isDigit() } in readDouble()