/external/flatbuffers/tests/ |
JavaTest.java | 360 TestEq(monster.testarrayoftables(0).name(), "Barney"); 361 TestEq(monster.testarrayoftables(1).name(), "Frodo"); 362 TestEq(monster.testarrayoftables(2).name(), "Wilma");
|
JavaScriptTest.js | 201 assert.strictEqual(monster.testarrayoftablesLength(), json.testarrayoftables.length); 202 json.testarrayoftables.forEach(function(table, i) { 203 var value = monster.testarrayoftables(i); 218 var testarrayoftablesOffsets = json.testarrayoftables.map(function(table) {
|
monster_test_generated.h | 580 std::vector<flatbuffers::unique_ptr<MonsterT>> testarrayoftables; member in struct:MyGame::Example::MonsterT 740 const flatbuffers::Vector<flatbuffers::Offset<Monster>> *testarrayoftables() const { function in struct:MyGame::Example::FLATBUFFERS_FINAL_CLASS 911 verifier.Verify(testarrayoftables()) && 912 verifier.VerifyVectorOfTables(testarrayoftables()) && [all...] |
test.cpp | 295 auto vecoftables = monster->testarrayoftables(); 496 auto &vecoftables = monster2->testarrayoftables; 798 "testarrayoftables: [ { hp: 1000, name: \"Barney\" }, { name: \"Fred\" }, " [all...] |
monster_test_generated.js | 932 MyGame.Example.Monster.prototype.testarrayoftables = function(index, obj) { method in class:MyGame.Example.Monster [all...] |
/external/flatbuffers/tests/MyGame/Example/ |
Monster.php | 505 public static function createMonster(FlatBufferBuilder $builder, $pos, $mana, $hp, $name, $inventory, $color, $test_type, $test, $test4, $testarrayofstring, $testarrayoftables, $enemy, $testnestedflatbuffer, $testempty, $testbool, $testhashs32_fnv1, $testhashu32_fnv1, $testhashs64_fnv1, $testhashu64_fnv1, $testhashs32_fnv1a, $testhashu32_fnv1a, $testhashs64_fnv1a, $testhashu64_fnv1a, $testarrayofbools, $testf, $testf2, $testf3, $testarrayofstring2, $testarrayofsortedstruct, $flex, $test5, $vector_of_longs, $vector_of_doubles, $parent_namespace_test) 518 self::addTestarrayoftables($builder, $testarrayoftables); 719 public static function addTestarrayoftables(FlatBufferBuilder $builder, $testarrayoftables) 721 $builder->addOffsetX(11, $testarrayoftables, 0);
|
Monster.java | 47 public Monster testarrayoftables(int j) { return testarrayoftables(new Monster(), j); } method in class:Monster 48 public Monster testarrayoftables(Monster obj, int j) { int o = __offset(26); return o != 0 ? obj.__assign(__indirect(__vector(o) + j * 4), bb) : null; } method in class:Monster
|
Monster.py | 137 def Testarrayoftables(self, j): 450 def MonsterAddTestarrayoftables(builder, testarrayoftables): builder.PrependUOffsetTRelativeSlot(11, flatbuffers.number_types.UOffsetTFlags.py_type(testarrayoftables), 0)
|
Monster.go | 171 func (rcv *Monster) Testarrayoftables(obj *Monster, j int) bool { 574 func MonsterAddTestarrayoftables(builder *flatbuffers.Builder, testarrayoftables flatbuffers.UOffsetT) { 575 builder.PrependUOffsetTSlot(11, flatbuffers.UOffsetT(testarrayoftables), 0)
|