HomeSort by relevance Sort by last modified time
    Searched defs:swordAttackDamage (Results 1 - 3 of 3) sorted by null

  /external/flatbuffers/tests/union_vector/
Attacker.java 15 public int swordAttackDamage() { int o = __offset(4); return o != 0 ? bb.getInt(o + bb_pos) : 0; }
26 public static void addSwordAttackDamage(FlatBufferBuilder builder, int swordAttackDamage) { builder.addInt(0, swordAttackDamage, 0); }
union_vector_generated.js 54 Attacker.prototype.swordAttackDamage = function() {
83 * @param {number} swordAttackDamage
85 Attacker.addSwordAttackDamage = function(builder, swordAttackDamage) {
86 builder.addFieldInt32(0, swordAttackDamage, 0);
100 * @param {number} swordAttackDamage
103 Attacker.createAttacker = function(builder, swordAttackDamage) {
105 Attacker.addSwordAttackDamage(builder, swordAttackDamage);
  /external/flatbuffers/tests/
JavaTest.java 423 final int swordAttackDamage = 1;
426 Attacker.createAttacker(fbb, swordAttackDamage),
451 TestEq(((Attacker)movie.characters(new Attacker(), 0)).swordAttackDamage(), swordAttackDamage);

Completed in 673 milliseconds