Home
last modified time | relevance | path

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

/external/flatbuffers/tests/MyGame/Example/
DStat.lua46 function Stat.AddVal(builder, val) builder:PrependInt64Slot(1, val, 0) end
DStat.py44 def StatAddVal(builder, val): builder.PrependInt64Slot(1, val, 0)
DStat.go68 builder.PrependInt64Slot(1, val, 0)
DTypeAliases.lua131 function TypeAliases.AddI64(builder, i64) builder:PrependInt64Slot(6, i64, 0) end
DTypeAliases.py142 def TypeAliasesAddI64(builder, i64): builder.PrependInt64Slot(6, i64, 0)
DTypeAliases.go205 builder.PrependInt64Slot(6, i64, 0)
DMonster.lua548 function Monster.AddTesthashs64Fnv1(builder, testhashs64Fnv1) builder:PrependInt64Slot(18, testhash…
552 function Monster.AddTesthashs64Fnv1a(builder, testhashs64Fnv1a) builder:PrependInt64Slot(22, testha…
DMonster.go790 builder.PrependInt64Slot(18, testhashs64Fnv1, 0)
802 builder.PrependInt64Slot(22, testhashs64Fnv1a, 0)
DMonster.py642 def MonsterAddTesthashs64Fnv1(builder, testhashs64Fnv1): builder.PrependInt64Slot(18, testhashs64Fn…
646 def MonsterAddTesthashs64Fnv1a(builder, testhashs64Fnv1a): builder.PrependInt64Slot(22, testhashs64…
/external/flatbuffers/tests/
Dmonster_test_generated.lobster163 b_.PrependInt64Slot(1, val, 0)
398 b_.PrependInt64Slot(18, testhashs64_fnv1, 0)
406 b_.PrependInt64Slot(22, testhashs64_fnv1a, 0)
577 b_.PrependInt64Slot(6, i64, 0)
Dgo_test.go476 builder.PrependInt64Slot(int(f), int64Val, 0)
1543 b.PrependInt64Slot(9, 9, 0)
Dpy_test.py267 builder.PrependInt64Slot(int(j), self.int64Val, 0)
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua328 function mt:PrependInt64Slot(...) self:PrependSlot(Int64, ...) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py577 def PrependInt64Slot(self, *args): self.PrependSlot(N.Int64Flags, *args) member in Builder
/external/flatbuffers/lobster/
Dflatbuffers.lobster262 def PrependInt64Slot(o, x, d): PrependSlot(o, x, d): PrependInt64(_)
/external/flatbuffers/go/
Dbuilder.go490 func (b *Builder) PrependInt64Slot(o int, x, d int64) { func