Home
last modified time | relevance | path

Searched refs:testbool (Results 1 – 25 of 28) sorted by relevance

12

/third_party/flatbuffers/tests/my-game/example/
Dmonster.js149 testbool() { method in Monster
592 static addTestbool(builder, testbool) { argument
593 builder.addFieldInt8(15, +testbool, +false);
860 …), (this.testempty() !== null ? this.testempty().unpack() : null), this.testbool(), this.testhashs…
895 _o.testbool = this.testbool();
946 …tables = [], enemy = null, testnestedflatbuffer = [], testempty = null, testbool = false, testhash… argument
961 this.testbool = testbool;
1041 Monster.addTestbool(builder, this.testbool);
Dmonster.ts191 testbool():boolean { method in Monster
765 static addTestbool(builder:flatbuffers.Builder, testbool:boolean) {
766 builder.addFieldInt8(15, +testbool, +false);
1121 this.testbool(),
1188 _o.testbool = this.testbool();
1251 public testbool: boolean = false,
1334 Monster.addTestbool(builder, this.testbool);
/third_party/flatbuffers/tests/fuzzer/
Dmonster_fuzzer.dict59 "testbool"
Dparser_fuzzer.dict92 "testbool"
/third_party/flatbuffers/tests/
Dmonsterdata_test.json69 testbool: true,
Dmonsterdata_test.golden62 testbool: true,
Dmonster_test_generated.rs2187 builder.add_testbool(args.testbool); in create()
2244 let testbool = self.testbool(); in unpack() localVariable
2360 testbool, in unpack()
2522 pub fn testbool(&self) -> bool { in testbool() method
2857 pub testbool: bool, field
2912 testbool: false, in default()
3013 pub fn add_testbool(&mut self, testbool: bool) { in add_testbool()
3014 self.fbb_.push_slot::<bool>(Monster::VT_TESTBOOL, testbool, false); in add_testbool()
3215 ds.field("testbool", &self.testbool()); in fmt()
3322 pub testbool: bool, field
[all …]
DJavaScriptTest.js168 assert.strictEqual(monster.testbool, true);
219 assert.strictEqual(monster.testbool(), true);
Dmonster_test_my_game.example_generated.dart835 bool get testbool => const fb.BoolReader().vTableGet(_bc, _bcOffset, 34, false);
888 …estnestedflatbuffer: $testnestedflatbuffer, testempty: $testempty, testbool: $testbool, testhashs3…
967 int addTestbool(bool testbool) {
968 fbBuilder.addBool(15, testbool);
1184 bool testbool,
1235 _testbool = testbool,
Dmonster_test.fbs97 testbool:bool (id:15);
Dmonster_test_generated.h1224 bool testbool = false;
1275 (lhs.testbool == rhs.testbool) &&
1477 bool testbool() const {
1874 void add_testbool(bool testbool) {
1875 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0);
2010 bool testbool = false,
2094 builder_.add_testbool(testbool);
2116 bool testbool = false,
2189 testbool,
2657 { auto _e = testbool(); _o->testbool = _e; }
[all …]
Dmonster_test_generated.lobster284 def testbool():
445 def add_testbool(testbool:int):
446 b_.PrependBoolSlot(15, testbool, 0)
DKotlinTest.kt142 assert(monster.testbool == true) in TestBuffer()
/third_party/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/
DFlatBuffersMonsterWriterTests.swift172 Monster.add(testbool: true, &fbb) in createMonster()
275 XCTAssertEqual(monster.testbool, true) in readFlatbufferMonster()
326 XCTAssertEqual(monster.testbool, true) in readObjectApi()
Dmonster_test_generated.swift772 case testbool = 34
844 …public var testbool: Bool { let o = _accessor.offset(VTOFFSET.testbool.v); return o == 0 ? false :… variable
845 …sult public func mutate(testbool: Byte) -> Bool {let o = _accessor.offset(VTOFFSET.testbool.v); r… in mutate()
950 …public static func add(testbool: Bool, _ fbb: inout FlatBufferBuilder) { fbb.add(element: testbool in add()
951 at: VTOFFSET.testbool.p) } in add()
1010 testbool: Bool = false,
1062 MyGame_Example_Monster.add(testbool: testbool, &fbb)
1212 MyGame_Example_Monster.add(testbool: obj.testbool, &builder) in pack()
1273 public var testbool: Bool variable
1351 testbool = _t.testbool
[all …]
/third_party/flatbuffers/tests/MyGame/Example/
DMonster.kt229 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()
896 …fun addTestbool(builder: FlatBufferBuilder, testbool: Boolean) = builder.addBoolean(15, testbool, … in startTestnestedflatbufferVector()
DMonster.php745 …string, $testarrayoftables, $enemy, $testnestedflatbuffer, $testempty, $testbool, $testhashs32_fnv… argument
762 self::addTestbool($builder, $testbool);
1063 public static function addTestbool(FlatBufferBuilder $builder, $testbool) argument
1065 $builder->addBoolX(15, $testbool, false);
DMonster.java75 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
240 …ic void addTestbool(FlatBufferBuilder builder, boolean testbool) { builder.addBoolean(15, testbool in addTestbool() argument
DMonster.py884 def AddTestbool(builder, testbool): builder.PrependBoolSlot(15, testbool, 0) argument
885 def MonsterAddTestbool(builder, testbool): argument
887 return AddTestbool(builder, testbool)
1136 self.testbool = False # type: bool
1235 self.testbool = monster.Testbool()
1558 AddTestbool(builder, self.testbool)
DMonster.cs74 …lic bool MutateTestbool(bool testbool) { int o = __p.__offset(34); if (o != 0) { __p.bb.Put(o + __… in MutateTestbool()
229 bool testbool = false, in CreateMonster()
313 Monster.AddTestbool(builder, testbool); in CreateMonster()
347 …static void AddTestbool(FlatBufferBuilder builder, bool testbool) { builder.AddBool(15, testbool, … in AddTestbool()
DMonster.lua603 function Monster.AddTestbool(builder, testbool) builder:PrependBoolSlot(15, testbool, 0) end
DMonster.go1402 func MonsterAddTestbool(builder *flatbuffers.Builder, testbool bool) {
1403 builder.PrependBoolSlot(15, testbool, false)
/third_party/flatbuffers/dart/test/
Dmonster_test_my_game.example_generated.dart835 bool get testbool => const fb.BoolReader().vTableGet(_bc, _bcOffset, 34, false);
888 …estnestedflatbuffer: $testnestedflatbuffer, testempty: $testempty, testbool: $testbool, testhashs3…
967 int addTestbool(bool testbool) {
968 fbBuilder.addBool(15, testbool);
1184 bool testbool,
1235 _testbool = testbool,
Dflat_buffers_test.dart71 'testempty: null, testbool: false, testhashs32Fnv1: 0, '
92 'testempty: null, testbool: false, testhashs32Fnv1: 0, '
107 'testnestedflatbuffer: null, testempty: null, testbool: true, '
/third_party/flatbuffers/tests/cpp17/generated_cpp17/
Dmonster_test_generated.h1179 bool testbool = false;
1377 bool testbool() const {
1628 else if constexpr (Index == 14) return testbool();
1828 void add_testbool(bool testbool) {
1829 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0);
1964 bool testbool = false,
2048 builder_.add_testbool(testbool);
2132 bool testbool = false,
2205 testbool,
2693 { auto _e = testbool(); _o->testbool = _e; }
[all …]

12