Searched refs:createScalarList (Results 1 – 7 of 7) sorted by relevance
/third_party/flatbuffers/tests/my-game/example/ |
D | monster.js | 854 …os().unpack() : null), this.mana(), this.hp(), this.name(), this.bb.createScalarList(this.inventor… 860 …createScalarList(this.testarrayofstring.bind(this), this.testarrayofstringLength()), this.bb.creat… 872 …})(), this.bb.createScalarList(this.vectorOfEnums.bind(this), this.vectorOfEnumsLength()), this.si… 879 _o.inventory = this.bb.createScalarList(this.inventory.bind(this), this.inventoryLength()); 890 …_o.testarrayofstring = this.bb.createScalarList(this.testarrayofstring.bind(this), this.testarrayo… 893 …_o.testnestedflatbuffer = this.bb.createScalarList(this.testnestedflatbuffer.bind(this), this.test… 904 …_o.testarrayofbools = this.bb.createScalarList(this.testarrayofbools.bind(this), this.testarrayofb… 908 …_o.testarrayofstring2 = this.bb.createScalarList(this.testarrayofstring2.bind(this), this.testarra… 910 _o.flex = this.bb.createScalarList(this.flex.bind(this), this.flexLength()); 912 …_o.vectorOfLongs = this.bb.createScalarList(this.vectorOfLongs.bind(this), this.vectorOfLongsLengt… [all …]
|
D | monster.ts | 1107 this.bb!.createScalarList(this.inventory.bind(this), this.inventoryLength()), 1116 this.bb!.createScalarList(this.testarrayofstring.bind(this), this.testarrayofstringLength()), 1119 …this.bb!.createScalarList(this.testnestedflatbuffer.bind(this), this.testnestedflatbufferLength()), 1130 this.bb!.createScalarList(this.testarrayofbools.bind(this), this.testarrayofboolsLength()), 1134 this.bb!.createScalarList(this.testarrayofstring2.bind(this), this.testarrayofstring2Length()), 1136 this.bb!.createScalarList(this.flex.bind(this), this.flexLength()), 1138 this.bb!.createScalarList(this.vectorOfLongs.bind(this), this.vectorOfLongsLength()), 1139 this.bb!.createScalarList(this.vectorOfDoubles.bind(this), this.vectorOfDoublesLength()), 1143 …this.bb!.createScalarList(this.vectorOfWeakReferences.bind(this), this.vectorOfWeakReferencesLengt… 1146 …this.bb!.createScalarList(this.vectorOfCoOwningReferences.bind(this), this.vectorOfCoOwningReferen… [all …]
|
D | type-aliases.js | 253 …4(), this.f32(), this.f64(), this.bb.createScalarList(this.v8.bind(this), this.v8Length()), this.b… 266 _o.v8 = this.bb.createScalarList(this.v8.bind(this), this.v8Length()); 267 _o.vf64 = this.bb.createScalarList(this.vf64.bind(this), this.vf64Length());
|
D | type-aliases.ts | 347 this.bb!.createScalarList(this.v8.bind(this), this.v8Length()), 348 this.bb!.createScalarList(this.vf64.bind(this), this.vf64Length()) 364 _o.v8 = this.bb!.createScalarList(this.v8.bind(this), this.v8Length()); 365 _o.vf64 = this.bb!.createScalarList(this.vf64.bind(this), this.vf64Length());
|
/third_party/flatbuffers/tests/union_vector/ |
D | movie.js | 118 …})(), this.bb.createScalarList(this.charactersType.bind(this), this.charactersTypeLength()), (() =… 150 …_o.charactersType = this.bb.createScalarList(this.charactersType.bind(this), this.charactersTypeLe…
|
D | movie.ts | 147 this.bb!.createScalarList(this.charactersType.bind(this), this.charactersTypeLength()), 173 …_o.charactersType = this.bb!.createScalarList(this.charactersType.bind(this), this.charactersTypeL…
|
/third_party/flatbuffers/ts/ |
D | byte-buffer.ts | 315 createScalarList(listAccessor: (i: number) => unknown, listLength: number): any[] { method in ByteBuffer
|