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

  /external/flatbuffers/tests/
JavaScriptUnionVectorTest.js 15 Test.Attacker.startAttacker(fbb);
16 Test.Attacker.addSwordAttackDamage(fbb, 5);
17 var attackerOffset = Test.Attacker.endAttacker(fbb);
48 var attacker = movie.characters(1, new Test.Attacker());
49 assert.strictEqual(attacker.swordAttackDamage(), 5);
phpUnionVectorTest.php 9 require join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), "php", 'Attacker.php'));
59 Attacker::startAttacker($fbb);
60 Attacker::addSwordAttackDamage($fbb, 5);
61 $attackerOffset = Attacker::endAttacker($fbb);
92 $attacker = $movie->getCharacters(1, new Attacker()); variable
93 $assert->strictEqual($attacker->getSwordAttackDamage(), 5);
test.cpp     [all...]
  /external/flatbuffers/tests/union_vector/
Attacker.php 9 class Attacker extends Table
13 * @return Attacker
17 $obj = new Attacker();
34 * @return Attacker
63 * @return Attacker
union_vector_generated.js 19 function Attacker() {
34 * @returns {Attacker}
36 Attacker.prototype.__init = function(i, bb) {
44 * @param {Attacker=} obj
45 * @returns {Attacker}
47 Attacker.getRootAsAttacker = function(bb, obj) {
48 return (obj || new Attacker).__init(bb.readInt32(bb.position()) + bb.position(), bb);
54 Attacker.prototype.swordAttackDamage = function() {
63 Attacker.prototype.mutate_sword_attack_damage = function(value) {
77 Attacker.startAttacker = function(builder)
    [all...]
union_vector_generated.h 9 struct Attacker;
177 typedef Attacker TableType;
184 struct Attacker FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
202 static flatbuffers::Offset<Attacker> Pack(flatbuffers::FlatBufferBuilder &_fbb, const AttackerT* _o, const flatbuffers::rehasher_function_t *_rehasher = nullptr);
209 fbb_.AddElement<int32_t>(Attacker::VT_SWORD_ATTACK_DAMAGE, sword_attack_damage, 0);
216 flatbuffers::Offset<Attacker> Finish() {
218 auto o = flatbuffers::Offset<Attacker>(end);
223 inline flatbuffers::Offset<Attacker> CreateAttacker(
231 flatbuffers::Offset<Attacker> CreateAttacker(flatbuffers::FlatBufferBuilder &_fbb, const AttackerT *_o, const flatbuffers::rehasher_function_t *_rehasher = nullptr);
259 const Attacker *main_character_as_MuLan() const
    [all...]

Completed in 349 milliseconds