/external/flatbuffers/tests/MyGame/Example/ |
D | MonsterT.java | 36 private boolean testbool; field in MonsterT 134 public boolean getTestbool() { return testbool; } in getTestbool() 136 public void setTestbool(boolean testbool) { this.testbool = testbool; } in setTestbool() argument 329 this.testbool = false; in MonsterT()
|
D | Monster.kt | 244 val testbool : Boolean constant 249 fun mutateTestbool(testbool: Boolean) : Boolean { in mutateTestbool() 252 bb.put(o + bb_pos, (if(testbool) 1 else 0).toByte()) in mutateTestbool() 1065 …fun addTestbool(builder: FlatBufferBuilder, testbool: Boolean) = builder.addBoolean(15, testbool, … in startTestnestedflatbufferVector()
|
/external/flatbuffers/tests/swift/Wasm.tests/Tests/FlatBuffers.Test.Swift.WasmTests/ |
D | FlatBuffersMonsterWriterTests.swift | 197 Monster.add(testbool: true, &fbb) in createMonster() 220 XCTAssertTrue(monster.mutate(testbool: false)) in mutateMonster() 221 XCTAssertEqual(monster.testbool, false) in mutateMonster() 222 XCTAssertTrue(monster.mutate(testbool: true)) in mutateMonster() 306 XCTAssertEqual(monster.testbool, true) in readFlatbufferMonster() 357 XCTAssertEqual(monster.testbool, true) in readObjectApi()
|
D | monster_test_generated.swift | 1136 case testbool = 34 1224 …public var testbool: Bool { let o = _accessor.offset(VTOFFSET.testbool.v); return o == 0 ? false :… variable 1225 …sult public func mutate(testbool: Bool) -> Bool {let o = _accessor.offset(VTOFFSET.testbool.v); r… in mutate() 1367 …public static func add(testbool: Bool, _ fbb: inout FlatBufferBuilder) { fbb.add(element: testbool… in add() 1368 at: VTOFFSET.testbool.p) } in add() 1438 testbool: Bool = false, 1501 MyGame_Example_Monster.add(testbool: testbool, &fbb) 1662 MyGame_Example_Monster.add(testbool: obj.testbool, &builder) in pack() 1744 … try _v.visit(field: VTOFFSET.testbool.p, fieldName: "testbool", required: false, type: Bool.self) in verify<T>() 1832 case testbool = "testbool" [all …]
|
/external/apache-velocity-engine/velocity-engine-core/src/test/resources/templates/ |
D | velocimacro.vm | 72 #testbool(true) 73 #testbool(false)
|
D | VM_global_library.vm | 18 #macro( testbool $b )
|
/external/flatbuffers/tests/fuzzer/ |
D | monster_fuzzer.dict | 59 "testbool"
|
D | parser_fuzzer.dict | 92 "testbool"
|
/external/flatbuffers/tests/ |
D | monsterdata_test.json | 71 testbool: true,
|
D | monsterdata_test.golden | 62 testbool: true,
|
D | monster_test_my_game.example_generated.dart | 1141 bool get testbool => const fb.BoolReader().vTableGet(_bc, _bcOffset, 34, false); 1205 …stedflatbuffer: ${testnestedflatbuffer}, testempty: ${testempty}, testbool: ${testbool}, testhashs… 1223 testbool: testbool, 1295 bool testbool; 1358 this.testbool = false, 1482 fbBuilder.addBool(15, testbool); 1536 …stedflatbuffer: ${testnestedflatbuffer}, testempty: ${testempty}, testbool: ${testbool}, testhashs… 1613 int addTestbool(bool? testbool) { 1614 fbBuilder.addBool(15, testbool); 1885 bool? testbool, [all …]
|
D | monster_test_generated.h | 1283 bool testbool = false; 1515 bool testbool() const { 1996 void add_testbool(bool testbool) { 1997 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0); 2165 bool testbool = false, 2271 builder_.add_testbool(testbool); 2293 bool testbool = false, 2377 testbool, 2884 (lhs.testbool == rhs.testbool) && 2949 testbool(o.testbool), [all …]
|
/external/flatbuffers/tests/ts/my-game/example/ |
D | monster.d.ts | 55 testbool(): boolean; 174 static addTestbool(builder: flatbuffers.Builder, testbool: boolean): void; 276 testbool: boolean; 323 …rT | null, testnestedflatbuffer?: (number)[], testempty?: StatT | null, testbool?: boolean, testha…
|
D | monster.js | 150 testbool() { method in Monster 717 static addTestbool(builder, testbool) { argument 718 builder.addFieldInt8(15, +testbool, +false); 1018 …), (this.testempty() !== null ? this.testempty().unpack() : null), this.testbool(), this.testhashs… 1053 _o.testbool = this.testbool(); 1115 …tables = [], enemy = null, testnestedflatbuffer = [], testempty = null, testbool = false, testhash… argument 1130 this.testbool = testbool; 1221 Monster.addTestbool(builder, this.testbool);
|
D | monster.ts | 193 testbool():boolean { 932 static addTestbool(builder:flatbuffers.Builder, testbool:boolean) { 933 builder.addFieldInt8(15, +testbool, +false); 1332 this.testbool(), 1410 _o.testbool = this.testbool(); 1484 public testbool: boolean = false, 1578 Monster.addTestbool(builder, this.testbool);
|
/external/flatbuffers/tests/monster_test/my_game/example/ |
D | monster_generated.rs | 163 builder.add_testbool(args.testbool); in create() 220 let testbool = self.testbool(); in unpack() localVariable 349 testbool, in unpack() 517 pub fn testbool(&self) -> bool { in testbool() method 1096 pub testbool: bool, field 1162 testbool: false, in default() 1275 pub fn add_testbool(&mut self, testbool: bool) { in add_testbool() 1276 self.fbb_.push_slot::<bool>(Monster::VT_TESTBOOL, testbool, false); in add_testbool() 1521 ds.field("testbool", &self.testbool()); in fmt() 1639 pub testbool: bool, field [all …]
|
/external/flatbuffers/tests/monster_test_serialize/my_game/example/ |
D | monster_generated.rs | 165 builder.add_testbool(args.testbool); in create() 222 let testbool = self.testbool(); in unpack() localVariable 351 testbool, in unpack() 519 pub fn testbool(&self) -> bool { in testbool() method 1098 pub testbool: bool, field 1164 testbool: false, in default() 1285 s.serialize_field("testbool", &self.testbool())?; in serialize() 1502 pub fn add_testbool(&mut self, testbool: bool) { in add_testbool() 1503 self.fbb_.push_slot::<bool>(Monster::VT_TESTBOOL, testbool, false); in add_testbool() 1748 ds.field("testbool", &self.testbool()); in fmt() [all …]
|
/external/flatbuffers/tests/swift/tests/Tests/FlatBuffers.Test.SwiftTests/ |
D | FlatBuffersMonsterWriterTests.swift | 280 Monster.add(testbool: true, &fbb) in createMonster() 384 XCTAssertEqual(monster.testbool, true) in readFlatbufferMonster() 435 XCTAssertEqual(monster.testbool, true) in readObjectApi()
|
D | monster_test_generated.swift | 1136 case testbool = 34 1224 …public var testbool: Bool { let o = _accessor.offset(VTOFFSET.testbool.v); return o == 0 ? false :… variable 1225 …sult public func mutate(testbool: Bool) -> Bool {let o = _accessor.offset(VTOFFSET.testbool.v); r… in mutate() 1367 …public static func add(testbool: Bool, _ fbb: inout FlatBufferBuilder) { fbb.add(element: testbool… in add() 1368 at: VTOFFSET.testbool.p) } in add() 1438 testbool: Bool = false, 1501 MyGame_Example_Monster.add(testbool: testbool, &fbb) 1662 MyGame_Example_Monster.add(testbool: obj.testbool, &builder) in pack() 1744 … try _v.visit(field: VTOFFSET.testbool.p, fieldName: "testbool", required: false, type: Bool.self) in verify<T>() 1832 case testbool = "testbool" [all …]
|
/external/flatbuffers/dart/test/ |
D | monster_test_my_game.example_generated.dart | 1141 bool get testbool => const fb.BoolReader().vTableGet(_bc, _bcOffset, 34, false); 1205 …stedflatbuffer: ${testnestedflatbuffer}, testempty: ${testempty}, testbool: ${testbool}, testhashs… 1223 testbool: testbool, 1295 bool testbool; 1358 this.testbool = false, 1482 fbBuilder.addBool(15, testbool); 1536 …stedflatbuffer: ${testnestedflatbuffer}, testempty: ${testempty}, testbool: ${testbool}, testhashs… 1613 int addTestbool(bool? testbool) { 1614 fbBuilder.addBool(15, testbool); 1885 bool? testbool, [all …]
|
/external/flatbuffers/tests/monster_test_suffix/filesuffix_only/ |
D | monster_test_suffix.h | 1275 bool testbool = false; 1506 bool testbool() const { 1987 void add_testbool(bool testbool) { 1988 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0); 2156 bool testbool = false, 2262 builder_.add_testbool(testbool); 2284 bool testbool = false, 2368 testbool, 2874 (lhs.testbool == rhs.testbool) && 2939 testbool(o.testbool), [all …]
|
/external/flatbuffers/tests/monster_test_suffix/ext_only/ |
D | monster_test_generated.hpp | 1275 bool testbool = false; 1506 bool testbool() const { 1987 void add_testbool(bool testbool) { 1988 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0); 2156 bool testbool = false, 2262 builder_.add_testbool(testbool); 2284 bool testbool = false, 2368 testbool, 2874 (lhs.testbool == rhs.testbool) && 2939 testbool(o.testbool), [all …]
|
/external/flatbuffers/tests/monster_test_suffix/ |
D | monster_test_suffix.hpp | 1275 bool testbool = false; 1506 bool testbool() const { 1987 void add_testbool(bool testbool) { 1988 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0); 2156 bool testbool = false, 2262 builder_.add_testbool(testbool); 2284 bool testbool = false, 2368 testbool, 2874 (lhs.testbool == rhs.testbool) && 2939 testbool(o.testbool), [all …]
|
/external/flatbuffers/tests/nim/tests/mygame/ |
D | test.nim | 50 check(monster.testbool == true)
|
/external/flatbuffers/tests/ts/ |
D | JavaScriptTest.js | 176 assert.strictEqual(monster.testbool, true); 233 assert.strictEqual(monster.testbool(), true);
|