Home
last modified time | relevance | path

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

/third_party/flatbuffers/tests/
Doptional_scalars_generated.lobster140 b_.PrependUint32Slot(15, just_u32, 0)
143 b_.PrependUint32Slot(16, maybe_u32)
146 b_.PrependUint32Slot(17, default_u32, 42)
Dmonster_test_generated.lobster452 b_.PrependUint32Slot(17, testhashu32_fnv1, 0)
464 b_.PrependUint32Slot(21, testhashu32_fnv1a, 0)
737 b_.PrependUint32Slot(5, u32, 0)
Dgo_test.go557 builder.PrependUint32Slot(int(f), uint32Val, 0)
1727 b.PrependUint32Slot(4, 4, 0)
Dpy_test.py727 builder.PrependUint32Slot(int(j), self.uint32Val, 0)
/third_party/flatbuffers/tests/MyGame/Example/
DTypeAliases.lua136 function TypeAliases.AddU32(builder, u32) builder:PrependUint32Slot(5, u32, 0) end
DTypeAliases.go308 builder.PrependUint32Slot(5, u32, 0)
DMonster.lua605 function Monster.AddTesthashu32Fnv1(builder, testhashu32Fnv1) builder:PrependUint32Slot(17, testhas…
609 function Monster.AddTesthashu32Fnv1a(builder, testhashu32Fnv1a) builder:PrependUint32Slot(21, testh…
DTypeAliases.py179 def AddU32(builder, u32): builder.PrependUint32Slot(5, u32, 0)
DMonster.go1409 builder.PrependUint32Slot(17, testhashu32Fnv1, 0)
1421 builder.PrependUint32Slot(21, testhashu32Fnv1a, 0)
DMonster.py892 def AddTesthashu32Fnv1(builder, testhashu32Fnv1): builder.PrependUint32Slot(17, testhashu32Fnv1, 0)
908 def AddTesthashu32Fnv1a(builder, testhashu32Fnv1a): builder.PrependUint32Slot(21, testhashu32Fnv1a,…
/third_party/flatbuffers/lobster/
Dflatbuffers.lobster268 def PrependUint32Slot(o, x, d): PrependSlot(o, x, d): PrependUint32(_)
281 def PrependUint32Slot(o, x): PrependSlot(o, x): PrependUint32(_)
/third_party/flatbuffers/lua/flatbuffers/
Dbuilder.lua339 function mt:PrependUint32Slot(...) self:PrependSlot(Uint32, ...) end function
/third_party/flatbuffers/python/flatbuffers/
Dbuilder.py579 def PrependUint32Slot(self, *args): self.PrependSlot(N.Uint32Flags, *args) member in Builder
/third_party/flatbuffers/go/
Dbuilder.go462 func (b *Builder) PrependUint32Slot(o int, x, d uint32) { func