Searched refs:Testarrayoftables (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/flatbuffers/tests/MyGame/Example/ |
H A D | Monster.go | 22 Testarrayoftables []*MonsterT `json:"testarrayoftables"` member 97 if t.Testarrayoftables != nil { 98 testarrayoftablesLength := len(t.Testarrayoftables) 101 testarrayoftablesOffsets[j] = t.Testarrayoftables[j].Pack(builder) 350 t.Testarrayoftables = make([]*MonsterT, testarrayoftablesLength) 353 rcv.Testarrayoftables(&x, j) 354 t.Testarrayoftables[j] = x.UnPack() 650 func (rcv *Monster) Testarrayoftables(obj *Monster, j int) bool { func
|
H A D | Monster.cs | 58 …public MyGame.Example.Monster? Testarrayoftables(int j) { int o = __p.__offset(26); return o != 0 … in Testarrayoftables() method 539 _o.Testarrayoftables = new List<MyGame.Example.MonsterT>(); in UnPackTo() 540 …TestarrayoftablesLength; ++_j) {_o.Testarrayoftables.Add(this.Testarrayoftables(_j).HasValue ? thi… in UnPackTo() 647 if (_o.Testarrayoftables != null) { in Pack() 648 var __testarrayoftables = new Offset<MyGame.Example.Monster>[_o.Testarrayoftables.Count]; in Pack() 649 …++_j) { __testarrayoftables[_j] = MyGame.Example.Monster.Pack(builder, _o.Testarrayoftables[_j]); } in Pack() 835 public List<MyGame.Example.MonsterT> Testarrayoftables { get; set; } property in MyGame.Example.MonsterT 963 this.Testarrayoftables = null; in MonsterT()
|
H A D | Monster.py | 162 def Testarrayoftables(self, j): member in Monster 1178 if monster.Testarrayoftables(i) is None: 1181 … monster_ = MyGame.Example.Monster.MonsterT.InitFromObj(monster.Testarrayoftables(i))
|
H A D | Monster.lua | 163 function mt:Testarrayoftables(j) function
|
/aosp_15_r20/external/flatbuffers/tests/ |
H A D | py_test.py | 202 self.assertTrue(monster2.Testarrayoftables(0) is None) 472 self.assertEqual(monster.Testarrayoftables(0).Hp(), 200) 473 self.assertEqual(monster.Testarrayoftables(1).Hp(), 400) 2194 self.assertEqual(None, self.mon.Testarrayoftables(0)) 2217 self.assertEqual(99, mon2.Testarrayoftables(0).Hp())
|
H A D | monster_test_generated.py | 921 def Testarrayoftables(self, j): member in Monster 1763 if monster.Testarrayoftables(i) is None: 1766 monster_ = MonsterT.InitFromObj(monster.Testarrayoftables(i))
|
/aosp_15_r20/external/flatbuffers/tests/FlatBuffers.Test/ |
H A D | FlatBuffersExampleTests.cs | 153 Assert.AreEqual(monster.Testarrayoftables(0).Value.Name, "Barney"); in CanCreateNewFlatBufferFromScratch() 154 Assert.AreEqual(monster.Testarrayoftables(1).Value.Name, "Frodo"); in CanCreateNewFlatBufferFromScratch() 155 Assert.AreEqual(monster.Testarrayoftables(2).Value.Name, "Wilma"); in CanCreateNewFlatBufferFromScratch()
|