Home
last modified time | relevance | path

Searched defs:getUShort (Results 1 – 6 of 6) sorted by relevance

/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DByteArray.kt29 internal expect inline fun ByteArray.getUShort(index: Int): UShort in getString() method
56 public inline fun getUShort(ary: ByteArray, index: Int): UShort = getShort(ary, index).toUShort() in getString() method
DBuffers.kt68 public fun getUShort(index: Int): UShort in findFirst() method
342 override fun getUShort(index: Int): UShort = buffer.getUShort(index) in getBoolean() method in com.google.flatbuffers.kotlin.ArrayReadBuffer
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jsMain/kotlin/com/google/flatbuffers/kotlin/
DByteArray.kt25 public actual inline fun ByteArray.getUShort(index: Int): UShort = ByteArrayOps.getUShort(this, ind… method
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/nativeMain/kotlin/com/google/flatbuffers/kotlin/
DByteArray.kt25 public actual inline fun ByteArray.getUShort(index: Int): UShort = getUShortAt(index) method
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/
DByteArray.kt26 public actual inline fun ByteArray.getUShort(index: Int): UShort = ByteArrayOps.getUShort(this, ind… method
/third_party/flatbuffers/php/
DByteBuffer.php386 public function getUShort($index) function in Google\\FlatBuffers\\ByteBuffer