Searched refs:swordAttackDamage (Results 1 – 7 of 7) sorted by relevance
/external/flatbuffers/tests/union_vector/ |
D | Attacker.java | 15 public int swordAttackDamage() { int o = __offset(4); return o != 0 ? bb.getInt(o + bb_pos) : 0; } in swordAttackDamage() method in Attacker 26 …wordAttackDamage(FlatBufferBuilder builder, int swordAttackDamage) { builder.addInt(0, swordAttack… in addSwordAttackDamage() argument
|
D | union_vector_generated.js | 67 Attacker.prototype.swordAttackDamage = function() { method in Attacker 98 Attacker.addSwordAttackDamage = function(builder, swordAttackDamage) { argument 99 builder.addFieldInt32(0, swordAttackDamage, 0); 116 Attacker.createAttacker = function(builder, swordAttackDamage) { argument 118 Attacker.addSwordAttackDamage(builder, swordAttackDamage);
|
D | union_vector_generated.ts | 46 swordAttackDamage():number { method in Attacker 77 static addSwordAttackDamage(builder:flatbuffers.Builder, swordAttackDamage:number) { 78 builder.addFieldInt32(0, swordAttackDamage, 0); 90 static createAttacker(builder:flatbuffers.Builder, swordAttackDamage:number):flatbuffers.Offset { 92 Attacker.addSwordAttackDamage(builder, swordAttackDamage);
|
D | Attacker.php | 78 public static function addSwordAttackDamage(FlatBufferBuilder $builder, $swordAttackDamage) argument 80 $builder->addIntX(0, $swordAttackDamage, 0);
|
D | Attacker.cs | 28 …wordAttackDamage(FlatBufferBuilder builder, int swordAttackDamage) { builder.AddInt(0, swordAttack… in AddSwordAttackDamage()
|
/external/flatbuffers/tests/ |
D | JavaTest.java | 423 final int swordAttackDamage = 1; in TestVectorOfUnions() local 426 Attacker.createAttacker(fbb, swordAttackDamage), in TestVectorOfUnions() 451 … TestEq(((Attacker)movie.characters(new Attacker(), 0)).swordAttackDamage(), swordAttackDamage); in TestVectorOfUnions() local
|
D | JavaScriptUnionVectorTest.js | 49 assert.strictEqual(attacker.swordAttackDamage(), 5);
|