Home
last modified time | relevance | path

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

/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DTableInNestedNS.lua32 function TableInNestedNS.AddFoo(builder, foo) builder:PrependInt32Slot(0, foo, 0) end
DTableInNestedNS.py31 def TableInNestedNSAddFoo(builder, foo): builder.PrependInt32Slot(0, foo, 0)
DTableInNestedNS.go67 builder.PrependInt32Slot(0, foo, 0)
/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.lobster27 b_.PrependInt32Slot(0, foo, 0)
/external/flatbuffers/tests/MyGame/Example/
DTypeAliases.lua129 function TypeAliases.AddI32(builder, i32) builder:PrependInt32Slot(4, i32, 0) end
DMonster.lua553 function Monster.AddTesthashs32Fnv1(builder, testhashs32Fnv1) builder:PrependInt32Slot(16, testhash…
557 function Monster.AddTesthashs32Fnv1a(builder, testhashs32Fnv1a) builder:PrependInt32Slot(20, testha…
DTypeAliases.go298 builder.PrependInt32Slot(4, i32, 0)
DTypeAliases.py156 def TypeAliasesAddI32(builder, i32): builder.PrependInt32Slot(4, i32, 0)
DMonster.go1316 builder.PrependInt32Slot(16, testhashs32Fnv1, 0)
1328 builder.PrependInt32Slot(20, testhashs32Fnv1a, 0)
DMonster.py743 def MonsterAddTesthashs32Fnv1(builder, testhashs32Fnv1): builder.PrependInt32Slot(16, testhashs32Fn…
747 def MonsterAddTesthashs32Fnv1a(builder, testhashs32Fnv1a): builder.PrependInt32Slot(20, testhashs32…
/external/flatbuffers/tests/
Dmonster_test_generated.lobster417 b_.PrependInt32Slot(16, testhashs32_fnv1, 0)
429 b_.PrependInt32Slot(20, testhashs32_fnv1a, 0)
682 b_.PrependInt32Slot(4, i32, 0)
Dgo_test.go519 builder.PrependInt32Slot(int(f), int32Val, 0)
1649 b.PrependInt32Slot(8, 8, 0)
Dpy_test.py725 builder.PrependInt32Slot(int(j), self.int32Val, 0)
/external/flatbuffers/lua/flatbuffers/
Dbuilder.lua342 function mt:PrependInt32Slot(...) self:PrependSlot(Int32, ...) end function
/external/flatbuffers/python/flatbuffers/
Dbuilder.py582 def PrependInt32Slot(self, *args): self.PrependSlot(N.Int32Flags, *args) member in Builder
/external/flatbuffers/lobster/
Dflatbuffers.lobster268 def PrependInt32Slot(o, x, d): PrependSlot(o, x, d): PrependInt32(_)
/external/flatbuffers/go/
Dbuilder.go495 func (b *Builder) PrependInt32Slot(o int, x, d int32) { func