Home
last modified time | relevance | path

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

/external/flatbuffers/python/flatbuffers/reflection/
DField.py167 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)
DType.py87 def TypeAddFixedLength(builder, fixedLength): builder.PrependUint16Slot(3, fixedLength, 0)
/external/flatbuffers/tests/
Doptional_scalars_generated.lobster122 b_.PrependUint16Slot(9, just_u16, 0)
125 b_.PrependUint16Slot(10, maybe_u16)
128 b_.PrependUint16Slot(11, default_u16, 42)
Dmonster_test_generated.lobster239 b_.PrependUint16Slot(2, count, 0)
773 b_.PrependUint16Slot(3, u16, 0)
Dgo_test.go586 builder.PrependUint16Slot(int(f), uint16Val, 0)
1759 b.PrependUint16Slot(3, 3, 0)
Dmonster_test_generated.py659 def StatAddCount(builder, count): builder.PrependUint16Slot(2, count, 0)
2319 def TypeAliasesAddU16(builder, u16): builder.PrependUint16Slot(3, u16, 0)
Dpy_test.py807 builder.PrependUint16Slot(int(j), self.uint16Val, 0)
/external/flatbuffers/tests/MyGame/Example/
DStat.lua64 builder:PrependUint16Slot(2, count, 0)
DStat.go107 builder.PrependUint16Slot(2, count, 0)
DStat.py61 def StatAddCount(builder, count): builder.PrependUint16Slot(2, count, 0)
DTypeAliases.lua163 builder:PrependUint16Slot(3, u16, 0)
DTypeAliases.go302 builder.PrependUint16Slot(3, u16, 0)
DTypeAliases.py167 def TypeAliasesAddU16(builder, u16): builder.PrependUint16Slot(3, u16, 0)
/external/flatbuffers/tests/optional_scalars/
DScalarStuff.py313 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)
DScalarStuff.go665 builder.PrependUint16Slot(9, justU16, 0)
672 builder.PrependUint16Slot(11, defaultU16, 42)
/external/flatbuffers/lobster/
Dflatbuffers.lobster272 def PrependUint16Slot(o, x, d): PrependSlot(o, x, d): PrependUint16(_)
285 def PrependUint16Slot(o, x): PrependSlot(o, x): PrependUint16(_)
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua338 function mt:PrependUint16Slot(...) self:PrependSlot(Uint16, ...) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py595 def PrependUint16Slot(self, *args): self.PrependSlot(N.Uint16Flags, *args) member in Builder
/external/flatbuffers/go/
Dbuilder.go452 func (b *Builder) PrependUint16Slot(o int, x, d uint16) { func