Searched refs:StatT (Results 1 – 12 of 12) sorted by relevance
/third_party/flatbuffers/tests/MyGame/Example/ |
D | Stat.go | 9 type StatT struct { struct 15 func (t *StatT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument 25 func (rcv *Stat) UnPackTo(t *StatT) { argument 31 func (rcv *Stat) UnPack() *StatT { 33 t := &StatT{}
|
D | Stat.cs | 78 public StatT UnPack() { in UnPack() 79 var _o = new StatT(); in UnPack() 83 public void UnPackTo(StatT _o) { in UnPackTo() 88 public static Offset<MyGame.Example.Stat> Pack(FlatBufferBuilder builder, StatT _o) { in Pack() 99 public class StatT class 108 public StatT() { in StatT() method in MyGame.Example.StatT
|
D | Stat.py | 73 class StatT(object): class 89 x = StatT()
|
D | Monster.go | 25 Testempty *StatT 59 ScalarKeySortedTables []*StatT 448 t.ScalarKeySortedTables = make([]*StatT, scalarKeySortedTablesLength)
|
D | Monster.cs | 567 _o.ScalarKeySortedTables = new List<MyGame.Example.StatT>(); in UnPackTo() 784 public MyGame.Example.StatT Testempty { get; set; } 888 public List<MyGame.Example.StatT> ScalarKeySortedTables { get; set; }
|
D | Monster.py | 1234 self.testempty = MyGame.Example.Stat.StatT.InitFromObj(monster.Testempty()) 1362 stat_ = MyGame.Example.Stat.StatT.InitFromObj(monster.ScalarKeySortedTables(i))
|
/third_party/flatbuffers/tests/my-game/example/ |
D | stat.ts | 105 unpack(): StatT { 106 return new StatT( 114 unpackTo(_o: StatT): void { 121 export class StatT { class
|
D | stat.js | 81 return new StatT(this.id(), this.val(), this.count()); 89 export class StatT { class
|
D | monster.ts | 13 import { Stat, StatT } from '../../my-game/example/stat'; 1250 public testempty: StatT|null = null, 1286 public scalarKeySortedTables: (StatT)[] = []
|
/third_party/flatbuffers/tests/ |
D | monster_test_generated.h | 40 struct StatT; 76 bool operator==(const StatT &lhs, const StatT &rhs); 77 bool operator!=(const StatT &lhs, const StatT &rhs); 1017 struct StatT : public flatbuffers::NativeTable { 1024 inline bool operator==(const StatT &lhs, const StatT &rhs) { 1031 inline bool operator!=(const StatT &lhs, const StatT &rhs) { 1037 typedef StatT NativeTableType; 1079 StatT *UnPack(const flatbuffers::resolver_function_t *_resolver = nullptr) const; 1080 void UnPackTo(StatT *_o, const flatbuffers::resolver_function_t *_resolver = nullptr) const; 1081 …static flatbuffers::Offset<Stat> Pack(flatbuffers::FlatBufferBuilder &_fbb, const StatT* _o, const… [all …]
|
D | monster_test_generated.rs | 1833 pub fn unpack(&self) -> StatT { in unpack() argument 1839 StatT { in unpack() 1945 pub struct StatT { struct 1950 impl Default for StatT { implementation 1959 impl StatT { implementation 3321 pub testempty: Option<Box<StatT>>, 3355 pub scalar_key_sorted_tables: Option<Vec<StatT>>,
|
/third_party/flatbuffers/tests/cpp17/generated_cpp17/ |
D | monster_test_generated.h | 40 struct StatT; 952 struct StatT : public flatbuffers::NativeTable { 960 typedef StatT NativeTableType; 1010 StatT *UnPack(const flatbuffers::resolver_function_t *_resolver = nullptr) const; 1011 void UnPackTo(StatT *_o, const flatbuffers::resolver_function_t *_resolver = nullptr) const; 1012 …static flatbuffers::Offset<Stat> Pack(flatbuffers::FlatBufferBuilder &_fbb, const StatT* _o, const… 1079 flatbuffers::Offset<Stat> CreateStat(flatbuffers::FlatBufferBuilder &_fbb, const StatT *_o, const f… 1178 std::unique_ptr<MyGame::Example::StatT> testempty{}; 1212 std::vector<std::unique_ptr<MyGame::Example::StatT>> scalar_key_sorted_tables{}; 2612 inline StatT *Stat::UnPack(const flatbuffers::resolver_function_t *_resolver) const { [all …]
|