Home
last modified time | relevance | path

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

/external/flatbuffers/tests/
Dgo_test.go622 b.PrependByte(1)
632 b.PrependByte(1)
634 b.PrependByte(2)
646 b.PrependByte(byte(i))
1050 b.PrependByte(4)
1051 b.PrependByte(3)
1052 b.PrependByte(2)
1053 b.PrependByte(1)
1054 b.PrependByte(0)
1146 b.PrependByte(4)
[all …]
Dluatest.lua94 b:PrependByte(4)
95 b:PrependByte(3)
96 b:PrependByte(2)
97 b:PrependByte(1)
98 b:PrependByte(0)
Dpy_test.py399 b.PrependByte(1)
408 b.PrependByte(1)
410 b.PrependByte(2)
1092 b.PrependByte(4)
1093 b.PrependByte(3)
1094 b.PrependByte(2)
1095 b.PrependByte(1)
1096 b.PrependByte(0)
1282 b.PrependByte(4)
1283 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.md902 builder.PrependByte(byte(i))
917 builder.PrependByte(i)
998 builder:PrependByte(i)
/external/flatbuffers/samples/
Dsample_binary.lua43 builder:PrependByte(i)
Dsample_binary.py57 builder.PrependByte(i)
Dsample_binary.go52 builder.PrependByte(byte(i))
/external/flatbuffers/lobster/
Dflatbuffers.lobster194 def PrependByte(x):
254 def PrependByteSlot(o, x, d): PrependSlot(o, x, d): PrependByte(_)
/external/flatbuffers/go/
Dbuilder.go412 b.PrependByte(x)
671 func (b *Builder) PrependByte(x byte) { func
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua349 function mt:PrependByte(x) self:Prepend(Uint8, x) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py617 def PrependByte(self, x): member in Builder