Home
last modified time | relevance | path

Searched refs:AttackerT (Results 1 – 9 of 9) sorted by relevance

/third_party/flatbuffers/tests/union_vector/
DAttacker.cs35 public AttackerT UnPack() { in UnPack()
36 var _o = new AttackerT(); in UnPack()
40 public void UnPackTo(AttackerT _o) { in UnPackTo()
43 public static Offset<Attacker> Pack(FlatBufferBuilder builder, AttackerT _o) { in Pack()
51 public class AttackerT class
56 public AttackerT() { in AttackerT() method in AttackerT
Dunion_vector_generated.h11 struct AttackerT;
21 bool operator==(const AttackerT &lhs, const AttackerT &rhs);
22 bool operator!=(const AttackerT &lhs, const AttackerT &rhs);
103 AttackerT *AsMuLan() { in AsMuLan()
105 reinterpret_cast<AttackerT *>(value) : nullptr; in AsMuLan()
107 const AttackerT *AsMuLan() const { in AsMuLan()
109 reinterpret_cast<const AttackerT *>(value) : nullptr; in AsMuLan()
161 return *(reinterpret_cast<const AttackerT *>(lhs.value)) ==
162 *(reinterpret_cast<const AttackerT *>(rhs.value));
269 struct AttackerT : public flatbuffers::NativeTable { struct
[all …]
Dattacker.ts64 unpack(): AttackerT {
65 return new AttackerT(
71 unpackTo(_o: AttackerT): void {
76 export class AttackerT { class
DCharacter.cs27 public AttackerT AsMuLan() { return this.As<AttackerT>(); } in AsMuLan()
82 case Character.MuLan: _o.Value = serializer.Deserialize<AttackerT>(reader); break; in ReadJson()
Dattacker.js51 return new AttackerT(this.swordAttackDamage());
57 export class AttackerT { class
Dmovie.ts5 import { Attacker, AttackerT } from './attacker';
193 public mainCharacter: AttackerT|BookReaderT|RapunzelT|string|null = null,
195 public characters: (AttackerT|BookReaderT|RapunzelT|string)[] = []
Dcharacter.ts3 import { Attacker, AttackerT } from './attacker';
/third_party/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/
Dunion_vector_generated.swift34 var __obj = value as? AttackerT in pack()
180 public mutating func unpack() -> AttackerT { in unpack()
181 return AttackerT(&self) in unpack()
183 public static func pack(_ builder: inout FlatBufferBuilder, obj: inout AttackerT?) -> Offset { in pack()
188 public static func pack(_ builder: inout FlatBufferBuilder, obj: inout AttackerT) -> Offset { in pack()
195 public class AttackerT: NativeObject { class
/third_party/flatbuffers/tests/
DJavaScriptUnionVectorTest.js6 import { Attacker, AttackerT } from './union_vector/attacker'
50 assert.strictEqual(attacker instanceof AttackerT, true);