Home
last modified time | relevance | path

Searched refs:Testbool (Results 1 – 7 of 7) sorted by relevance

/external/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffersExampleTests.cs246 Assert.AreEqual(true, monster.Testbool); in TestBuffer()
548 Assert.AreEqual(a.Testbool, b.Testbool); in AreEqual()
636 Assert.AreEqual(a.Testbool, b.Testbool); in AreEqual()
/external/flatbuffers/tests/MyGame/Example/
DMonster.cs70 …public bool Testbool { get { int o = __p.__offset(34); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_po… property
359 _o.Testbool = this.Testbool; in UnPackTo()
556 AddTestbool(builder, _o.Testbool); in Pack()
634 public bool Testbool { get; set; } property in MyGame.Example.MonsterT
748 this.Testbool = false; in MonsterT()
DMonster.go26 Testbool bool member
257 MonsterAddTestbool(builder, t.Testbool)
331 t.Testbool = rcv.Testbool()
686 func (rcv *Monster) Testbool() bool { func
DMonster.lua176 function Monster_mt:Testbool() function
DMonster.py232 def Testbool(self): member in Monster
922 self.testbool = monster.Testbool()
/external/flatbuffers/tests/
Dgo_test.go178 if got := monster.Testbool(); true != got {
339 testcase{"Testbool", func() bool { return monster.Testbool() == true }},
367 testcase{"Testbool", func() bool { return monster.Testbool() == false }},
Dpy_test.py171 self.assertTrue(monster2.Testbool() is False)
430 self.assertTrue(monster.Testbool())
1898 self.assertFalse(self.mon.Testbool())
1910 self.assertTrue(mon2.Testbool())