OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Attacker
(Results
1 - 9
of
9
) sorted by null
/external/flatbuffers/tests/union_vector/
Attacker.cs
8
public struct
Attacker
: IFlatbufferObject
12
public static
Attacker
GetRootAsAttacker(ByteBuffer _bb) { return GetRootAsAttacker(_bb, new
Attacker
()); }
13
public static
Attacker
GetRootAsAttacker(ByteBuffer _bb,
Attacker
obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
15
public
Attacker
__assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
19
public static Offset<
Attacker
> CreateAttacker(FlatBufferBuilder builder,
22
Attacker
.AddSwordAttackDamage(builder, sword_attack_damage);
23
return
Attacker
.EndAttacker(builder);
28
public static Offset<
Attacker
> EndAttacker(FlatBufferBuilder builder)
[
all
...]
Attacker.java
9
public final class
Attacker
extends Table {
10
public static
Attacker
getRootAsAttacker(ByteBuffer _bb) { return getRootAsAttacker(_bb, new
Attacker
()); }
11
public static
Attacker
getRootAsAttacker(ByteBuffer _bb,
Attacker
obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
13
public
Attacker
__assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
21
Attacker
.addSwordAttackDamage(builder, sword_attack_damage);
22
return
Attacker
.endAttacker(builder);
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
...]
Attacker.php
9
class
Attacker
extends Table
13
* @return
Attacker
17
$obj = new
Attacker
();
34
* @return
Attacker
63
* @return
Attacker
union_vector_generated.h
9
struct
Attacker
;
237
typedef
Attacker
TableType;
249
struct
Attacker
FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
270
static flatbuffers::Offset<
Attacker
> Pack(flatbuffers::FlatBufferBuilder &_fbb, const AttackerT* _o, const flatbuffers::rehasher_function_t *_rehasher = nullptr);
277
fbb_.AddElement<int32_t>(
Attacker
::VT_SWORD_ATTACK_DAMAGE, sword_attack_damage, 0);
284
flatbuffers::Offset<
Attacker
> Finish() {
286
auto o = flatbuffers::Offset<
Attacker
>(end);
291
inline flatbuffers::Offset<
Attacker
> CreateAttacker(
299
flatbuffers::Offset<
Attacker
> CreateAttacker(flatbuffers::FlatBufferBuilder &_fbb, const AttackerT *_o, const flatbuffers::rehasher_function_t *_rehasher = nullptr);
335
const
Attacker
*main_character_as_MuLan() const
[
all
...]
/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);
JavaTest.java
426
Attacker
.createAttacker(fbb, swordAttackDamage),
451
TestEq(((
Attacker
)movie.characters(new
Attacker
(), 0)).swordAttackDamage(), swordAttackDamage);
test.cpp
[
all
...]
Completed in 3836 milliseconds