/external/flatbuffers/python/flatbuffers/reflection/ |
D | Field.py | 167 def FieldAddId(builder, id): builder.PrependUint16Slot(2, id, 0) 170 def FieldAddOffset(builder, offset): builder.PrependUint16Slot(3, offset, 0) 203 def FieldAddPadding(builder, padding): builder.PrependUint16Slot(12, padding, 0)
|
D | Type.py | 87 def TypeAddFixedLength(builder, fixedLength): builder.PrependUint16Slot(3, fixedLength, 0)
|
/external/flatbuffers/tests/ |
D | optional_scalars_generated.lobster | 122 b_.PrependUint16Slot(9, just_u16, 0) 125 b_.PrependUint16Slot(10, maybe_u16) 128 b_.PrependUint16Slot(11, default_u16, 42)
|
D | monster_test_generated.lobster | 239 b_.PrependUint16Slot(2, count, 0) 773 b_.PrependUint16Slot(3, u16, 0)
|
D | go_test.go | 586 builder.PrependUint16Slot(int(f), uint16Val, 0) 1759 b.PrependUint16Slot(3, 3, 0)
|
D | monster_test_generated.py | 659 def StatAddCount(builder, count): builder.PrependUint16Slot(2, count, 0) 2319 def TypeAliasesAddU16(builder, u16): builder.PrependUint16Slot(3, u16, 0)
|
D | py_test.py | 807 builder.PrependUint16Slot(int(j), self.uint16Val, 0)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Stat.lua | 64 builder:PrependUint16Slot(2, count, 0)
|
D | Stat.go | 107 builder.PrependUint16Slot(2, count, 0)
|
D | Stat.py | 61 def StatAddCount(builder, count): builder.PrependUint16Slot(2, count, 0)
|
D | TypeAliases.lua | 163 builder:PrependUint16Slot(3, u16, 0)
|
D | TypeAliases.go | 302 builder.PrependUint16Slot(3, u16, 0)
|
D | TypeAliases.py | 167 def TypeAliasesAddU16(builder, u16): builder.PrependUint16Slot(3, u16, 0)
|
/external/flatbuffers/tests/optional_scalars/ |
D | ScalarStuff.py | 313 def ScalarStuffAddJustU16(builder, justU16): builder.PrependUint16Slot(9, justU16, 0) 316 def ScalarStuffAddMaybeU16(builder, maybeU16): builder.PrependUint16Slot(10, maybeU16, None) 319 def ScalarStuffAddDefaultU16(builder, defaultU16): builder.PrependUint16Slot(11, defaultU16, 42)
|
D | ScalarStuff.go | 665 builder.PrependUint16Slot(9, justU16, 0) 672 builder.PrependUint16Slot(11, defaultU16, 42)
|
/external/flatbuffers/lobster/ |
D | flatbuffers.lobster | 272 def PrependUint16Slot(o, x, d): PrependSlot(o, x, d): PrependUint16(_) 285 def PrependUint16Slot(o, x): PrependSlot(o, x): PrependUint16(_)
|
/external/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 338 function mt:PrependUint16Slot(...) self:PrependSlot(Uint16, ...) end function
|
/external/flatbuffers/python/flatbuffers/ |
D | builder.py | 595 def PrependUint16Slot(self, *args): self.PrependSlot(N.Uint16Flags, *args) member in Builder
|
/external/flatbuffers/go/ |
D | builder.go | 452 func (b *Builder) PrependUint16Slot(o int, x, d uint16) { func
|