/external/flatbuffers/tests/MyGame/Example/ |
Monster.java | 60 public boolean testbool() { int o = __offset(34); return o != 0 ? 0!=bb.get(o + bb_pos) : false; } method in class:Monster 61 public boolean mutateTestbool(boolean testbool) { int o = __offset(34); if (o != 0) { bb.put(o + bb_pos, (byte)(testbool ? 1 : 0)); return true; } else { return false; } } 115 public static void addTestbool(FlatBufferBuilder builder, boolean testbool) { builder.addBoolean(15, testbool, false); }
|
Monster.php | 395 public static function createMonster(FlatBufferBuilder $builder, $pos, $mana, $hp, $name, $inventory, $color, $test_type, $test, $test4, $testarrayofstring, $testarrayoftables, $enemy, $testnestedflatbuffer, $testempty, $testbool, $testhashs32_fnv1, $testhashu32_fnv1, $testhashs64_fnv1, $testhashu64_fnv1, $testhashs32_fnv1a, $testhashu32_fnv1a, $testhashs64_fnv1a, $testhashu64_fnv1a, $testarrayofbools, $testf, $testf2, $testf3, $testarrayofstring2) 412 self::addTestbool($builder, $testbool); 691 public static function addTestbool(FlatBufferBuilder $builder, $testbool) 693 $builder->addBoolX(15, $testbool, false);
|
Monster.cs | 51 public bool Testbool { get { int o = __p.__offset(34); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } } 52 public bool MutateTestbool(bool testbool) { int o = __p.__offset(34); if (o != 0) { __p.bb.Put(o + __p.bb_pos, (byte)(testbool ? 1 : 0)); return true; } else { return false; } } 106 public static void AddTestbool(FlatBufferBuilder builder, bool testbool) { builder.AddBool(15, testbool, false); }
|
Monster.py | 187 def Testbool(self): 320 def MonsterAddTestbool(builder, testbool): builder.PrependBoolSlot(15, testbool, 0)
|
Monster.go | 244 func (rcv *Monster) Testbool() byte { 482 func MonsterAddTestbool(builder *flatbuffers.Builder, testbool byte) { 483 builder.PrependByteSlot(15, testbool, 0)
|
/external/flatbuffers/tests/ |
monster_test_generated.h | 468 bool testbool; member in struct:MyGame::Example::MonsterT 486 testbool(false), 630 bool testbool() const { function in struct:MyGame::Example::FLATBUFFERS_FINAL_CLASS 810 void add_testbool(bool testbool) { 811 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0); 881 bool testbool = false, 921 builder_.add_testbool(testbool); 943 bool testbool = false, [all...] |
JavaTest.java | 250 TestEq(monster.testbool(), false);
|
monster_test_generated.js | 857 MyGame.Example.Monster.prototype.testbool = function() { method in class:MyGame.Example.Monster 1386 * @param {boolean} testbool [all...] |
JavaScriptTest.js | 143 assert.strictEqual(monster.testbool(), false);
|