Home
last modified time | relevance | path

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

/external/flatbuffers/tests/
Doptional_scalars_generated.lobster104 b_.PrependUint8Slot(3, just_u8, 0)
107 b_.PrependUint8Slot(4, maybe_u8)
110 b_.PrependUint8Slot(5, default_u8, 42)
Dmonster_test_generated.lobster129 b_.PrependUint8Slot(0, color, 2)
452 b_.PrependUint8Slot(6, color, 8)
455 b_.PrependUint8Slot(7, test_type, 0)
563 b_.PrependUint8Slot(43, any_unique_type, 0)
569 b_.PrependUint8Slot(45, any_ambiguous_type, 0)
767 b_.PrependUint8Slot(1, u8, 0)
Dmonster_test_generated.py286 def TestSimpleTableWithEnumAddColor(builder, color): builder.PrependUint8Slot(0, color, 2)
1575 def MonsterAddColor(builder, color): builder.PrependUint8Slot(6, color, 8)
1576 def MonsterAddTestType(builder, testType): builder.PrependUint8Slot(7, testType, 0)
1633 def MonsterAddAnyUniqueType(builder, anyUniqueType): builder.PrependUint8Slot(43, anyUniqueType, 0)
1635 def MonsterAddAnyAmbiguousType(builder, anyAmbiguousType): builder.PrependUint8Slot(45, anyAmbiguou…
2317 def TypeAliasesAddU8(builder, u8): builder.PrependUint8Slot(1, u8, 0)
Dgo_test.go582 builder.PrependUint8Slot(int(f), uint8Val, 0)
1758 b.PrependUint8Slot(2, 2, 0)
Dpy_test.py803 builder.PrependUint8Slot(int(j), self.uint8Val, 0)
/external/flatbuffers/tests/MyGame/Example/
DTestSimpleTableWithEnum.lua41 builder:PrependUint8Slot(0, color, 2)
DTestSimpleTableWithEnum.py41 def TestSimpleTableWithEnumAddColor(builder, color): builder.PrependUint8Slot(0, color, 2)
DMonster.lua735 builder:PrependUint8Slot(6, color, 8)
739 builder:PrependUint8Slot(7, testType, 0)
947 builder:PrependUint8Slot(43, anyUniqueType, 0)
955 builder:PrependUint8Slot(45, anyAmbiguousType, 0)
DTypeAliases.lua155 builder:PrependUint8Slot(1, u8, 0)
DTypeAliases.py161 def TypeAliasesAddU8(builder, u8): builder.PrependUint8Slot(1, u8, 0)
DMonster.py840 def MonsterAddColor(builder, color): builder.PrependUint8Slot(6, color, 8)
843 def MonsterAddTestType(builder, testType): builder.PrependUint8Slot(7, testType, 0)
1006 def MonsterAddAnyUniqueType(builder, anyUniqueType): builder.PrependUint8Slot(43, anyUniqueType, 0)
1012 def MonsterAddAnyAmbiguousType(builder, anyAmbiguousType): builder.PrependUint8Slot(45, anyAmbiguou…
/external/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.lua70 function TableInFirstNS.AddFooUnionType(builder, fooUnionType) builder:PrependUint8Slot(2, fooUnion…
DTableInFirstNS.py80 def TableInFirstNSAddFooUnionType(builder, fooUnionType): builder.PrependUint8Slot(2, fooUnionType,…
/external/flatbuffers/tests/namespace_test/
Dnamespace_test2_generated.lobster44 b_.PrependUint8Slot(2, foo_union_type, 0)
/external/flatbuffers/samples/lua/MyGame/Sample/
DMonster.lua118 function Monster.AddEquippedType(builder, equippedType) builder:PrependUint8Slot(8, equippedType, 0…
/external/flatbuffers/tests/optional_scalars/
DScalarStuff.py295 def ScalarStuffAddJustU8(builder, justU8): builder.PrependUint8Slot(3, justU8, 0)
298 def ScalarStuffAddMaybeU8(builder, maybeU8): builder.PrependUint8Slot(4, maybeU8, None)
301 def ScalarStuffAddDefaultU8(builder, defaultU8): builder.PrependUint8Slot(5, defaultU8, 42)
/external/flatbuffers/samples/
Dmonster_generated.lobster94 b_.PrependUint8Slot(8, equipped_type, 0)
/external/flatbuffers/lobster/
Dflatbuffers.lobster271 def PrependUint8Slot(o, x, d): PrependSlot(o, x, d): PrependUint8(_)
284 def PrependUint8Slot(o, x): PrependSlot(o, x): PrependUint8(_)
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua337 function mt:PrependUint8Slot(...) self:PrependSlot(Uint8, ...) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py593 def PrependUint8Slot(self, *args): self.PrependSlot(N.Uint8Flags, *args) member in Builder
/external/flatbuffers/go/
Dbuilder.go442 func (b *Builder) PrependUint8Slot(o int, x, d uint8) { func