Home
last modified time | relevance | path

Searched refs:PrependUint32Slot (Results 1 – 13 of 13) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
DTypeAliases.lua130 function TypeAliases.AddU32(builder, u32) builder:PrependUint32Slot(5, u32, 0) end
DMonster.lua554 function Monster.AddTesthashu32Fnv1(builder, testhashu32Fnv1) builder:PrependUint32Slot(17, testhas…
558 function Monster.AddTesthashu32Fnv1a(builder, testhashu32Fnv1a) builder:PrependUint32Slot(21, testh…
DTypeAliases.go301 builder.PrependUint32Slot(5, u32, 0)
DTypeAliases.py157 def TypeAliasesAddU32(builder, u32): builder.PrependUint32Slot(5, u32, 0)
DMonster.go1319 builder.PrependUint32Slot(17, testhashu32Fnv1, 0)
1331 builder.PrependUint32Slot(21, testhashu32Fnv1a, 0)
DMonster.py744 def MonsterAddTesthashu32Fnv1(builder, testhashu32Fnv1): builder.PrependUint32Slot(17, testhashu32F…
748 def MonsterAddTesthashu32Fnv1a(builder, testhashu32Fnv1a): builder.PrependUint32Slot(21, testhashu3…
/external/flatbuffers/tests/
Dmonster_test_generated.lobster420 b_.PrependUint32Slot(17, testhashu32_fnv1, 0)
432 b_.PrependUint32Slot(21, testhashu32_fnv1a, 0)
685 b_.PrependUint32Slot(5, u32, 0)
Dgo_test.go521 builder.PrependUint32Slot(int(f), uint32Val, 0)
1645 b.PrependUint32Slot(4, 4, 0)
Dpy_test.py727 builder.PrependUint32Slot(int(j), self.uint32Val, 0)
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua338 function mt:PrependUint32Slot(...) self:PrependSlot(Uint32, ...) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py574 def PrependUint32Slot(self, *args): self.PrependSlot(N.Uint32Flags, *args) member in Builder
/external/flatbuffers/lobster/
Dflatbuffers.lobster264 def PrependUint32Slot(o, x, d): PrependSlot(o, x, d): PrependUint32(_)
/external/flatbuffers/go/
Dbuilder.go455 func (b *Builder) PrependUint32Slot(o int, x, d uint32) { func