Searched refs:PrependUint16Slot (Results 1 – 13 of 13) sorted by relevance
/external/flatbuffers/tests/MyGame/Example/ |
D | Stat.lua | 47 function Stat.AddCount(builder, count) builder:PrependUint16Slot(2, count, 0) end
|
D | Stat.py | 45 def StatAddCount(builder, count): builder.PrependUint16Slot(2, count, 0)
|
D | Stat.go | 71 builder.PrependUint16Slot(2, count, 0)
|
D | TypeAliases.lua | 128 function TypeAliases.AddU16(builder, u16) builder:PrependUint16Slot(3, u16, 0) end
|
D | TypeAliases.py | 139 def TypeAliasesAddU16(builder, u16): builder.PrependUint16Slot(3, u16, 0)
|
D | TypeAliases.go | 196 builder.PrependUint16Slot(3, u16, 0)
|
/external/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 322 function mt:PrependUint16Slot(...) self:PrependSlot(Uint16, ...) end function
|
/external/flatbuffers/tests/ |
D | monster_test_generated.lobster | 165 b_.PrependUint16Slot(2, count, 0) 571 b_.PrependUint16Slot(3, u16, 0)
|
D | go_test.go | 470 builder.PrependUint16Slot(int(f), uint16Val, 0) 1537 b.PrependUint16Slot(3, 3, 0)
|
D | py_test.py | 261 builder.PrependUint16Slot(int(j), self.uint16Val, 0)
|
/external/flatbuffers/python/flatbuffers/ |
D | builder.py | 565 def PrependUint16Slot(self, *args): self.PrependSlot(N.Uint16Flags, *args) member in Builder
|
/external/flatbuffers/lobster/ |
D | flatbuffers.lobster | 256 def PrependUint16Slot(o, x, d): PrependSlot(o, x, d): PrependUint16(_)
|
/external/flatbuffers/go/ |
D | builder.go | 430 func (b *Builder) PrependUint16Slot(o int, x, d uint16) { func
|