Home
last modified time | relevance | path

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

/third_party/flatbuffers/docs/source/
DGoApi_generated.txt106 func (b *Builder) PrependUint16(x uint16)
107 PrependUint16 prepends a uint16 to the Builder buffer. Aligns and checks
/third_party/flatbuffers/lobster/
Dflatbuffers.lobster207 def PrependUint16(x):
267 def PrependUint16Slot(o, x, d): PrependSlot(o, x, d): PrependUint16(_)
280 def PrependUint16Slot(o, x): PrependSlot(o, x): PrependUint16(_)
/third_party/flatbuffers/go/
Dbuilder.go454 b.PrependUint16(x)
672 func (b *Builder) PrependUint16(x uint16) { func
/third_party/flatbuffers/tests/
Dgo_test.go686 b.PrependUint16(0xFEEE)
741 b.PrependUint16(1)
751 b.PrependUint16(0xABCD)
753 b.PrependUint16(0xDCBA)
Dpy_test.py833 b.PrependUint16(0xFEEE)
881 b.PrependUint16(1)
890 b.PrependUint16(0xABCD)
892 b.PrependUint16(0xDCBA)
/third_party/flatbuffers/lua/flatbuffers/
Dbuilder.lua367 function mt:PrependUint16(x) self:Prepend(Uint16, x) end function
/third_party/flatbuffers/python/flatbuffers/
Dbuilder.py643 def PrependUint16(self, x): member in Builder