Home | Sort by relevance Sort by last modified time |
/external/flatbuffers/tests/ | |
JavaTest.java | 136 TestEq(monster.testbool(), true); |
monster_test_generated.h | 1030 bool testbool; member in struct:MyGame::Example::MonsterT 1291 bool testbool() const { function in struct:MyGame::Example::FLATBUFFERS_FINAL_CLASS [all...] |
monster_test_generated.js | 1148 MyGame.Example.Monster.prototype.testbool = function() { method in class:MyGame.Example.Monster [all...] |
/external/flatbuffers/tests/MyGame/Example/ | |
Monster.java | 65 public boolean testbool() { int o = __offset(34); return o != 0 ? 0!=bb.get(o + bb_pos) : false; } method in class:Monster 66 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; } } 186 public static void addTestbool(FlatBufferBuilder builder, boolean testbool) { builder.addBoolean(15, testbool, false); } |