Home
last modified time | relevance | path

Searched refs:swordAttackDamage (Results 1 – 7 of 7) sorted by relevance

/external/flatbuffers/tests/union_vector/
DAttacker.java15 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
Dunion_vector_generated.js67 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);
Dunion_vector_generated.ts46 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);
DAttacker.php78 public static function addSwordAttackDamage(FlatBufferBuilder $builder, $swordAttackDamage) argument
80 $builder->addIntX(0, $swordAttackDamage, 0);
DAttacker.cs28 …wordAttackDamage(FlatBufferBuilder builder, int swordAttackDamage) { builder.AddInt(0, swordAttack… in AddSwordAttackDamage()
/external/flatbuffers/tests/
DJavaTest.java423 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
DJavaScriptUnionVectorTest.js49 assert.strictEqual(attacker.swordAttackDamage(), 5);