/external/flatbuffers/tests/ |
D | optional_scalars_generated.lobster | 104 b_.PrependUint8Slot(3, just_u8, 0) 107 b_.PrependUint8Slot(4, maybe_u8) 110 b_.PrependUint8Slot(5, default_u8, 42)
|
D | monster_test_generated.lobster | 129 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)
|
D | monster_test_generated.py | 286 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)
|
D | go_test.go | 582 builder.PrependUint8Slot(int(f), uint8Val, 0) 1758 b.PrependUint8Slot(2, 2, 0)
|
D | py_test.py | 803 builder.PrependUint8Slot(int(j), self.uint8Val, 0)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | TestSimpleTableWithEnum.lua | 41 builder:PrependUint8Slot(0, color, 2)
|
D | TestSimpleTableWithEnum.py | 41 def TestSimpleTableWithEnumAddColor(builder, color): builder.PrependUint8Slot(0, color, 2)
|
D | Monster.lua | 735 builder:PrependUint8Slot(6, color, 8) 739 builder:PrependUint8Slot(7, testType, 0) 947 builder:PrependUint8Slot(43, anyUniqueType, 0) 955 builder:PrependUint8Slot(45, anyAmbiguousType, 0)
|
D | TypeAliases.lua | 155 builder:PrependUint8Slot(1, u8, 0)
|
D | TypeAliases.py | 161 def TypeAliasesAddU8(builder, u8): builder.PrependUint8Slot(1, u8, 0)
|
D | Monster.py | 840 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/ |
D | TableInFirstNS.lua | 70 function TableInFirstNS.AddFooUnionType(builder, fooUnionType) builder:PrependUint8Slot(2, fooUnion…
|
D | TableInFirstNS.py | 80 def TableInFirstNSAddFooUnionType(builder, fooUnionType): builder.PrependUint8Slot(2, fooUnionType,…
|
/external/flatbuffers/tests/namespace_test/ |
D | namespace_test2_generated.lobster | 44 b_.PrependUint8Slot(2, foo_union_type, 0)
|
/external/flatbuffers/samples/lua/MyGame/Sample/ |
D | Monster.lua | 118 function Monster.AddEquippedType(builder, equippedType) builder:PrependUint8Slot(8, equippedType, 0…
|
/external/flatbuffers/tests/optional_scalars/ |
D | ScalarStuff.py | 295 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/ |
D | monster_generated.lobster | 94 b_.PrependUint8Slot(8, equipped_type, 0)
|
/external/flatbuffers/lobster/ |
D | flatbuffers.lobster | 271 def PrependUint8Slot(o, x, d): PrependSlot(o, x, d): PrependUint8(_) 284 def PrependUint8Slot(o, x): PrependSlot(o, x): PrependUint8(_)
|
/external/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 337 function mt:PrependUint8Slot(...) self:PrependSlot(Uint8, ...) end function
|
/external/flatbuffers/python/flatbuffers/ |
D | builder.py | 593 def PrependUint8Slot(self, *args): self.PrependSlot(N.Uint8Flags, *args) member in Builder
|
/external/flatbuffers/go/ |
D | builder.go | 442 func (b *Builder) PrependUint8Slot(o int, x, d uint8) { func
|