Home
last modified time | relevance | path

Searched refs:Testarrayoftables (Results 1 – 6 of 6) sorted by relevance

/third_party/flatbuffers/tests/MyGame/Example/
DMonster.go22 Testarrayoftables []*MonsterT member
94 if t.Testarrayoftables != nil {
95 testarrayoftablesLength := len(t.Testarrayoftables)
98 testarrayoftablesOffsets[j] = t.Testarrayoftables[j].Pack(builder)
343 t.Testarrayoftables = make([]*MonsterT, testarrayoftablesLength)
346 rcv.Testarrayoftables(&x, j)
347 t.Testarrayoftables[j] = x.UnPack()
640 func (rcv *Monster) Testarrayoftables(obj *Monster, j int) bool { func
DMonster.cs58 …public MyGame.Example.Monster? Testarrayoftables(int j) { int o = __p.__offset(26); return o != 0 … in Testarrayoftables() method
488 _o.Testarrayoftables = new List<MyGame.Example.MonsterT>(); in UnPackTo()
489 …TestarrayoftablesLength; ++_j) {_o.Testarrayoftables.Add(this.Testarrayoftables(_j).HasValue ? thi… in UnPackTo()
593 if (_o.Testarrayoftables != null) { in Pack()
594 var __testarrayoftables = new Offset<MyGame.Example.Monster>[_o.Testarrayoftables.Count]; in Pack()
595 …++_j) { __testarrayoftables[_j] = MyGame.Example.Monster.Pack(builder, _o.Testarrayoftables[_j]); } in Pack()
778 public List<MyGame.Example.MonsterT> Testarrayoftables { get; set; } property in MyGame.Example.MonsterT
900 this.Testarrayoftables = null; in MonsterT()
DMonster.py162 def Testarrayoftables(self, j): member in Monster
1219 if monster.Testarrayoftables(i) is None:
1222 … monster_ = MyGame.Example.Monster.MonsterT.InitFromObj(monster.Testarrayoftables(i))
DMonster.lua131 function Monster_mt:Testarrayoftables(j) function
/third_party/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffersExampleTests.cs152 Assert.AreEqual(monster.Testarrayoftables(0).Value.Name, "Barney"); in CanCreateNewFlatBufferFromScratch()
153 Assert.AreEqual(monster.Testarrayoftables(1).Value.Name, "Frodo"); in CanCreateNewFlatBufferFromScratch()
154 Assert.AreEqual(monster.Testarrayoftables(2).Value.Name, "Wilma"); in CanCreateNewFlatBufferFromScratch()
/third_party/flatbuffers/tests/
Dpy_test.py162 self.assertTrue(monster2.Testarrayoftables(0) is None)
400 self.assertEqual(monster.Testarrayoftables(0).Hp(), 200)
401 self.assertEqual(monster.Testarrayoftables(1).Hp(), 400)
1759 self.assertEqual(None, self.mon.Testarrayoftables(0))
1782 self.assertEqual(99, mon2.Testarrayoftables(0).Hp())