/external/flatbuffers/tests/ |
monster_test_generated.h | 477 std::vector<bool> testarrayofbools; member in struct:MyGame::Example::MonsterT 684 const flatbuffers::Vector<uint8_t> *testarrayofbools() const { function in struct:MyGame::Example::FLATBUFFERS_FINAL_CLASS 751 verifier.Verify(testarrayofbools()) && 837 void add_testarrayofbools(flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools) { 838 fbb_.AddOffset(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools); 890 flatbuffers::Offset<flatbuffers::Vector<uint8_t>> testarrayofbools = 0, 904 builder_.add_testarrayofbools(testarrayofbools); 952 const std::vector<uint8_t> *testarrayofbools = nullptr, [all...] |
monster_test_generated.js | 1065 MyGame.Example.Monster.prototype.testarrayofbools = function(index) { method in class:MyGame.Example.Monster [all...] |
/external/flatbuffers/tests/MyGame/Example/ |
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) 421 self::addTestarrayofbools($builder, $testarrayofbools); 781 public static function addTestarrayofbools(FlatBufferBuilder $builder, $testarrayofbools) 783 $builder->addOffsetX(24, $testarrayofbools, 0);
|
Monster.java | 78 public boolean testarrayofbools(int j) { int o = __offset(52); return o != 0 ? 0!=bb.get(__vector(o) + j * 1) : false; } method in class:Monster 81 public boolean mutateTestarrayofbools(int j, boolean testarrayofbools) { int o = __offset(52); if (o != 0) { bb.put(__vector(o) + j * 1, (byte)(testarrayofbools ? 1 : 0)); return true; } else { return false; } }
|
Monster.py | 250 def Testarrayofbools(self, j): 329 def MonsterAddTestarrayofbools(builder, testarrayofbools): builder.PrependUOffsetTRelativeSlot(24, flatbuffers.number_types.UOffsetTFlags.py_type(testarrayofbools), 0)
|
Monster.cs | 69 public bool Testarrayofbools(int j) { int o = __p.__offset(52); return o != 0 ? 0!=__p.bb.Get(__p.__vector(o) + j * 1) : false; } 72 public bool MutateTestarrayofbools(int j, bool testarrayofbools) { int o = __p.__offset(52); if (o != 0) { __p.bb.Put(__p.__vector(o) + j * 1, (byte)(testarrayofbools ? 1 : 0)); return true; } else { return false; } }
|
Monster.go | 352 func (rcv *Monster) Testarrayofbools(j int) byte { 509 func MonsterAddTestarrayofbools(builder *flatbuffers.Builder, testarrayofbools flatbuffers.UOffsetT) { 510 builder.PrependUOffsetTSlot(24, flatbuffers.UOffsetT(testarrayofbools), 0)
|