Home
last modified time | relevance | path

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

/external/flatbuffers/tests/
Dmonster_test_generated.h1120 std::vector<Ability> testarrayofsortedstruct;
1188 (lhs.testarrayofsortedstruct == rhs.testarrayofsortedstruct) &&
1456 const flatbuffers::Vector<const Ability *> *testarrayofsortedstruct() const {
1637 verifier.VerifyVector(testarrayofsortedstruct()) &&
1789 …ofsortedstruct(flatbuffers::Offset<flatbuffers::Vector<const Ability *>> testarrayofsortedstruct) {
1790 fbb_.AddOffset(Monster::VT_TESTARRAYOFSORTEDSTRUCT, testarrayofsortedstruct);
1889 flatbuffers::Offset<flatbuffers::Vector<const Ability *>> testarrayofsortedstruct = 0,
1929 builder_.add_testarrayofsortedstruct(testarrayofsortedstruct);
1989 const std::vector<Ability> *testarrayofsortedstruct = nullptr,
2016 …auto testarrayofsortedstruct__ = testarrayofsortedstruct ? _fbb.CreateVectorOfStructs<Ability>(*te…
[all …]
Dmonster_test.fbs69 testarrayofsortedstruct:[Ability] (id: 29);
Dmonster_test_generated.lobster263 def testarrayofsortedstruct(i:int):
431 def MonsterAddTestarrayofsortedstruct(b_:flatbuffers_builder, testarrayofsortedstruct:int):
432 b_.PrependUOffsetTRelativeSlot(29, testarrayofsortedstruct, 0)
Dmonster_test_generated.rs968 if let Some(x) = args.testarrayofsortedstruct { builder.add_testarrayofsortedstruct(x); } in create()
1180 pub fn testarrayofsortedstruct(&self) -> Option<&'a [Ability]> { in testarrayofsortedstruct() method
1376 pub testarrayofsortedstruct: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a , Ability>>>, field
1428 testarrayofsortedstruct: None, in default()
1568 …pub fn add_testarrayofsortedstruct(&mut self, testarrayofsortedstruct: flatbuffers::WIPOffset<flat… in add_testarrayofsortedstruct()
1569 …_always::<flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFSORTEDSTRUCT, testarrayofsortedstruct); in add_testarrayofsortedstruct()
Dmonster_test_my_game.example_generated.dart723 …List<Ability> get testarrayofsortedstruct => const fb.ListReader<Ability>(Ability.reader).vTableGe…
759 …: $testf3, testarrayofstring2: $testarrayofstring2, testarrayofsortedstruct: $testarrayofsortedstr…
1054 List<AbilityObjectBuilder> testarrayofsortedstruct,
1102 _testarrayofsortedstruct = testarrayofsortedstruct,
Dmonster_test_generated.ts1380 testarrayofsortedstruct(index: number, obj?:MyGame.Example.Ability):MyGame.Example.Ability|null { method in MyGame.Example.Monster
Dmonster_test_generated.js1508 MyGame.Example.Monster.prototype.testarrayofsortedstruct = function(index, obj) { method in MyGame.Example.Monster
Dtest.cpp320 auto vecofstructs = monster->testarrayofsortedstruct(); in AccessFlatBufferTest()
/external/flatbuffers/tests/MyGame/Example/
DMonster.php682 …estarrayofbools, $testf, $testf2, $testf3, $testarrayofstring2, $testarrayofsortedstruct, $flex, $… argument
713 self::addTestarrayofsortedstruct($builder, $testarrayofsortedstruct);
1185 …ic static function addTestarrayofsortedstruct(FlatBufferBuilder $builder, $testarrayofsortedstruct) argument
1187 $builder->addOffsetX(29, $testarrayofsortedstruct, 0);
DMonster.java96 …public Ability testarrayofsortedstruct(int j) { return testarrayofsortedstruct(new Ability(), j); } in testarrayofsortedstruct() method in Monster
97 …public Ability testarrayofsortedstruct(Ability obj, int j) { int o = __offset(62); return o != 0 ?… in testarrayofsortedstruct() method in Monster
DMonster.lua561 …estarrayofsortedstruct(builder, testarrayofsortedstruct) builder:PrependUOffsetTRelativeSlot(29, t…
DMonster.py655 …uilder, testarrayofsortedstruct): builder.PrependUOffsetTRelativeSlot(29, flatbuffers.number_types… argument
DMonster.go918 func MonsterAddTestarrayofsortedstruct(builder *flatbuffers.Builder, testarrayofsortedstruct flatbu…
919 builder.PrependUOffsetTSlot(29, flatbuffers.UOffsetT(testarrayofsortedstruct), 0)
/external/flatbuffers/dart/test/
Dflat_buffers_test.dart62testarrayofsortedstruct: null, flex: null, test5: null, vectorOfLongs: null, vectorOfDoubles: null…
Dmonster_test_my_game.example_generated.dart725 …List<Ability> get testarrayofsortedstruct => const fb.ListReader<Ability>(Ability.reader).vTableGe…
761 …: $testf3, testarrayofstring2: $testarrayofstring2, testarrayofsortedstruct: $testarrayofsortedstr…
1056 List<AbilityObjectBuilder> testarrayofsortedstruct,
1104 _testarrayofsortedstruct = testarrayofsortedstruct,
/external/flatbuffers/tests/rust_usage_test/tests/
Dintegration_test.rs709 testarrayofsortedstruct: Some(v), in struct_ability_is_written_with_correct_alignment_in_table_vector()
715 let abilities = mon.testarrayofsortedstruct().unwrap(); in struct_ability_is_written_with_correct_alignment_in_table_vector()