Home
last modified time | relevance | path

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

/external/flatbuffers/tests/
Dmonster_test_generated.h1044 std::vector<Ability> testarrayofsortedstruct;
1112 (lhs.testarrayofsortedstruct == rhs.testarrayofsortedstruct) &&
1375 const flatbuffers::Vector<const Ability *> *testarrayofsortedstruct() const {
1556 verifier.VerifyVector(testarrayofsortedstruct()) &&
1708 …ofsortedstruct(flatbuffers::Offset<flatbuffers::Vector<const Ability *>> testarrayofsortedstruct) {
1709 fbb_.AddOffset(Monster::VT_TESTARRAYOFSORTEDSTRUCT, testarrayofsortedstruct);
1808 flatbuffers::Offset<flatbuffers::Vector<const Ability *>> testarrayofsortedstruct = 0,
1848 builder_.add_testarrayofsortedstruct(testarrayofsortedstruct);
1908 const std::vector<Ability> *testarrayofsortedstruct = nullptr,
1935 …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.rs973 if let Some(x) = args.testarrayofsortedstruct { builder.add_testarrayofsortedstruct(x); } in create()
1185 pub fn testarrayofsortedstruct(&self) -> Option<&'a [Ability]> { in testarrayofsortedstruct() method
1381 pub testarrayofsortedstruct: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a , Ability>>>, field
1433 testarrayofsortedstruct: None, in default()
1573 …pub fn add_testarrayofsortedstruct(&mut self, testarrayofsortedstruct: flatbuffers::WIPOffset<flat… in add_testarrayofsortedstruct()
1574 …_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,
Dtest.cpp320 auto vecofstructs = monster->testarrayofsortedstruct(); in AccessFlatBufferTest()
Dmonster_test_generated.ts1380 testarrayofsortedstruct(index: number, obj?:MyGame.Example.Ability):MyGame.Example.Ability|null { method in MyGame.Example.Monster
Dmonster_test_generated.js1469 MyGame.Example.Monster.prototype.testarrayofsortedstruct = function(index, obj) { method in MyGame.Example.Monster
/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.go828 func MonsterAddTestarrayofsortedstruct(builder *flatbuffers.Builder, testarrayofsortedstruct flatbu…
829 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.rs708 testarrayofsortedstruct: Some(v), in struct_ability_is_written_with_correct_alignment_in_table_vector()
714 let abilities = mon.testarrayofsortedstruct().unwrap(); in struct_ability_is_written_with_correct_alignment_in_table_vector()