Home
last modified time | relevance | path

Searched refs:PrependByteSlot (Results 1 – 11 of 11) sorted by relevance

/external/flatbuffers/tests/
Dgo_test.go1218 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 …]
Dpy_test.py2468 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/
DTestSimpleTableWithEnum.go74 builder.PrependByteSlot(0, byte(color), 2)
DTypeAliases.go296 builder.PrependByteSlot(1, u8, 0)
DMonster.go1411 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/
DTableInFirstNS.go148 builder.PrependByteSlot(2, byte(fooUnionType), 0)
/external/flatbuffers/lobster/
Dflatbuffers.lobster270 def PrependByteSlot(o, x, d): PrependSlot(o, x, d): PrependByte(_)
283 def PrependByteSlot(o, x): PrependSlot(o, x): PrependByte(_)
/external/flatbuffers/go/
Dbuilder.go426 b.PrependByteSlot(o, val, def)
432 func (b *Builder) PrependByteSlot(o int, x, d byte) { func
/external/flatbuffers/tests/optional_scalars/
DScalarStuff.go645 builder.PrependByteSlot(3, justU8, 0)
652 builder.PrependByteSlot(5, defaultU8, 42)
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua336 function mt:PrependByteSlot(...) self:PrependSlot(Uint8, ...) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py591 def PrependByteSlot(self, *args): self.PrependSlot(N.Uint8Flags, *args) member in Builder