Home
last modified time | relevance | path

Searched refs:AbilityT (Results 1 – 14 of 14) sorted by relevance

/third_party/flatbuffers/tests/MyGame/Example/
DAbility.cs30 public AbilityT UnPack() { in UnPack()
31 var _o = new AbilityT(); in UnPack()
35 public void UnPackTo(AbilityT _o) { in UnPackTo()
39 public static Offset<MyGame.Example.Ability> Pack(FlatBufferBuilder builder, AbilityT _o) { in Pack()
48 public class AbilityT class
55 public AbilityT() { in AbilityT() method in MyGame.Example.AbilityT
DAbility.go9 type AbilityT struct { struct
14 func (t *AbilityT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument
18 func (rcv *Ability) UnPackTo(t *AbilityT) { argument
23 func (rcv *Ability) UnPack() *AbilityT {
25 t := &AbilityT{}
DStructOfStructs.cs69 public MyGame.Example.AbilityT A { get; set; }
73 public MyGame.Example.AbilityT C { get; set; }
76 this.A = new MyGame.Example.AbilityT(); in StructOfStructsT()
78 this.C = new MyGame.Example.AbilityT(); in StructOfStructsT()
DAbility.py32 class AbilityT(object): class
47 x = AbilityT()
DStructOfStructs.go10 A *AbilityT
12 C *AbilityT
DStructOfStructs.py82 …self.a = MyGame.Example.Ability.AbilityT.InitFromObj(structOfStructs.A(MyGame.Example.Ability.Abil…
86 …self.c = MyGame.Example.Ability.AbilityT.InitFromObj(structOfStructs.C(MyGame.Example.Ability.Abil…
DMonster.go40 Testarrayofsortedstruct []*AbilityT
375 t.Testarrayofsortedstruct = make([]*AbilityT, testarrayofsortedstructLength)
DMonster.cs510 _o.Testarrayofsortedstruct = new List<MyGame.Example.AbilityT>(); in UnPackTo()
822 public List<MyGame.Example.AbilityT> Testarrayofsortedstruct { get; set; }
DMonster.py1264 … ability_ = MyGame.Example.Ability.AbilityT.InitFromObj(monster.Testarrayofsortedstruct(i))
/third_party/flatbuffers/tests/my-game/example/
Dability.ts50 unpack(): AbilityT {
51 return new AbilityT(
58 unpackTo(_o: AbilityT): void {
64 export class AbilityT { class
Dstruct-of-structs.ts5 import { Ability, AbilityT } from '../../my-game/example/ability';
72 public a: AbilityT|null = null,
74 public c: AbilityT|null = null
Dability.js39 return new AbilityT(this.id(), this.distance());
46 export class AbilityT { class
Dmonster.ts6 import { Ability, AbilityT } from '../../my-game/example/ability';
1265 public testarrayofsortedstruct: (AbilityT)[] = [],
/third_party/flatbuffers/tests/
Dmonster_test_generated.rs1519 pub fn unpack(&self) -> AbilityT { in unpack() argument
1520 AbilityT { in unpack()
1528 pub struct AbilityT { struct
1532 impl AbilityT { implementation
1660 pub a: AbilityT,
1662 pub c: AbilityT,
3336 pub testarrayofsortedstruct: Option<Vec<AbilityT>>,