Home
last modified time | relevance | path

Searched refs:PrependInt64Slot (Results 1 – 17 of 17) sorted by relevance

/third_party/flatbuffers/tests/
Doptional_scalars_generated.lobster149 b_.PrependInt64Slot(18, just_i64, 0)
152 b_.PrependInt64Slot(19, maybe_i64)
155 b_.PrependInt64Slot(20, default_i64, 42)
Dmonster_test_generated.lobster210 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)
Dgo_test.go559 builder.PrependInt64Slot(int(f), int64Val, 0)
1732 b.PrependInt64Slot(9, 9, 0)
Dpy_test.py729 builder.PrependInt64Slot(int(j), self.int64Val, 0)
/third_party/flatbuffers/tests/MyGame/Example/
DStat.lua49 function Stat.AddVal(builder, val) builder:PrependInt64Slot(1, val, 0) end
DStat.go104 builder.PrependInt64Slot(1, val, 0)
DStat.py60 def AddVal(builder, val): builder.PrependInt64Slot(1, val, 0)
DTypeAliases.lua137 function TypeAliases.AddI64(builder, i64) builder:PrependInt64Slot(6, i64, 0) end
DTypeAliases.go311 builder.PrependInt64Slot(6, i64, 0)
DMonster.lua606 function Monster.AddTesthashs64Fnv1(builder, testhashs64Fnv1) builder:PrependInt64Slot(18, testhash…
610 function Monster.AddTesthashs64Fnv1a(builder, testhashs64Fnv1a) builder:PrependInt64Slot(22, testha…
DTypeAliases.py183 def AddI64(builder, i64): builder.PrependInt64Slot(6, i64, 0)
DMonster.go1412 builder.PrependInt64Slot(18, testhashs64Fnv1, 0)
1424 builder.PrependInt64Slot(22, testhashs64Fnv1a, 0)
DMonster.py896 def AddTesthashs64Fnv1(builder, testhashs64Fnv1): builder.PrependInt64Slot(18, testhashs64Fnv1, 0)
912 def AddTesthashs64Fnv1a(builder, testhashs64Fnv1a): builder.PrependInt64Slot(22, testhashs64Fnv1a, …
/third_party/flatbuffers/lobster/
Dflatbuffers.lobster273 def PrependInt64Slot(o, x, d): PrependSlot(o, x, d): PrependInt64(_)
286 def PrependInt64Slot(o, x): PrependSlot(o, x): PrependInt64(_)
/third_party/flatbuffers/lua/flatbuffers/
Dbuilder.lua344 function mt:PrependInt64Slot(...) self:PrependSlot(Int64, ...) end function
/third_party/flatbuffers/python/flatbuffers/
Dbuilder.py589 def PrependInt64Slot(self, *args): self.PrependSlot(N.Int64Flags, *args) member in Builder
/third_party/flatbuffers/go/
Dbuilder.go512 func (b *Builder) PrependInt64Slot(o int, x, d int64) { func