Home
last modified time | relevance | path

Searched refs:testarrayoftables (Results 1 – 19 of 19) sorted by relevance

/external/flatbuffers/tests/rust_usage_test/benches/
Dflatbuffers_benchmarks.rs96 testarrayoftables: Some(builder.create_vector(&[t0, t1, t2])), in create_serialized_example_with_generated_code()
138 let testarrayoftables = m.testarrayoftables().unwrap(); in traverse_serialized_example_with_generated_code() localVariable
139 blackbox(testarrayoftables.get(0).hp()); in traverse_serialized_example_with_generated_code()
140 blackbox(testarrayoftables.get(0).name()); in traverse_serialized_example_with_generated_code()
141 blackbox(testarrayoftables.get(1).name()); in traverse_serialized_example_with_generated_code()
142 blackbox(testarrayoftables.get(2).name()); in traverse_serialized_example_with_generated_code()
/external/flatbuffers/tests/
DJavaScriptTest.js218 assert.strictEqual(monster.testarrayoftablesLength(), json.testarrayoftables.length);
219 json.testarrayoftables.forEach(function(table, i) {
220 var value = monster.testarrayoftables(i);
235 var testarrayoftablesOffsets = json.testarrayoftables.map(function(table) {
Dmonsterdata_test.golden47 testarrayoftables: [
DJavaTest.java377 TestEq(monster.testarrayoftables(0).name(), "Barney"); in TestBuilderBasics()
378 TestEq(monster.testarrayoftables(1).name(), "Frodo"); in TestBuilderBasics()
379 TestEq(monster.testarrayoftables(2).name(), "Wilma"); in TestBuilderBasics()
Dmonster_test_generated.h1026 std::vector<flatbuffers::unique_ptr<MonsterT>> testarrayoftables;
1094 (lhs.testarrayoftables == rhs.testarrayoftables) &&
1264 const flatbuffers::Vector<flatbuffers::Offset<Monster>> *testarrayoftables() const {
1530 verifier.VerifyVector(testarrayoftables()) &&
1531 verifier.VerifyVectorOfTables(testarrayoftables()) &&
1654 …ftables(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<Monster>>> testarrayoftables) {
1655 fbb_.AddOffset(Monster::VT_TESTARRAYOFTABLES, testarrayoftables);
1790 flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<Monster>>> testarrayoftables = 0,
1861 builder_.add_testarrayoftables(testarrayoftables);
1890 const std::vector<flatbuffers::Offset<Monster>> *testarrayoftables = nullptr,
[all …]
Dmonster_test_generated.lobster217 def testarrayoftables(i:int):
371 def MonsterAddTestarrayoftables(b_:flatbuffers_builder, testarrayoftables:int):
372 b_.PrependUOffsetTRelativeSlot(11, testarrayoftables, 0)
Dmonster_test_generated.rs986 if let Some(x) = args.testarrayoftables { builder.add_testarrayoftables(x); } in create()
1104 …pub fn testarrayoftables(&self) -> Option<flatbuffers::Vector<flatbuffers::ForwardsUOffset<Monster… in testarrayoftables() method
1363 …pub testarrayoftables: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a , flatbuffers::Forward… field
1415 testarrayoftables: None, in default()
1501 …pub fn add_testarrayoftables(&mut self, testarrayoftables: flatbuffers::WIPOffset<flatbuffers::Vec… in add_testarrayoftables()
1502 …b_.push_slot_always::<flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFTABLES, testarrayoftables); in add_testarrayoftables()
Dmonster_test_my_game.example_generated.dart705 …List<Monster> get testarrayoftables => const fb.ListReader<Monster>(Monster.reader).vTableGet(_bc,…
759 …st, test4: $test4, testarrayofstring: $testarrayofstring, testarrayoftables: $testarrayoftables, e…
1036 List<MonsterObjectBuilder> testarrayoftables,
1084 _testarrayoftables = testarrayoftables,
Dtest.cpp307 auto vecoftables = monster->testarrayoftables(); in AccessFlatBufferTest()
517 auto &vecoftables = monster2->testarrayoftables; in ObjectFlatBuffersTest()
Dmonster_test_generated.js1089 MyGame.Example.Monster.prototype.testarrayoftables = function(index, obj) { method in MyGame.Example.Monster
Dmonster_test_generated.ts998 testarrayoftables(index: number, obj?:MyGame.Example.Monster):MyGame.Example.Monster|null { method in MyGame.Example.Monster
/external/flatbuffers/tests/MyGame/Example/
DMonster.php682 …$inventory, $color, $test_type, $test, $test4, $testarrayofstring, $testarrayoftables, $enemy, $te… argument
695 self::addTestarrayoftables($builder, $testarrayoftables);
909 public static function addTestarrayoftables(FlatBufferBuilder $builder, $testarrayoftables) argument
911 $builder->addOffsetX(11, $testarrayoftables, 0);
DMonster.java49 public Monster testarrayoftables(int j) { return testarrayoftables(new Monster(), j); } in testarrayoftables() method in Monster
50 …public Monster testarrayoftables(Monster obj, int j) { int o = __offset(26); return o != 0 ? obj._… in testarrayoftables() method in Monster
DMonster.lua539 …Monster.AddTestarrayoftables(builder, testarrayoftables) builder:PrependUOffsetTRelativeSlot(11, t…
DMonster.go762 func MonsterAddTestarrayoftables(builder *flatbuffers.Builder, testarrayoftables flatbuffers.UOffse…
763 builder.PrependUOffsetTSlot(11, flatbuffers.UOffsetT(testarrayoftables), 0)
DMonster.py633 …bles(builder, testarrayoftables): builder.PrependUOffsetTRelativeSlot(11, flatbuffers.number_types… argument
/external/flatbuffers/dart/test/
Dflat_buffers_test.dart62testarrayoftables: null, enemy: null, testnestedflatbuffer: null, testempty: null, testbool: false…
Dmonster_test_my_game.example_generated.dart707 …List<Monster> get testarrayoftables => const fb.ListReader<Monster>(Monster.reader).vTableGet(_bc,…
761 …st, test4: $test4, testarrayofstring: $testarrayofstring, testarrayoftables: $testarrayoftables, e…
1038 List<MonsterObjectBuilder> testarrayoftables,
1086 _testarrayoftables = testarrayoftables,
/external/flatbuffers/tests/rust_usage_test/tests/
Dintegration_test.rs609 testarrayoftables: Some(v), ..Default::default()}); in vector_of_table_store()
610 assert_eq!(m.testarrayoftables().unwrap().len(), 2); in vector_of_table_store()
611 assert_eq!(m.testarrayoftables().unwrap().get(0).hp(), 55); in vector_of_table_store()
612 assert_eq!(m.testarrayoftables().unwrap().get(0).name(), "foo"); in vector_of_table_store()
613 assert_eq!(m.testarrayoftables().unwrap().get(1).hp(), 100); in vector_of_table_store()
614 assert_eq!(m.testarrayoftables().unwrap().get(1).name(), "bar"); in vector_of_table_store()