/third_party/flatbuffers/tests/MyGame/Example/ |
D | AnyAmbiguousAliases.cs | 27 public MyGame.Example.MonsterT AsM1() { return this.As<MyGame.Example.MonsterT>(); } in AsM1() 28 public MyGame.Example.MonsterT AsM2() { return this.As<MyGame.Example.MonsterT>(); } in AsM2() 29 public MyGame.Example.MonsterT AsM3() { return this.As<MyGame.Example.MonsterT>(); } in AsM3() 76 …case AnyAmbiguousAliases.M1: _o.Value = serializer.Deserialize<MyGame.Example.MonsterT>(reader); b… in ReadJson() 77 …case AnyAmbiguousAliases.M2: _o.Value = serializer.Deserialize<MyGame.Example.MonsterT>(reader); b… in ReadJson() 78 …case AnyAmbiguousAliases.M3: _o.Value = serializer.Deserialize<MyGame.Example.MonsterT>(reader); b… in ReadJson()
|
D | Any.cs | 27 public MyGame.Example.MonsterT AsMonster() { return this.As<MyGame.Example.MonsterT>(); } in AsMonster() 29 …public MyGame.Example2.MonsterT AsMyGame_Example2_Monster() { return this.As<MyGame.Example2.Monst… in AsMyGame_Example2_Monster() 76 case Any.Monster: _o.Value = serializer.Deserialize<MyGame.Example.MonsterT>(reader); break; in ReadJson() 78 …case Any.MyGame_Example2_Monster: _o.Value = serializer.Deserialize<MyGame.Example2.MonsterT>(read… in ReadJson()
|
D | AnyUniqueAliases.cs | 27 public MyGame.Example.MonsterT AsM() { return this.As<MyGame.Example.MonsterT>(); } in AsM() 29 public MyGame.Example2.MonsterT AsM2() { return this.As<MyGame.Example2.MonsterT>(); } in AsM2() 76 …case AnyUniqueAliases.M: _o.Value = serializer.Deserialize<MyGame.Example.MonsterT>(reader); break; in ReadJson() 78 …case AnyUniqueAliases.M2: _o.Value = serializer.Deserialize<MyGame.Example2.MonsterT>(reader); bre… in ReadJson()
|
D | AnyAmbiguousAliases.py | 18 return MyGame.Example.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos) 21 return MyGame.Example.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos) 24 return MyGame.Example.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos)
|
D | AnyAmbiguousAliases.go | 52 return t.Value.(*MonsterT).Pack(builder) 54 return t.Value.(*MonsterT).Pack(builder) 56 return t.Value.(*MonsterT).Pack(builder)
|
D | Any.py | 18 return MyGame.Example.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos) 24 return MyGame.Example2.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos)
|
D | AnyUniqueAliases.py | 18 return MyGame.Example.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos) 24 return MyGame.Example2.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos)
|
D | Any.go | 54 return t.Value.(*MonsterT).Pack(builder) 58 return t.Value.(*MyGame__Example2.MonsterT).Pack(builder)
|
D | AnyUniqueAliases.go | 54 return t.Value.(*MonsterT).Pack(builder) 58 return t.Value.(*MyGame__Example2.MonsterT).Pack(builder)
|
D | Monster.cs | 457 public MonsterT UnPack() { in UnPack() 458 var _o = new MonsterT(); in UnPack() 462 public void UnPackTo(MonsterT _o) { in UnPackTo() 488 _o.Testarrayoftables = new List<MyGame.Example.MonsterT>(); in UnPackTo() 570 public static Offset<MyGame.Example.Monster> Pack(FlatBufferBuilder builder, MonsterT _o) { in Pack() 746 public class MonsterT class 778 public List<MyGame.Example.MonsterT> Testarrayoftables { get; set; } 780 public MyGame.Example.MonsterT Enemy { get; set; } 890 public MonsterT() { in MonsterT() method in MyGame.Example.MonsterT 940 public static MonsterT DeserializeFromJson(string jsonText) { in DeserializeFromJson() [all …]
|
/third_party/flatbuffers/tests/MyGame/Example2/ |
D | Monster.cs | 28 public MonsterT UnPack() { in UnPack() 29 var _o = new MonsterT(); in UnPack() 33 public void UnPackTo(MonsterT _o) { in UnPackTo() 35 public static Offset<MyGame.Example2.Monster> Pack(FlatBufferBuilder builder, MonsterT _o) { in Pack() 42 public class MonsterT class 45 public MonsterT() { in MonsterT() method in MyGame.Example2.MonsterT
|
D | Monster.go | 9 type MonsterT struct { struct 12 func (t *MonsterT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument 18 func (rcv *Monster) UnPackTo(t *MonsterT) { argument 21 func (rcv *Monster) UnPack() *MonsterT { 23 t := &MonsterT{}
|
D | Monster.py | 40 class MonsterT(object): class 54 x = MonsterT()
|
/third_party/flatbuffers/tests/ |
D | monster_test_generated.h | 20 struct MonsterT; 48 struct MonsterT; 60 bool operator==(const MonsterT &lhs, const MonsterT &rhs); 61 bool operator!=(const MonsterT &lhs, const MonsterT &rhs); 80 bool operator==(const MonsterT &lhs, const MonsterT &rhs); 81 bool operator!=(const MonsterT &lhs, const MonsterT &rhs); 277 MyGame::Example::MonsterT *AsMonster() { 279 reinterpret_cast<MyGame::Example::MonsterT *>(value) : nullptr; 281 const MyGame::Example::MonsterT *AsMonster() const { 283 reinterpret_cast<const MyGame::Example::MonsterT *>(value) : nullptr; [all …]
|
D | monster_test_generated.rs | 170 pub fn unpack(&self) -> MonsterT { in unpack() argument 171 MonsterT { in unpack() 224 pub struct MonsterT { struct 226 impl Default for MonsterT { implementation 232 impl MonsterT { impl 511 Monster(Box<MonsterT>), 513 MyGameExample2Monster(Box<super::example_2::MonsterT>), 538 pub fn take_monster(&mut self) -> Option<Box<MonsterT>> { in take_monster() argument 551 pub fn as_monster(&self) -> Option<&MonsterT> { in as_monster() argument 555 pub fn as_monster_mut(&mut self) -> Option<&mut MonsterT> { in as_monster_mut() argument [all …]
|
D | JavaScriptTest.js | 6 import { Monster, MonsterT } from './my-game/example/monster' 149 assert.strictEqual(monster2 instanceof MonsterT, true); 224 let monster2_t = new MonsterT();
|
/third_party/flatbuffers/tests/my-game/example2/ |
D | monster.ts | 51 unpack(): MonsterT { 52 return new MonsterT(); 56 unpackTo(_o: MonsterT): void {} 59 export class MonsterT { class
|
D | monster.js | 41 return new MonsterT(); 45 export class MonsterT { class
|
/third_party/flatbuffers/samples/ |
D | monster_generated.h | 16 struct MonsterT; 24 bool operator==(const MonsterT &lhs, const MonsterT &rhs); 25 bool operator!=(const MonsterT &lhs, const MonsterT &rhs); 225 struct MonsterT : public flatbuffers::NativeTable { 238 inline bool operator==(const MonsterT &lhs, const MonsterT &rhs) { 251 inline bool operator!=(const MonsterT &lhs, const MonsterT &rhs) { 257 typedef MonsterT NativeTableType; 355 MonsterT *UnPack(const flatbuffers::resolver_function_t *_resolver = nullptr) const; 356 void UnPackTo(MonsterT *_o, const flatbuffers::resolver_function_t *_resolver = nullptr) const; 357 …static flatbuffers::Offset<Monster> Pack(flatbuffers::FlatBufferBuilder &_fbb, const MonsterT* _o,… [all …]
|
/third_party/flatbuffers/tests/cpp17/generated_cpp17/ |
D | monster_test_generated.h | 20 struct MonsterT; 48 struct MonsterT; 247 MyGame::Example::MonsterT *AsMonster() { 249 reinterpret_cast<MyGame::Example::MonsterT *>(value) : nullptr; 251 const MyGame::Example::MonsterT *AsMonster() const { 253 reinterpret_cast<const MyGame::Example::MonsterT *>(value) : nullptr; 263 MyGame::Example2::MonsterT *AsMyGame_Example2_Monster() { 265 reinterpret_cast<MyGame::Example2::MonsterT *>(value) : nullptr; 267 const MyGame::Example2::MonsterT *AsMyGame_Example2_Monster() const { 269 reinterpret_cast<const MyGame::Example2::MonsterT *>(value) : nullptr; [all …]
|
/third_party/flatbuffers/tests/my-game/example/ |
D | any.ts | 3 import { Monster as MyGameExample2Monster, MonsterT as MyGameExample2MonsterT } from '../../my-game… 4 import { Monster, MonsterT } from '../../my-game/example/monster';
|
D | any-unique-aliases.ts | 3 import { Monster as MyGameExample2Monster, MonsterT as MyGameExample2MonsterT } from '../../my-game… 4 import { Monster, MonsterT } from '../../my-game/example/monster';
|
D | any-ambiguous-aliases.ts | 3 import { Monster, MonsterT } from '../../my-game/example/monster';
|
D | monster.ts | 5 import { Monster as MyGameExample2Monster, MonsterT as MyGameExample2MonsterT } from '../../my-game… 1101 unpack(): MonsterT { 1102 return new MonsterT( 1169 unpackTo(_o: MonsterT): void { 1235 export class MonsterT { class 1244 public test: MonsterT|MyGameExample2MonsterT|TestSimpleTableWithEnumT|null = null, 1247 public testarrayoftables: (MonsterT)[] = [], 1248 public enemy: MonsterT|null = null, 1280 public anyUnique: MonsterT|MyGameExample2MonsterT|TestSimpleTableWithEnumT|null = null, 1282 public anyAmbiguous: MonsterT|null = null,
|
/third_party/flatbuffers/docs/source/ |
D | CsharpUsage.md | 167 MonsterT monsterobj = GetMonster(flatbuffer).UnPack(); 186 // Deserialize MonsterT from json 188 MonsterT mon = MonsterT.DeserializeFromJson(jsonText); 190 // Serialize MonsterT to json
|