Home
last modified time | relevance | path

Searched refs:PrependByte (Results 1 – 8 of 8) sorted by relevance

/external/flatbuffers/tests/
Dgo_test.go605 b.PrependByte(1)
615 b.PrependByte(1)
617 b.PrependByte(2)
629 b.PrependByte(byte(i))
1033 b.PrependByte(4)
1034 b.PrependByte(3)
1035 b.PrependByte(2)
1036 b.PrependByte(1)
1037 b.PrependByte(0)
1129 b.PrependByte(4)
[all …]
Dpy_test.py354 b.PrependByte(1)
363 b.PrependByte(1)
365 b.PrependByte(2)
776 b.PrependByte(4)
777 b.PrependByte(3)
778 b.PrependByte(2)
779 b.PrependByte(1)
780 b.PrependByte(0)
947 b.PrependByte(4)
948 b.PrependByte(2)
[all …]
/external/flatbuffers/docs/source/
DGoApi_generated.txt74 func (b *Builder) PrependByte(x byte)
75 PrependByte prepends a byte to the Builder buffer. Aligns and checks for
DTutorial.md647 builder.PrependByte(byte(i))
662 builder.PrependByte(i)
/external/flatbuffers/samples/
Dsample_binary.py57 builder.PrependByte(i)
Dsample_binary.go52 builder.PrependByte(byte(i))
/external/flatbuffers/go/
Dbuilder.go405 b.PrependByte(x)
647 func (b *Builder) PrependByte(x byte) { func
/external/flatbuffers/python/flatbuffers/
Dbuilder.py539 def PrependByte(self, x): member in Builder