HomeSort by relevance Sort by last modified time
    Searched refs:testbool (Results 1 - 10 of 10) sorted by null

  /external/flatbuffers/tests/MyGame/Example/
Monster.php 682 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, $testarrayofsortedstruct, $flex, $test5, $vector_of_longs, $vector_of_doubles, $parent_namespace_test, $vector_of_referrables, $single_weak_reference, $vector_of_weak_references, $vector_of_strong_referrables, $co_owning_reference, $vector_of_co_owning_references, $non_owning_reference, $vector_of_non_owning_references, $any_unique_type, $any_unique, $any_ambiguous_type, $any_ambiguous, $vector_of_enums)
699 self::addTestbool($builder, $testbool);
997 public static function addTestbool(FlatBufferBuilder $builder, $testbool)
999 $builder->addBoolX(15, $testbool, false);
    [all...]
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); }
Monster.cs 69 public bool Testbool { get { int o = __p.__offset(34); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
70 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; } }
219 public static void AddTestbool(FlatBufferBuilder builder, bool testbool) { builder.AddBool(15, testbool, false); }
    [all...]
Monster.go 246 func (rcv *Monster) Testbool() bool {
780 func MonsterAddTestbool(builder *flatbuffers.Builder, testbool bool) {
781 builder.PrependBoolSlot(15, testbool, false)
Monster.lua 176 function Monster_mt:Testbool()
545 function Monster.AddTestbool(builder, testbool) builder:PrependBoolSlot(15, testbool, 0) end
Monster.py 201 def Testbool(self):
639 def MonsterAddTestbool(builder, testbool): builder.PrependBoolSlot(15, testbool, 0)
  /external/flatbuffers/tests/
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...]
JavaTest.java 136 TestEq(monster.testbool(), true);
monster_test_generated.js 1148 MyGame.Example.Monster.prototype.testbool = function() { method in class:MyGame.Example.Monster
    [all...]
JavaScriptTest.js 160 assert.strictEqual(monster.testbool(), true);

Completed in 252 milliseconds