Home
last modified time | relevance | path

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

/external/flatbuffers/tests/MyGame/Example/
DStructOfStructsOfStructs.lua37 builder:PrependUint32(a_c_distance)
38 builder:PrependUint32(a_c_id)
44 builder:PrependUint32(a_a_distance)
45 builder:PrependUint32(a_a_id)
DStructOfStructs.lua46 builder:PrependUint32(c_distance)
47 builder:PrependUint32(c_id)
53 builder:PrependUint32(a_distance)
54 builder:PrependUint32(a_id)
DStructOfStructsOfStructs.go53 builder.PrependUint32(a_c_distance)
54 builder.PrependUint32(a_c_id)
60 builder.PrependUint32(a_a_distance)
61 builder.PrependUint32(a_a_id)
DStructOfStructsOfStructs.py30 builder.PrependUint32(a_c_distance)
31 builder.PrependUint32(a_c_id)
37 builder.PrependUint32(a_a_distance)
38 builder.PrependUint32(a_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.lua38 builder:PrependUint32(distance)
39 builder:PrependUint32(id)
DAbility.py27 builder.PrependUint32(distance)
28 builder.PrependUint32(id)
DAbility.go59 builder.PrependUint32(distance)
60 builder.PrependUint32(id)
/external/flatbuffers/tests/
Dmonster_test_generated.lobster172 b_.PrependUint32(distance)
173 b_.PrependUint32(id)
187 b_.PrependUint32(c_distance)
188 b_.PrependUint32(c_id)
194 b_.PrependUint32(a_distance)
195 b_.PrependUint32(a_id)
206 b_.PrependUint32(a_c_distance)
207 b_.PrependUint32(a_c_id)
213 b_.PrependUint32(a_a_distance)
214 b_.PrependUint32(a_a_id)
Dmonster_test_generated.py428 builder.PrependUint32(distance)
429 builder.PrependUint32(id)
494 builder.PrependUint32(c_distance)
495 builder.PrependUint32(c_id)
501 builder.PrependUint32(a_distance)
502 builder.PrependUint32(a_id)
567 builder.PrependUint32(a_c_distance)
568 builder.PrependUint32(a_c_id)
574 builder.PrependUint32(a_a_distance)
575 builder.PrependUint32(a_a_id)
Dgo_test.go723 b.PrependUint32(0x98765432)
Dpy_test.py923 b.PrependUint32(0x98765432)
/external/flatbuffers/lobster/
Dflatbuffers.lobster155 // we already made space for this, so write without PrependUint32
216 def PrependUint32(x):
273 def PrependUint32Slot(o, x, d): PrependSlot(o, x, d): PrependUint32(_)
286 def PrependUint32Slot(o, x): PrependSlot(o, x): PrependUint32(_)
/external/flatbuffers/docs/source/
DGoApi_generated.txt110 func (b *Builder) PrependUint32(x uint32)
111 PrependUint32 prepends a uint32 to the Builder buffer. Aligns and checks
/external/flatbuffers/go/
Dbuilder.go464 b.PrependUint32(x)
679 func (b *Builder) PrependUint32(x uint32) { func
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua368 function mt:PrependUint32(x) self:Prepend(Uint32, x) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py668 def PrependUint32(self, x): member in Builder
/external/flatbuffers/tests/optional_scalars/
DScalarStuff.go688 builder.PrependUint32(maybeU32)