Home
last modified time | relevance | path

Searched refs:NestedStructT (Results 1 – 24 of 24) sorted by relevance

/external/flatbuffers/tests/ts/arrays_test_complex/my-game/example/
Dnested-struct.d.ts4 export declare class NestedStruct implements flatbuffers.IUnpackableObject<NestedStructT> {
16 unpack(): NestedStructT;
17 unpackTo(_o: NestedStructT): void;
19 export declare class NestedStructT implements flatbuffers.IGeneratedObject { class
Darray-struct.d.ts2 import { NestedStruct, NestedStructT } from '../../my-game/example/nested-struct.js';
17 …derscore: number, b_underscore: number[] | null, c: number, d: (any | NestedStructT)[] | null, e: …
25 d: (NestedStructT)[];
29 …constructor(aUnderscore?: number, bUnderscore?: (number)[], c?: number, d?: (NestedStructT)[], e?:…
Darray-struct.ts7 import { NestedStruct, NestedStructT } from '../../my-game/example/nested-struct.js';
56 …a_underscore: number, b_underscore: number[]|null, c: number, d: (any|NestedStructT)[]|null, e: nu…
94 if (item instanceof NestedStructT) {
126 this.bb!.createObjList<NestedStruct, NestedStructT>(this.d.bind(this), 2),
138 _o.d = this.bb!.createObjList<NestedStruct, NestedStructT>(this.d.bind(this), 2);
150 public d: (NestedStructT)[] = [],
Dnested-struct.ts11 export class NestedStruct implements flatbuffers.IUnpackableObject<NestedStructT> {
98 unpack(): NestedStructT {
99 return new NestedStructT(
109 unpackTo(_o: NestedStructT): void {
118 export class NestedStructT implements flatbuffers.IGeneratedObject { class
Dnested-struct.js59 …return new NestedStructT(this.bb.createScalarList(this.a.bind(this), 2), this.b(), this.bb.createS…
69 export class NestedStructT { class
Darray-struct.js2 import { NestedStruct, NestedStructT } from '../../my-game/example/nested-struct.js';
58 if (item instanceof NestedStructT) {
/external/flatbuffers/tests/MyGame/Example/
DNestedStruct.cs43 public NestedStructT UnPack() { in UnPack()
44 var _o = new NestedStructT(); in UnPack()
48 public void UnPackTo(NestedStructT _o) { in UnPackTo()
57 …public static Offset<MyGame.Example.NestedStruct> Pack(FlatBufferBuilder builder, NestedStructT _o… in Pack()
71 public class NestedStructT class
82 public NestedStructT() { in NestedStructT() method in MyGame.Example.NestedStructT
DArrayStructT.java26 private MyGame.Example.NestedStructT[] d;
42 public MyGame.Example.NestedStructT[] getD() { return d; } in getD()
44 public void setD(MyGame.Example.NestedStructT[] d) { if (d != null && d.length == 2) this.d = d; } in setD()
59 this.d = new MyGame.Example.NestedStructT[2]; in ArrayStructT()
DNestedStruct.java58 public NestedStructT unpack() { in unpack()
59 NestedStructT _o = new NestedStructT(); in unpack()
63 public void unpackTo(NestedStructT _o) { in unpackTo()
73 public static int pack(FlatBufferBuilder builder, NestedStructT _o) { in pack()
DNestedStruct.pyi31 class NestedStructT(object):
37 def InitFromBuf(cls, buf: bytes, pos: int) -> NestedStructT: ...
39 def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> NestedStructT: ...
41 def InitFromObj(cls, nestedStruct: NestedStruct) -> NestedStructT: ...
DNestedStructT.java22 public class NestedStructT { class
45 public NestedStructT() { in NestedStructT() method in NestedStructT
DArrayStruct.cs70 _o.D = new MyGame.Example.NestedStructT[2]; in UnPackTo()
111 public MyGame.Example.NestedStructT[] D { get; set; }
121 this.D = new MyGame.Example.NestedStructT[2]; in ArrayStructT()
DArrayStruct.pyi9 from MyGame.Example.NestedStruct import NestedStruct, NestedStructT
37 d: typing.List[NestedStructT]
DNestedStruct.py104 class NestedStructT(object): class
126 x = NestedStructT()
DArrayStruct.java88 MyGame.Example.NestedStructT[] _oD = _o.getD(); in unpackTo()
DArrayStruct.py161 … nestedStruct_ = MyGame.Example.NestedStruct.NestedStructT.InitFromObj(arrayStruct.D(i))
/external/flatbuffers/tests/arrays_test/my_game/example/
Dnested_struct_generated.rs167 pub fn unpack(&self) -> NestedStructT { in unpack() argument
168 NestedStructT { in unpack()
178 pub struct NestedStructT { struct
184 impl NestedStructT { argument
Darray_struct_generated.rs248 pub d: [NestedStructT; 2],
/external/flatbuffers/tests/ts/
DJavaScriptComplexArraysTest.js9 import { NestedStructT } from './arrays_test_complex/my-game/example/nested-struct.js'
37 new NestedStructT(
/external/flatbuffers/tests/ts/arrays_test_complex/my-game/
Dexample.d.ts4 export { NestedStruct, NestedStructT } from './example/nested-struct.js';
Dexample.ts8 export { NestedStruct, NestedStructT } from './example/nested-struct.js';
Dexample.js6 export { NestedStruct, NestedStructT } from './example/nested-struct.js';
/external/flatbuffers/tests/rust_usage_test/tests/
Darrays_test.rs178 NestedStructT::default(), in object_api_defaults()
179 NestedStructT { in object_api_defaults()
193 d: [NestedStructT::default(), NestedStructT::default()], in object_api_defaults()
/external/flatbuffers/tests/ts/arrays_test_complex/
Darrays_test_complex_generated.cjs40 NestedStructT: () => NestedStructT,
268 …return new NestedStructT(this.bb.createScalarList(this.a.bind(this), 2), this.b(), this.bb.createS…
278 var NestedStructT = class {
346 if (item instanceof NestedStructT) {