Home
last modified time | relevance | path

Searched refs:PrependUint32 (Results 1 – 14 of 14) sorted by relevance

/third_party/flatbuffers/tests/MyGame/Example/
DStructOfStructs.lua33 builder:PrependUint32(c_distance)
34 builder:PrependUint32(c_id)
40 builder:PrependUint32(a_distance)
41 builder:PrependUint32(a_id)
DStructOfStructs.go70 builder.PrependUint32(c_distance)
71 builder.PrependUint32(c_id)
77 builder.PrependUint32(a_distance)
78 builder.PrependUint32(a_id)
DStructOfStructs.py39 builder.PrependUint32(c_distance)
40 builder.PrependUint32(c_id)
46 builder.PrependUint32(a_distance)
47 builder.PrependUint32(a_id)
DAbility.lua26 builder:PrependUint32(distance)
27 builder:PrependUint32(id)
DAbility.py27 builder.PrependUint32(distance)
28 builder.PrependUint32(id)
DAbility.go59 builder.PrependUint32(distance)
60 builder.PrependUint32(id)
/third_party/flatbuffers/lobster/
Dflatbuffers.lobster155 // we already made space for this, so write without PrependUint32
211 def PrependUint32(x):
268 def PrependUint32Slot(o, x, d): PrependSlot(o, x, d): PrependUint32(_)
281 def PrependUint32Slot(o, x): PrependSlot(o, x): PrependUint32(_)
/third_party/flatbuffers/docs/source/
DGoApi_generated.txt110 func (b *Builder) PrependUint32(x uint32)
111 PrependUint32 prepends a uint32 to the Builder buffer. Aligns and checks
/third_party/flatbuffers/tests/
Dmonster_test_generated.lobster165 b_.PrependUint32(distance)
166 b_.PrependUint32(id)
180 b_.PrependUint32(c_distance)
181 b_.PrependUint32(c_id)
187 b_.PrependUint32(a_distance)
188 b_.PrependUint32(a_id)
Dgo_test.go690 b.PrependUint32(0x98765432)
Dpy_test.py839 b.PrependUint32(0x98765432)
/third_party/flatbuffers/go/
Dbuilder.go464 b.PrependUint32(x)
679 func (b *Builder) PrependUint32(x uint32) { func
/third_party/flatbuffers/lua/flatbuffers/
Dbuilder.lua368 function mt:PrependUint32(x) self:Prepend(Uint32, x) end function
/third_party/flatbuffers/python/flatbuffers/
Dbuilder.py650 def PrependUint32(self, x): member in Builder