Searched refs:PrependUint32Slot (Results 1 – 14 of 14) sorted by relevance
/third_party/flatbuffers/tests/ |
D | optional_scalars_generated.lobster | 140 b_.PrependUint32Slot(15, just_u32, 0) 143 b_.PrependUint32Slot(16, maybe_u32) 146 b_.PrependUint32Slot(17, default_u32, 42)
|
D | monster_test_generated.lobster | 452 b_.PrependUint32Slot(17, testhashu32_fnv1, 0) 464 b_.PrependUint32Slot(21, testhashu32_fnv1a, 0) 737 b_.PrependUint32Slot(5, u32, 0)
|
D | go_test.go | 557 builder.PrependUint32Slot(int(f), uint32Val, 0) 1727 b.PrependUint32Slot(4, 4, 0)
|
D | py_test.py | 727 builder.PrependUint32Slot(int(j), self.uint32Val, 0)
|
/third_party/flatbuffers/tests/MyGame/Example/ |
D | TypeAliases.lua | 136 function TypeAliases.AddU32(builder, u32) builder:PrependUint32Slot(5, u32, 0) end
|
D | TypeAliases.go | 308 builder.PrependUint32Slot(5, u32, 0)
|
D | Monster.lua | 605 function Monster.AddTesthashu32Fnv1(builder, testhashu32Fnv1) builder:PrependUint32Slot(17, testhas… 609 function Monster.AddTesthashu32Fnv1a(builder, testhashu32Fnv1a) builder:PrependUint32Slot(21, testh…
|
D | TypeAliases.py | 179 def AddU32(builder, u32): builder.PrependUint32Slot(5, u32, 0)
|
D | Monster.go | 1409 builder.PrependUint32Slot(17, testhashu32Fnv1, 0) 1421 builder.PrependUint32Slot(21, testhashu32Fnv1a, 0)
|
D | Monster.py | 892 def AddTesthashu32Fnv1(builder, testhashu32Fnv1): builder.PrependUint32Slot(17, testhashu32Fnv1, 0) 908 def AddTesthashu32Fnv1a(builder, testhashu32Fnv1a): builder.PrependUint32Slot(21, testhashu32Fnv1a,…
|
/third_party/flatbuffers/lobster/ |
D | flatbuffers.lobster | 268 def PrependUint32Slot(o, x, d): PrependSlot(o, x, d): PrependUint32(_) 281 def PrependUint32Slot(o, x): PrependSlot(o, x): PrependUint32(_)
|
/third_party/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 339 function mt:PrependUint32Slot(...) self:PrependSlot(Uint32, ...) end function
|
/third_party/flatbuffers/python/flatbuffers/ |
D | builder.py | 579 def PrependUint32Slot(self, *args): self.PrependSlot(N.Uint32Flags, *args) member in Builder
|
/third_party/flatbuffers/go/ |
D | builder.go | 462 func (b *Builder) PrependUint32Slot(o int, x, d uint32) { func
|