Home
last modified time | relevance | path

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

/external/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffersExampleTests.cs169 for (int i = 0; i < monster.InventoryLength; i++) in CanCreateNewFlatBufferFromScratch()
218 Assert.AreEqual(5, monster.InventoryLength); in TestBuffer()
220 for (var i = 0; i < monster.InventoryLength; i++) in TestBuffer()
519 Assert.AreEqual(a.InventoryLength, b.Inventory.Count); in AreEqual()
520 for (var i = 0; i < a.InventoryLength; ++i) in AreEqual()
605 Assert.AreEqual(a.InventoryLength, b.InventoryLength); in AreEqual()
606 for (var i = 0; i < a.InventoryLength; ++i) in AreEqual()
/external/flatbuffers/tests/
Dluatest.lua45 assert(mon:InventoryLength() == 5)
47 for i=1,mon:InventoryLength() do
Dgo_test.go257 if len(inventorySlice) != monster.InventoryLength() {
258 …nster.InventoryBytes) != monster.InventoryLength", len(inventorySlice), monster.InventoryLength()))
261 if got := monster.InventoryLength(); 5 != got {
266 l := monster.InventoryLength()
1515 for i := 0; i < monster.InventoryLength(); i++ {
1852 monster.InventoryLength()
1853 l := monster.InventoryLength()
Dpy_test.py151 self.assertEqual(monster2.InventoryLength(), 0)
592 asserter(monster.InventoryLength() == 5)
596 for i in compat_range(monster.InventoryLength()):
1684 self.assertEqual(0, self.mon.InventoryLength())
/external/flatbuffers/samples/
Dsample_binary.lua86 for i=1,mon:InventoryLength() do
Dsample_binary.py109 for i in xrange(monster.InventoryLength()):
Dsample_binary.go115 for i := 0; i < monster.InventoryLength(); i++ {
DSampleBinary.cs93 for (int i = 0; i < monster.InventoryLength; i++) in Main()
/external/flatbuffers/samples/lua/MyGame/Sample/
DMonster.lua61 function Monster_mt:InventoryLength() function
/external/flatbuffers/grpc/tests/
Dgrpctest.py61 assert m.InventoryLength() == len(test_inventory)
/external/flatbuffers/docs/source/
DPythonUsage.md86 for i in range(monster.InventoryLength()):
DTutorial.md2729 int invLength = monster.InventoryLength;
2735 invLength := monster.InventoryLength()
2741 inv_len = monster.InventoryLength()
2779 local invLength = mon:InventoryLength()
/external/flatbuffers/tests/MyGame/Example/
DMonster.lua62 function Monster_mt:InventoryLength() function
DMonster.py76 def InventoryLength(self): member in Monster
884 for i in range(monster.InventoryLength()):
DMonster.cs37 …public int InventoryLength { get { int o = __p.__offset(14); return o != 0 ? __p.__vector_len(o) :… property
333 for (var _j = 0; _j < this.InventoryLength; ++_j) {_o.Inventory.Add(this.Inventory(_j));} in UnPackTo()
DMonster.go508 func (rcv *Monster) InventoryLength() int { func