Home
last modified time | relevance | path

Searched refs:MonsterT (Results 1 – 23 of 23) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
DAnyAmbiguousAliases.cs27 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()
DAny.cs27 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()
DAnyUniqueAliases.cs27 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()
DAnyAmbiguousAliases.py18 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)
DAnyAmbiguousAliases.go52 return t.Value.(*MonsterT).Pack(builder)
54 return t.Value.(*MonsterT).Pack(builder)
56 return t.Value.(*MonsterT).Pack(builder)
DAny.py18 return MyGame.Example.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos)
24 return MyGame.Example2.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos)
DAnyUniqueAliases.py18 return MyGame.Example.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos)
24 return MyGame.Example2.Monster.MonsterT.InitFromBuf(table.Bytes, table.Pos)
DAny.go54 return t.Value.(*MonsterT).Pack(builder)
58 return t.Value.(*MyGame__Example2.MonsterT).Pack(builder)
DAnyUniqueAliases.go54 return t.Value.(*MonsterT).Pack(builder)
58 return t.Value.(*MyGame__Example2.MonsterT).Pack(builder)
DMonster.cs322 public MonsterT UnPack() { in UnPack()
323 var _o = new MonsterT(); in UnPack()
327 public void UnPackTo(MonsterT _o) { in UnPackTo()
353 _o.Testarrayoftables = new List<MyGame.Example.MonsterT>(); in UnPackTo()
431 public static Offset<MyGame.Example.Monster> Pack(FlatBufferBuilder builder, MonsterT _o) { in Pack()
594 public class MonsterT class
626 public List<MyGame.Example.MonsterT> Testarrayoftables { get; set; }
628 public MyGame.Example.MonsterT Enemy { get; set; }
734 public MonsterT() { in MonsterT() method in MyGame.Example.MonsterT
782 public static MonsterT DeserializeFromJson(string jsonText) { in DeserializeFromJson()
[all …]
DMonster.go12 type MonsterT struct { struct
22 Testarrayoftables []*MonsterT argument
23 Enemy *MonsterT argument
60 func (t *MonsterT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument
298 func (rcv *Monster) UnPackTo(t *MonsterT) { argument
322 t.Testarrayoftables = make([]*MonsterT, testarrayoftablesLength)
427 func (rcv *Monster) UnPack() *MonsterT {
429 t := &MonsterT{}
DMonster.py807 class MonsterT(object): class
868 x = MonsterT()
909 … monster_ = MyGame.Example.Monster.MonsterT.InitFromObj(monster.Testarrayoftables(i))
912 self.enemy = MyGame.Example.Monster.MonsterT.InitFromObj(monster.Enemy())
/external/flatbuffers/tests/MyGame/Example2/
DMonster.cs28 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
DMonster.go9 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{}
DMonster.py31 class MonsterT(object): class
45 x = MonsterT()
/external/flatbuffers/tests/
Dmonster_test_generated.h20 struct MonsterT;
46 struct MonsterT;
58 bool operator==(const MonsterT &lhs, const MonsterT &rhs);
59 bool operator!=(const MonsterT &lhs, const MonsterT &rhs);
76 bool operator==(const MonsterT &lhs, const MonsterT &rhs);
77 bool operator!=(const MonsterT &lhs, const MonsterT &rhs);
271 MyGame::Example::MonsterT *AsMonster() {
273 reinterpret_cast<MyGame::Example::MonsterT *>(value) : nullptr;
275 const MyGame::Example::MonsterT *AsMonster() const {
277 reinterpret_cast<const MyGame::Example::MonsterT *>(value) : nullptr;
[all …]
Dpy_test.py99 monsterT1 = MyGame.Example.Monster.MonsterT.InitFromObj(monster1)
114 monsterT2 = MyGame.Example.Monster.MonsterT.InitFromObj(monster2)
137 monsterT1 = MyGame.Example.Monster.MonsterT.InitFromObj(monster1)
272 monsterT = MyGame.Example.Monster.MonsterT()
344 testT = MyGame.Example.Monster.MonsterT()
392 monsterT0 = MyGame.Example.Monster.MonsterT()
394 monsterT1 = MyGame.Example.Monster.MonsterT()
409 monsterT = MyGame.Example.Monster.MonsterT()
Dtest.cpp3028 MonsterT a; in EqualOperatorTest()
3029 MonsterT b; in EqualOperatorTest()
/external/flatbuffers/samples/
Dmonster_generated.h16 struct MonsterT;
24 bool operator==(const MonsterT &lhs, const MonsterT &rhs);
25 bool operator!=(const MonsterT &lhs, const MonsterT &rhs);
223 struct MonsterT : public flatbuffers::NativeTable {
234 MonsterT()
241 inline bool operator==(const MonsterT &lhs, const MonsterT &rhs) {
254 inline bool operator!=(const MonsterT &lhs, const MonsterT &rhs) {
260 typedef MonsterT NativeTableType;
358 MonsterT *UnPack(const flatbuffers::resolver_function_t *_resolver = nullptr) const;
359 void UnPackTo(MonsterT *_o, const flatbuffers::resolver_function_t *_resolver = nullptr) const;
[all …]
/external/flatbuffers/tests/cpp17/generated_cpp17/
Dmonster_test_generated.h20 struct MonsterT;
46 struct MonsterT;
243 MyGame::Example::MonsterT *AsMonster() {
245 reinterpret_cast<MyGame::Example::MonsterT *>(value) : nullptr;
247 const MyGame::Example::MonsterT *AsMonster() const {
249 reinterpret_cast<const MyGame::Example::MonsterT *>(value) : nullptr;
259 MyGame::Example2::MonsterT *AsMyGame_Example2_Monster() {
261 reinterpret_cast<MyGame::Example2::MonsterT *>(value) : nullptr;
263 const MyGame::Example2::MonsterT *AsMyGame_Example2_Monster() const {
265 reinterpret_cast<const MyGame::Example2::MonsterT *>(value) : nullptr;
[all …]
/external/flatbuffers/docs/source/
DCsharpUsage.md143 MonsterT monsterobj = GetMonster(flatbuffer).UnPack();
162 // Deserialize MonsterT from json
164 MonsterT mon = MonsterT.DeserializeFromJson(jsonText);
166 // Serialize MonsterT to json
DCppUsage.md114 MonsterT monsterobj;
/external/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffersExampleTests.cs294 var mon = MonsterT.DeserializeFromJson(jsonText); in CanReadJsonFile()
489 private void AreEqual(Monster a, MonsterT b) in AreEqual()
674 var d = MonsterT.DeserializeFromJson(jsonText); in TestObjectAPI()
678 var e = MonsterT.DeserializeFromBinary(fbBuffer); in TestObjectAPI()