Searched refs:PrependByteSlot (Results 1 – 11 of 11) sorted by relevance
/external/flatbuffers/tests/ |
D | go_test.go | 1218 b.PrependByteSlot(7, 1, 0) 1344 b.PrependByteSlot(0, 0, 0) 1345 b.PrependByteSlot(1, 11, 0) 1346 b.PrependByteSlot(2, 22, 0) 1351 b.PrependByteSlot(0, 0, 0) 1352 b.PrependByteSlot(1, 44, 0) 1353 b.PrependByteSlot(2, 55, 0) 1358 b.PrependByteSlot(0, 0, 0) 1359 b.PrependByteSlot(1, 77, 0) 1360 b.PrependByteSlot(2, 88, 0) [all …]
|
D | py_test.py | 2468 b.PrependByteSlot(0, 0, 0) 2469 b.PrependByteSlot(1, 11, 0) 2470 b.PrependByteSlot(2, 22, 0) 2475 b.PrependByteSlot(0, 0, 0) 2476 b.PrependByteSlot(1, 44, 0) 2477 b.PrependByteSlot(2, 55, 0) 2482 b.PrependByteSlot(0, 0, 0) 2483 b.PrependByteSlot(1, 77, 0) 2484 b.PrependByteSlot(2, 88, 0)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | TestSimpleTableWithEnum.go | 74 builder.PrependByteSlot(0, byte(color), 2)
|
D | TypeAliases.go | 296 builder.PrependByteSlot(1, u8, 0)
|
D | Monster.go | 1411 builder.PrependByteSlot(6, byte(color), 8) 1414 builder.PrependByteSlot(7, byte(testType), 0) 1570 builder.PrependByteSlot(43, byte(anyUniqueType), 0) 1576 builder.PrependByteSlot(45, byte(anyAmbiguousType), 0)
|
/external/flatbuffers/tests/namespace_test/NamespaceA/ |
D | TableInFirstNS.go | 148 builder.PrependByteSlot(2, byte(fooUnionType), 0)
|
/external/flatbuffers/lobster/ |
D | flatbuffers.lobster | 270 def PrependByteSlot(o, x, d): PrependSlot(o, x, d): PrependByte(_) 283 def PrependByteSlot(o, x): PrependSlot(o, x): PrependByte(_)
|
/external/flatbuffers/go/ |
D | builder.go | 426 b.PrependByteSlot(o, val, def) 432 func (b *Builder) PrependByteSlot(o int, x, d byte) { func
|
/external/flatbuffers/tests/optional_scalars/ |
D | ScalarStuff.go | 645 builder.PrependByteSlot(3, justU8, 0) 652 builder.PrependByteSlot(5, defaultU8, 42)
|
/external/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 336 function mt:PrependByteSlot(...) self:PrependSlot(Uint8, ...) end function
|
/external/flatbuffers/python/flatbuffers/ |
D | builder.py | 591 def PrependByteSlot(self, *args): self.PrependSlot(N.Uint8Flags, *args) member in Builder
|