/external/flatbuffers/tests/ |
JavaTest.java | 250 TestEq(monster.testbool(), false);
|
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...] |
monster_test_generated.js | 857 MyGame.Example.Monster.prototype.testbool = function() { method in class:MyGame.Example.Monster 1386 * @param {boolean} testbool [all...] |
/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); }
|