Searched refs:PrependInt64Slot (Results 1 – 17 of 17) sorted by relevance
/third_party/flatbuffers/tests/ |
D | optional_scalars_generated.lobster | 149 b_.PrependInt64Slot(18, just_i64, 0) 152 b_.PrependInt64Slot(19, maybe_i64) 155 b_.PrependInt64Slot(20, default_i64, 42)
|
D | monster_test_generated.lobster | 210 b_.PrependInt64Slot(1, val, 0) 455 b_.PrependInt64Slot(18, testhashs64_fnv1, 0) 467 b_.PrependInt64Slot(22, testhashs64_fnv1a, 0) 740 b_.PrependInt64Slot(6, i64, 0)
|
D | go_test.go | 559 builder.PrependInt64Slot(int(f), int64Val, 0) 1732 b.PrependInt64Slot(9, 9, 0)
|
D | py_test.py | 729 builder.PrependInt64Slot(int(j), self.int64Val, 0)
|
/third_party/flatbuffers/tests/MyGame/Example/ |
D | Stat.lua | 49 function Stat.AddVal(builder, val) builder:PrependInt64Slot(1, val, 0) end
|
D | Stat.go | 104 builder.PrependInt64Slot(1, val, 0)
|
D | Stat.py | 60 def AddVal(builder, val): builder.PrependInt64Slot(1, val, 0)
|
D | TypeAliases.lua | 137 function TypeAliases.AddI64(builder, i64) builder:PrependInt64Slot(6, i64, 0) end
|
D | TypeAliases.go | 311 builder.PrependInt64Slot(6, i64, 0)
|
D | Monster.lua | 606 function Monster.AddTesthashs64Fnv1(builder, testhashs64Fnv1) builder:PrependInt64Slot(18, testhash… 610 function Monster.AddTesthashs64Fnv1a(builder, testhashs64Fnv1a) builder:PrependInt64Slot(22, testha…
|
D | TypeAliases.py | 183 def AddI64(builder, i64): builder.PrependInt64Slot(6, i64, 0)
|
D | Monster.go | 1412 builder.PrependInt64Slot(18, testhashs64Fnv1, 0) 1424 builder.PrependInt64Slot(22, testhashs64Fnv1a, 0)
|
D | Monster.py | 896 def AddTesthashs64Fnv1(builder, testhashs64Fnv1): builder.PrependInt64Slot(18, testhashs64Fnv1, 0) 912 def AddTesthashs64Fnv1a(builder, testhashs64Fnv1a): builder.PrependInt64Slot(22, testhashs64Fnv1a, …
|
/third_party/flatbuffers/lobster/ |
D | flatbuffers.lobster | 273 def PrependInt64Slot(o, x, d): PrependSlot(o, x, d): PrependInt64(_) 286 def PrependInt64Slot(o, x): PrependSlot(o, x): PrependInt64(_)
|
/third_party/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 344 function mt:PrependInt64Slot(...) self:PrependSlot(Int64, ...) end function
|
/third_party/flatbuffers/python/flatbuffers/ |
D | builder.py | 589 def PrependInt64Slot(self, *args): self.PrependSlot(N.Int64Flags, *args) member in Builder
|
/third_party/flatbuffers/go/ |
D | builder.go | 512 func (b *Builder) PrependInt64Slot(o int, x, d int64) { func
|