Home
last modified time | relevance | path

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

/external/flatbuffers/tests/MyGame/Example/
DStat.lua47 function Stat.AddCount(builder, count) builder:PrependUint16Slot(2, count, 0) end
DStat.py45 def StatAddCount(builder, count): builder.PrependUint16Slot(2, count, 0)
DStat.go71 builder.PrependUint16Slot(2, count, 0)
DTypeAliases.lua128 function TypeAliases.AddU16(builder, u16) builder:PrependUint16Slot(3, u16, 0) end
DTypeAliases.py139 def TypeAliasesAddU16(builder, u16): builder.PrependUint16Slot(3, u16, 0)
DTypeAliases.go196 builder.PrependUint16Slot(3, u16, 0)
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua322 function mt:PrependUint16Slot(...) self:PrependSlot(Uint16, ...) end function
/external/flatbuffers/tests/
Dmonster_test_generated.lobster165 b_.PrependUint16Slot(2, count, 0)
571 b_.PrependUint16Slot(3, u16, 0)
Dgo_test.go470 builder.PrependUint16Slot(int(f), uint16Val, 0)
1537 b.PrependUint16Slot(3, 3, 0)
Dpy_test.py261 builder.PrependUint16Slot(int(j), self.uint16Val, 0)
/external/flatbuffers/python/flatbuffers/
Dbuilder.py565 def PrependUint16Slot(self, *args): self.PrependSlot(N.Uint16Flags, *args) member in Builder
/external/flatbuffers/lobster/
Dflatbuffers.lobster256 def PrependUint16Slot(o, x, d): PrependSlot(o, x, d): PrependUint16(_)
/external/flatbuffers/go/
Dbuilder.go430 func (b *Builder) PrependUint16Slot(o int, x, d uint16) { func