Home
last modified time | relevance | path

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

/external/flatbuffers/tests/
Dmonster_test_generated.lobster356 b_.PrependUint8Slot(7, test_type, 0)
512 b_.PrependUint8Slot(43, any_unique_type, 0)
516 b_.PrependUint8Slot(45, any_ambiguous_type, 0)
567 b_.PrependUint8Slot(1, u8, 0)
Dgo_test.go466 builder.PrependUint8Slot(int(f), uint8Val, 0)
1536 b.PrependUint8Slot(2, 2, 0)
Dpy_test.py257 builder.PrependUint8Slot(int(j), self.uint8Val, 0)
/external/flatbuffers/samples/lua/MyGame/Sample/
DMonster.lua118 function Monster.AddEquippedType(builder, equippedType) builder:PrependUint8Slot(8, equippedType, 0…
/external/flatbuffers/tests/MyGame/Example/
DMonster.lua533 function Monster.AddTestType(builder, testType) builder:PrependUint8Slot(7, testType, 0) end
585 function Monster.AddAnyUniqueType(builder, anyUniqueType) builder:PrependUint8Slot(43, anyUniqueTyp…
587 function Monster.AddAnyAmbiguousType(builder, anyAmbiguousType) builder:PrependUint8Slot(45, anyAmb…
DTypeAliases.lua126 function TypeAliases.AddU8(builder, u8) builder:PrependUint8Slot(1, u8, 0) end
DTypeAliases.py137 def TypeAliasesAddU8(builder, u8): builder.PrependUint8Slot(1, u8, 0)
DMonster.py627 def MonsterAddTestType(builder, testType): builder.PrependUint8Slot(7, testType, 0)
679 def MonsterAddAnyUniqueType(builder, anyUniqueType): builder.PrependUint8Slot(43, anyUniqueType, 0)
681 def MonsterAddAnyAmbiguousType(builder, anyAmbiguousType): builder.PrependUint8Slot(45, anyAmbiguou…
/external/flatbuffers/samples/
Dmonster_generated.lobster93 b_.PrependUint8Slot(8, equipped_type, 0)
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua321 function mt:PrependUint8Slot(...) self:PrependSlot(Uint8, ...) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py563 def PrependUint8Slot(self, *args): self.PrependSlot(N.Uint8Flags, *args) member in Builder
/external/flatbuffers/lobster/
Dflatbuffers.lobster255 def PrependUint8Slot(o, x, d): PrependSlot(o, x, d): PrependUint8(_)
/external/flatbuffers/go/
Dbuilder.go420 func (b *Builder) PrependUint8Slot(o int, x, d uint8) { func