/external/flatbuffers/tests/ |
D | monsterdata_test.json | 69 testbool: true,
|
D | monsterdata_test.golden | 62 testbool: true,
|
D | monster_test.fbs | 91 testbool:bool (id:15);
|
D | monster_test_generated.h | 1163 bool testbool; 1199 testbool(false), 1233 (lhs.testbool == rhs.testbool) && 1431 bool testbool() const { 1808 void add_testbool(bool testbool) { 1809 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0); 1939 bool testbool = false, 2019 builder_.add_testbool(testbool); 2041 bool testbool = false, 2110 testbool, [all …]
|
D | monster_test_my_game.example_generated.dart | 756 bool get testbool => const fb.BoolReader().vTableGet(_bc, _bcOffset, 34, false); 807 …estnestedflatbuffer: $testnestedflatbuffer, testempty: $testempty, testbool: $testbool, testhashs3… 886 int addTestbool(bool testbool) { 887 fbBuilder.addBool(15, testbool); 1093 bool testbool, 1142 _testbool = testbool,
|
D | monster_test_generated.lobster | 260 def testbool(): 413 def add_testbool(testbool:int): 414 b_.PrependBoolSlot(15, testbool, 0)
|
D | monster_test_generated.rs | 1107 builder.add_testbool(args.testbool); in create() 1240 pub fn testbool(&self) -> bool { in testbool() method 1482 pub testbool: bool, field 1535 testbool: false, in default() 1634 pub fn add_testbool(&mut self, testbool: bool) { in add_testbool() 1635 self.fbb_.push_slot::<bool>(Monster::VT_TESTBOOL, testbool, false); in add_testbool()
|
D | monster_test_generated.ts | 1124 testbool():boolean { method in MyGame.Example.Monster 2007 static addTestbool(builder:flatbuffers.Builder, testbool:boolean) { 2008 builder.addFieldInt8(15, +testbool, +false); 2548 …latbufferOffset:flatbuffers.Offset, testemptyOffset:flatbuffers.Offset, testbool:boolean, testhash… 2564 Monster.addTestbool(builder, testbool);
|
D | monster_test_generated.js | 1274 MyGame.Example.Monster.prototype.testbool = function() { method in MyGame.Example.Monster 2155 MyGame.Example.Monster.addTestbool = function(builder, testbool) { argument 2156 builder.addFieldInt8(15, +testbool, +false); 2748 …tablesOffset, enemyOffset, testnestedflatbufferOffset, testemptyOffset, testbool, testhashs32Fnv1,… argument 2764 MyGame.Example.Monster.addTestbool(builder, testbool);
|
D | KotlinTest.kt | 139 assert(monster.testbool == true) in TestBuffer()
|
D | JavaScriptTest.js | 160 assert.strictEqual(monster.testbool(), true);
|
/external/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/ |
D | FlatBuffersMonsterWriterTests.swift | 89 Monster1.add(testbool: true, fbb) in createMonster() 179 XCTAssertEqual(monster.testbool, true) in readMonster()
|
D | monster_test_generated.swift | 371 …public var testbool: Bool { let o = _accessor.offset(34); return o == 0 ? false : 0 != _accessor.r… variable 372 …public func mutate(testbool: Byte) -> Bool {let o = _accessor.offset(34); return _accessor.mutate… in mutate() 465 …public static func add(testbool: Bool, _ fbb: FlatBufferBuilder) { fbb.add(condition: testbool, de… in add() 515 testbool: Bool = false, 564 Monster.add(testbool: testbool, fbb)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.kt | 229 val testbool : Boolean constant in MyGame.Example.Monster 234 fun mutateTestbool(testbool: Boolean) : Boolean { in mutateTestbool() 237 bb.put(o + bb_pos, (if(testbool) 1 else 0).toByte()) in mutateTestbool() 835 …fun addTestbool(builder: FlatBufferBuilder, testbool: Boolean) = builder.addBoolean(15, testbool, … in startTestnestedflatbufferVector()
|
D | Monster.java | 75 public boolean testbool() { int o = __offset(34); return o != 0 ? 0!=bb.get(o + bb_pos) : false; } in testbool() method in Monster 76 …lic boolean mutateTestbool(boolean testbool) { int o = __offset(34); if (o != 0) { bb.put(o + bb_p… in mutateTestbool() argument 224 …ic void addTestbool(FlatBufferBuilder builder, boolean testbool) { builder.addBoolean(15, testbool… in addTestbool() argument
|
D | Monster.php | 699 …string, $testarrayoftables, $enemy, $testnestedflatbuffer, $testempty, $testbool, $testhashs32_fnv… argument 716 self::addTestbool($builder, $testbool); 1015 public static function addTestbool(FlatBufferBuilder $builder, $testbool) argument 1017 $builder->addBoolX(15, $testbool, false);
|
D | Monster.py | 742 def MonsterAddTestbool(builder, testbool): builder.PrependBoolSlot(15, testbool, 0) argument 825 self.testbool = False # type: bool 922 self.testbool = monster.Testbool() 1214 MonsterAddTestbool(builder, self.testbool)
|
D | Monster.lua | 552 function Monster.AddTestbool(builder, testbool) builder:PrependBoolSlot(15, testbool, 0) end
|
D | Monster.cs | 71 …lic bool MutateTestbool(bool testbool) { int o = __p.__offset(34); if (o != 0) { __p.bb.Put(o + __… in MutateTestbool() 220 …static void AddTestbool(FlatBufferBuilder builder, bool testbool) { builder.AddBool(15, testbool, … in AddTestbool()
|
D | Monster.go | 1312 func MonsterAddTestbool(builder *flatbuffers.Builder, testbool bool) { 1313 builder.PrependBoolSlot(15, testbool, false)
|
/external/flatbuffers/dart/test/ |
D | monster_test_my_game.example_generated.dart | 758 bool get testbool => const fb.BoolReader().vTableGet(_bc, _bcOffset, 34, false); 809 …estnestedflatbuffer: $testnestedflatbuffer, testempty: $testempty, testbool: $testbool, testhashs3… 888 int addTestbool(bool testbool) { 889 fbBuilder.addBool(15, testbool); 1095 bool testbool, 1144 _testbool = testbool,
|
D | flat_buffers_test.dart | 62 …testbool: false, testhashs32Fnv1: 0, testhashu32Fnv1: 0, testhashs64Fnv1: 0, testhashu64Fnv1: 0, t…
|
/external/flatbuffers/tests/cpp17/generated_cpp17/ |
D | monster_test_generated.h | 991 bool testbool; 1027 testbool(false), 1206 bool testbool() const { 1583 void add_testbool(bool testbool) { 1584 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0); 1714 bool testbool = false, 1794 builder_.add_testbool(testbool); 1821 bool testbool = false, 1890 testbool, 2354 { auto _e = testbool(); _o->testbool = _e; } [all …]
|
/external/llvm-project/llvm/test/CodeGen/Generic/ |
D | select.ll | 82 define void @testbool(i32 %A, i32 %B) {
|
/external/llvm/test/CodeGen/Generic/ |
D | select.ll | 82 define void @testbool(i32 %A, i32 %B) {
|