/aosp_15_r20/external/flatbuffers/tests/MyGame/Example/ |
H A D | MonsterT.java | 33 private boolean[] testarrayofbools; field in MonsterT 150 public boolean[] getTestarrayofbools() { return testarrayofbools; } in getTestarrayofbools() 152 …public void setTestarrayofbools(boolean[] testarrayofbools) { this.testarrayofbools = testarrayofb… in setTestarrayofbools() argument 286 this.testarrayofbools = null; in MonsterT()
|
H A D | Monster.py | 913 …bools(builder, testarrayofbools): builder.PrependUOffsetTRelativeSlot(24, flatbuffers.number_types… argument 914 def AddTestarrayofbools(builder, testarrayofbools): argument 915 return MonsterAddTestarrayofbools(builder, testarrayofbools) 1101 self.testarrayofbools = None # type: List[bool] 1205 self.testarrayofbools = [] 1207 self.testarrayofbools.append(monster.Testarrayofbools(i)) 1209 self.testarrayofbools = monster.TestarrayofboolsAsNumpy() 1375 if self.testarrayofbools is not None: 1376 if np is not None and type(self.testarrayofbools) is np.ndarray: 1377 testarrayofbools = builder.CreateNumpyVector(self.testarrayofbools) [all …]
|
H A D | Monster.kt | 354 fun testarrayofbools(j: Int) : Boolean { in testarrayofbools() method in MyGame.Example.Monster 368 fun mutateTestarrayofbools(j: Int, testarrayofbools: Boolean) : Boolean { in testarrayofboolsInByteBuffer() 371 bb.put(__vector(o) + j * 1, (if(testarrayofbools) 1 else 0).toByte()) in testarrayofboolsInByteBuffer() 944 …Testarrayofbools(builder: FlatBufferBuilder, testarrayofbools: Int) = builder.addOffset(24, testar… in startTestnestedflatbufferVector()
|
H A D | Monster.php | 770 …fnv1a, $testhashu32_fnv1a, $testhashs64_fnv1a, $testhashu64_fnv1a, $testarrayofbools, $testf, $tes… argument 796 self::addTestarrayofbools($builder, $testarrayofbools); 1181 public static function addTestarrayofbools(FlatBufferBuilder $builder, $testarrayofbools) argument 1183 $builder->addOffsetX(24, $testarrayofbools, 0);
|
/aosp_15_r20/external/flatbuffers/tests/monster_test/my_game/example/ |
H A D | monster_generated.rs | 127 if let Some(x) = args.testarrayofbools { builder.add_testarrayofbools(x); } in create() 213 let testarrayofbools = self.testarrayofbools().map(|x| { in unpack() localVariable 334 testarrayofbools, in unpack() 476 pub fn testarrayofbools(&self) -> Option<&'a [bool]> { in testarrayofbools() method 799 pub testarrayofbools: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a, bool>>>, field 857 testarrayofbools: None, in default() 989 …pub fn add_testarrayofbools(&mut self, testarrayofbools: flatbuffers::WIPOffset<flatbuffers::Vecto… in add_testarrayofbools() 990 …fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools); in add_testarrayofbools() 1176 ds.field("testarrayofbools", &self.testarrayofbools()); in fmt() 1286 pub testarrayofbools: Option<Vec<bool>>, field [all …]
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_serialize/my_game/example/ |
H A D | monster_generated.rs | 129 if let Some(x) = args.testarrayofbools { builder.add_testarrayofbools(x); } in create() 215 let testarrayofbools = self.testarrayofbools().map(|x| { in unpack() localVariable 336 testarrayofbools, in unpack() 478 pub fn testarrayofbools(&self) -> Option<&'a [bool]> { in testarrayofbools() method 801 pub testarrayofbools: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a, bool>>>, field 859 testarrayofbools: None, in default() 972 if let Some(f) = self.testarrayofbools() { in serialize() 1208 …pub fn add_testarrayofbools(&mut self, testarrayofbools: flatbuffers::WIPOffset<flatbuffers::Vecto… in add_testarrayofbools() 1209 …fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools); in add_testarrayofbools() 1395 ds.field("testarrayofbools", &self.testarrayofbools()); in fmt() [all …]
|
/aosp_15_r20/external/flatbuffers/tests/FlatBuffers.Test.Swift.Wasm/Tests/FlatBuffers.Test.Swift.WasmTests/ |
H A D | monster_test_generated.swift | 1157 case testarrayofbools = 52 1246 …public var hasTestarrayofbools: Bool { let o = _accessor.offset(VTOFFSET.testarrayofbools.v); retu… 1247 …public var testarrayofboolsCount: Int32 { let o = _accessor.offset(VTOFFSET.testarrayofbools.v); r… 1248 …public func testarrayofbools(at index: Int32) -> Bool { let o = _accessor.offset(VTOFFSET.testarra… in testarrayofbools() function 1249 …public var testarrayofbools: [Bool] { return _accessor.getVector(at: VTOFFSET.testarrayofbools.v) … variable 1250 …testarrayofbools: Bool, at index: Int32) -> Bool { let o = _accessor.offset(VTOFFSET.testarrayofbo… in mutate() 1365 …nc addVectorOf(testarrayofbools: Offset, _ fbb: inout FlatBufferBuilder) { fbb.add(offset: testarr… in addVectorOf() 1427 testarrayofboolsVectorOffset testarrayofbools: Offset = Offset(), 1482 MyGame_Example_Monster.addVectorOf(testarrayofbools: testarrayofbools, &fbb) 1568 let __testarrayofbools = builder.createVector(obj.testarrayofbools) in pack() [all …]
|
H A D | FlatBuffersMonsterWriterTests.swift | 111 let values = monster.testarrayofbools in testArrayOfBools() 116 XCTAssertEqual(boolArray[Int(i)], monster.testarrayofbools(at: i)) in testArrayOfBools() 302 XCTAssertEqual(monster.testarrayofbools.isEmpty, true) in readFlatbufferMonster() 304 XCTAssertEqual(monster.testarrayofbools.isEmpty, false) in readFlatbufferMonster()
|
/aosp_15_r20/external/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/ |
H A D | monster_test_generated.swift | 1157 case testarrayofbools = 52 1246 …public var hasTestarrayofbools: Bool { let o = _accessor.offset(VTOFFSET.testarrayofbools.v); retu… 1247 …public var testarrayofboolsCount: Int32 { let o = _accessor.offset(VTOFFSET.testarrayofbools.v); r… 1248 …public func testarrayofbools(at index: Int32) -> Bool { let o = _accessor.offset(VTOFFSET.testarra… in testarrayofbools() function 1249 …public var testarrayofbools: [Bool] { return _accessor.getVector(at: VTOFFSET.testarrayofbools.v) … variable 1250 …testarrayofbools: Bool, at index: Int32) -> Bool { let o = _accessor.offset(VTOFFSET.testarrayofbo… in mutate() 1365 …nc addVectorOf(testarrayofbools: Offset, _ fbb: inout FlatBufferBuilder) { fbb.add(offset: testarr… in addVectorOf() 1427 testarrayofboolsVectorOffset testarrayofbools: Offset = Offset(), 1482 MyGame_Example_Monster.addVectorOf(testarrayofbools: testarrayofbools, &fbb) 1568 let __testarrayofbools = builder.createVector(obj.testarrayofbools) in pack() [all …]
|
H A D | FlatBuffersMonsterWriterTests.swift | 137 let values = monster.testarrayofbools in testArrayOfBools() 142 XCTAssertEqual(boolArray[Int(i)], monster.testarrayofbools(at: i)) in testArrayOfBools() 328 XCTAssertEqual(monster.testarrayofbools.isEmpty, true) in readFlatbufferMonster() 330 XCTAssertEqual(monster.testarrayofbools.isEmpty, false) in readFlatbufferMonster()
|
/aosp_15_r20/external/flatbuffers/tests/my-game/example/ |
H A D | monster.js | 257 testarrayofbools(index) { method in Monster 897 …hs64Fnv1a(), this.testhashu64Fnv1a(), this.bb.createScalarList(this.testarrayofbools.bind(this), t… 941 …_o.testarrayofbools = this.bb.createScalarList(this.testarrayofbools.bind(this), this.testarrayofb… 986 … 0, testhashs64Fnv1a = BigInt('0'), testhashu64Fnv1a = BigInt('0'), testarrayofbools = [], testf =… argument 1010 this.testarrayofbools = testarrayofbools; 1051 … const testarrayofbools = Monster.createTestarrayofboolsVector(builder, this.testarrayofbools); 1093 Monster.addTestarrayofbools(builder, testarrayofbools);
|
H A D | monster.ts | 335 testarrayofbools(index: number):boolean|null { method in Monster 1179 this.bb!.createScalarList(this.testarrayofbools.bind(this), this.testarrayofboolsLength()), 1249 …_o.testarrayofbools = this.bb!.createScalarList(this.testarrayofbools.bind(this), this.testarrayof… 1315 public testarrayofbools: (boolean)[] = [], 1358 const testarrayofbools = Monster.createTestarrayofboolsVector(builder, this.testarrayofbools); constant 1401 Monster.addTestarrayofbools(builder, testarrayofbools);
|
/aosp_15_r20/external/flatbuffers/tests/ |
H A D | monster_test_generated.py | 1602 …bools(builder, testarrayofbools): builder.PrependUOffsetTRelativeSlot(24, flatbuffers.number_types… argument 1686 self.testarrayofbools = None # type: List[bool] 1790 self.testarrayofbools = [] 1792 self.testarrayofbools.append(monster.Testarrayofbools(i)) 1794 self.testarrayofbools = monster.TestarrayofboolsAsNumpy() 1960 if self.testarrayofbools is not None: 1961 if np is not None and type(self.testarrayofbools) is np.ndarray: 1962 testarrayofbools = builder.CreateNumpyVector(self.testarrayofbools) 1964 MonsterStartTestarrayofboolsVector(builder, len(self.testarrayofbools)) 1965 for i in reversed(range(len(self.testarrayofbools))): [all …]
|
H A D | monster_test_generated.h | 1284 std::vector<bool> testarrayofbools{}; 1536 const flatbuffers::Vector<uint8_t> *testarrayofbools() const { 1773 verifier.VerifyVector(testarrayofbools()) && 1930 void add_testarrayofbools(flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools) { 1931 fbb_.AddOffset(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools); 2057 flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools = 0, 2118 builder_.add_testarrayofbools(testarrayofbools); 2169 const std::vector<uint8_t> *testarrayofbools = nullptr, 2205 auto testarrayofbools__ = testarrayofbools ? _fbb.CreateVector<uint8_t>(*testarrayofbools) : 0; 2743 (lhs.testarrayofbools == rhs.testarrayofbools) && [all …]
|
H A D | monster_test_my_game.example_generated.dart | 1217 …List<bool>? get testarrayofbools => const fb.ListReader<bool>(fb.BoolReader()).vTableGetNullable(_… 1264 …testhashs64Fnv1a}, testhashu64Fnv1a: ${testhashu64Fnv1a}, testarrayofbools: ${testarrayofbools}, t… 1291 …testarrayofbools: const fb.ListReader<bool>(fb.BoolReader(), lazy: false).vTableGetNullable(_bc, _… 1355 List<bool>? testarrayofbools; 1410 this.testarrayofbools, 1461 final int? testarrayofboolsOffset = testarrayofbools == null ? null 1462 : fbBuilder.writeListBool(testarrayofbools!); 1563 …testhashs64Fnv1a}, testhashu64Fnv1a: ${testhashu64Fnv1a}, testarrayofbools: ${testarrayofbools}, t… 1881 List<bool>? testarrayofbools, 1935 _testarrayofbools = testarrayofbools,
|
H A D | monsterdata_test.json | 66 testarrayofbools: [
|
H A D | monsterdata_test.afb | 40 …VOffset16 | 0x0054 (84) | offset to field `testarrayofbools` (id: 24) 96 …UOffset32 | 0x000000A8 (168) Loc: +0x0174 | offset to field `testarrayofbools` (vector) 161 vector (MyGame.Example.Monster.testarrayofbools):
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/filesuffix_only/ |
H A D | monster_test_suffix.h | 1284 std::vector<bool> testarrayofbools{}; 1536 const flatbuffers::Vector<uint8_t> *testarrayofbools() const { 1773 verifier.VerifyVector(testarrayofbools()) && 1930 void add_testarrayofbools(flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools) { 1931 fbb_.AddOffset(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools); 2057 flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools = 0, 2118 builder_.add_testarrayofbools(testarrayofbools); 2169 const std::vector<uint8_t> *testarrayofbools = nullptr, 2205 auto testarrayofbools__ = testarrayofbools ? _fbb.CreateVector<uint8_t>(*testarrayofbools) : 0; 2743 (lhs.testarrayofbools == rhs.testarrayofbools) && [all …]
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/ext_only/ |
H A D | monster_test_generated.hpp | 1284 std::vector<bool> testarrayofbools{}; 1536 const flatbuffers::Vector<uint8_t> *testarrayofbools() const { 1773 verifier.VerifyVector(testarrayofbools()) && 1930 void add_testarrayofbools(flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools) { 1931 fbb_.AddOffset(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools); 2057 flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools = 0, 2118 builder_.add_testarrayofbools(testarrayofbools); 2169 const std::vector<uint8_t> *testarrayofbools = nullptr, 2205 auto testarrayofbools__ = testarrayofbools ? _fbb.CreateVector<uint8_t>(*testarrayofbools) : 0; 2743 (lhs.testarrayofbools == rhs.testarrayofbools) && [all …]
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/ |
H A D | monster_test_suffix.hpp | 1284 std::vector<bool> testarrayofbools{}; 1536 const flatbuffers::Vector<uint8_t> *testarrayofbools() const { 1773 verifier.VerifyVector(testarrayofbools()) && 1930 void add_testarrayofbools(flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools) { 1931 fbb_.AddOffset(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools); 2057 flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools = 0, 2118 builder_.add_testarrayofbools(testarrayofbools); 2169 const std::vector<uint8_t> *testarrayofbools = nullptr, 2205 auto testarrayofbools__ = testarrayofbools ? _fbb.CreateVector<uint8_t>(*testarrayofbools) : 0; 2743 (lhs.testarrayofbools == rhs.testarrayofbools) && [all …]
|
/aosp_15_r20/external/flatbuffers/tests/cpp17/generated_cpp17/ |
H A D | monster_test_generated.h | 1296 std::vector<bool> testarrayofbools{}; 1549 const flatbuffers::Vector<uint8_t> *testarrayofbools() const { 1773 else if constexpr (Index == 23) return testarrayofbools(); 1843 verifier.VerifyVector(testarrayofbools()) && 2000 void add_testarrayofbools(flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools) { 2001 fbb_.AddOffset(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools); 2127 flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools = 0, 2188 builder_.add_testarrayofbools(testarrayofbools); 2304 const std::vector<uint8_t> *testarrayofbools = nullptr, 2340 auto testarrayofbools__ = testarrayofbools ? _fbb.CreateVector<uint8_t>(*testarrayofbools) : 0; [all …]
|
/aosp_15_r20/external/flatbuffers/dart/test/ |
H A D | monster_test_my_game.example_generated.dart | 1077 …List<bool>? get testarrayofbools => const fb.ListReader<bool>(fb.BoolReader()).vTableGetNullable(_… 1121 …a: $testhashs64Fnv1a, testhashu64Fnv1a: $testhashu64Fnv1a, testarrayofbools: $testarrayofbools, te… 1148 …testarrayofbools: const fb.ListReader<bool>(fb.BoolReader(), lazy: false).vTableGetNullable(_bc, _… 1209 List<bool>? testarrayofbools; 1261 this.testarrayofbools, 1309 final int? testarrayofboolsOffset = testarrayofbools == null ? null 1310 : fbBuilder.writeListBool(testarrayofbools!); 1406 …a: $testhashs64Fnv1a, testhashu64Fnv1a: $testhashu64Fnv1a, testarrayofbools: $testarrayofbools, te… 1709 List<bool>? testarrayofbools, 1760 _testarrayofbools = testarrayofbools,
|
H A D | flat_buffers_test.dart | 77 'testhashu64Fnv1a: 0, testarrayofbools: null, testf: 3.14159, ' 100 'testhashu64Fnv1a: 0, testarrayofbools: null, testf: 3.14159, ' 121 'testarrayofbools: [true, false, true], testf: 3.14159, testf2: 3.0, ' 793 ..testarrayofbools = [false, true, false]
|
/aosp_15_r20/external/flatbuffers/tests/fuzzer/ |
H A D | monster_fuzzer.dict | 58 "testarrayofbools"
|
H A D | parser_fuzzer.dict | 91 "testarrayofbools"
|