Searched defs:testbool (Results 1 - 4 of 4) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
H A DMonster.cs55 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; } } argument
126 public static void AddTestbool(FlatBufferBuilder builder, bool testbool) { builder.AddBool(15, testbool, false); } argument
H A DMonster.java61 public boolean testbool() { int o = __offset(34); return o != 0 ? 0!=bb.get(o + bb_pos) : false; } method in class:Monster
62 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; } } argument
136 public static void addTestbool(FlatBufferBuilder builder, boolean testbool) { builder.addBoolean(15, testbool, false); } argument
/external/flatbuffers/tests/
H A Dmonster_test_generated.h584 bool testbool; member in struct:MyGame::Example::MonsterT
608 testbool(false),
768 bool testbool() const { function in struct:MyGame::Example::FLATBUFFERS_FINAL_CLASS
1012 void add_testbool(bool testbool) { argument
1013 fbb_.AddElement<uint8_t>(Monster::VT_TESTBOOL, static_cast<uint8_t>(testbool), 0);
1101 bool testbool = false,
1153 builder_.add_testbool(testbool);
1175 bool testbool = false,
1211 testbool,
1622 { auto _e = testbool(); _
[all...]
H A Dmonster_test_generated.js991 MyGame.Example.Monster.prototype.testbool = function() {
1632 * @param {boolean} testbool
1634 MyGame.Example.Monster.addTestbool = function(builder, testbool) {
1635 builder.addFieldInt8(15, +testbool, +false);

Completed in 91 milliseconds