Home
last modified time | relevance | path

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

/external/flatbuffers/tests/
Dgo_test.go1085 b.PrependByteSlot(7, 1, 0)
1206 b.PrependByteSlot(0, 0, 0)
1207 b.PrependByteSlot(1, 11, 0)
1208 b.PrependByteSlot(2, 22, 0)
1213 b.PrependByteSlot(0, 0, 0)
1214 b.PrependByteSlot(1, 44, 0)
1215 b.PrependByteSlot(2, 55, 0)
1220 b.PrependByteSlot(0, 0, 0)
1221 b.PrependByteSlot(1, 77, 0)
1222 b.PrependByteSlot(2, 88, 0)
[all …]
Dpy_test.py1062 b.PrependByteSlot(0, 0, 0)
1063 b.PrependByteSlot(1, 11, 0)
1064 b.PrependByteSlot(2, 22, 0)
1069 b.PrependByteSlot(0, 0, 0)
1070 b.PrependByteSlot(1, 44, 0)
1071 b.PrependByteSlot(2, 55, 0)
1076 b.PrependByteSlot(0, 0, 0)
1077 b.PrependByteSlot(1, 77, 0)
1078 b.PrependByteSlot(2, 88, 0)
/external/flatbuffers/go/
Dbuilder.go397 b.PrependByteSlot(o, val, def)
403 func (b *Builder) PrependByteSlot(o int, x, d byte) { func
/external/flatbuffers/tests/MyGame/Example/
DMonster.go447 builder.PrependByteSlot(7, testType, 0)
483 builder.PrependByteSlot(15, testbool, 0)
/external/flatbuffers/python/flatbuffers/
Dbuilder.py483 def PrependByteSlot(self, *args): self.PrependSlot(N.Uint8Flags, *args) member in Builder