/aosp_15_r20/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
H A D | StructInNestedNS.cs | 30 public StructInNestedNST UnPack() { in UnPack() 31 var _o = new StructInNestedNST(); in UnPack() 35 public void UnPackTo(StructInNestedNST _o) { in UnPackTo() 39 …set<NamespaceA.NamespaceB.StructInNestedNS> Pack(FlatBufferBuilder builder, StructInNestedNST _o) { in Pack() 48 public class StructInNestedNST class 55 public StructInNestedNST() { in StructInNestedNST() method in NamespaceA.NamespaceB.StructInNestedNST
|
H A D | StructInNestedNS.java | 33 public StructInNestedNST unpack() { in unpack() 34 StructInNestedNST _o = new StructInNestedNST(); in unpack() 38 public void unpackTo(StructInNestedNST _o) { in unpackTo() 44 public static int pack(FlatBufferBuilder builder, StructInNestedNST _o) { in pack()
|
H A D | StructInNestedNS.go | 9 type StructInNestedNST struct { struct 14 func (t *StructInNestedNST) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument 18 func (rcv *StructInNestedNS) UnPackTo(t *StructInNestedNST) { argument 23 func (rcv *StructInNestedNS) UnPack() *StructInNestedNST { 25 t := &StructInNestedNST{}
|
H A D | StructInNestedNST.java | 10 public class StructInNestedNST { class 23 public StructInNestedNST() { in StructInNestedNST() method in StructInNestedNST
|
H A D | StructInNestedNS.py | 32 class StructInNestedNST(object): class 47 x = StructInNestedNST()
|
/aosp_15_r20/external/flatbuffers/tests/namespace_test/NamespaceA/ |
H A D | TableInFirstNST.java | 14 private NamespaceA.NamespaceB.StructInNestedNST fooStruct; 28 public NamespaceA.NamespaceB.StructInNestedNST getFooStruct() { return fooStruct; } in getFooStruct() 30 …public void setFooStruct(NamespaceA.NamespaceB.StructInNestedNST fooStruct) { this.fooStruct = foo… in setFooStruct() 37 this.fooStruct = new NamespaceA.NamespaceB.StructInNestedNST(); in TableInFirstNST()
|
H A D | TableInFirstNS.cs | 35 NamespaceA.NamespaceB.StructInNestedNST foo_struct = null) { in CreateTableInFirstNS() 108 public NamespaceA.NamespaceB.StructInNestedNST FooStruct { get; set; } 114 this.FooStruct = new NamespaceA.NamespaceB.StructInNestedNST(); in TableInFirstNST()
|
H A D | TableInFirstNS.go | 15 FooStruct *NamespaceA__NamespaceB.StructInNestedNST
|
H A D | TableInFirstNS.py | 129 self.fooStruct = StructInNestedNST.InitFromObj(tableInFirstNS.FooStruct())
|
/aosp_15_r20/external/flatbuffers/tests/namespace_test/namespace-a/namespace-b/ |
H A D | struct-in-nested-n-s.ts | 50 unpack(): StructInNestedNST { 51 return new StructInNestedNST( 58 unpackTo(_o: StructInNestedNST): void { 64 export class StructInNestedNST { class
|
H A D | struct-in-nested-n-s.js | 39 return new StructInNestedNST(this.a(), this.b()); 46 export class StructInNestedNST { class
|
/aosp_15_r20/external/flatbuffers/tests/namespace_test/ |
H A D | namespace_test1_namespace_a.namespace_b_generated.dart | 214 StructInNestedNST unpack() => StructInNestedNST( 218 static int pack(fb.Builder fbBuilder, StructInNestedNST? object) { 224 class StructInNestedNST implements fb.Packable { 228 StructInNestedNST({ 241 return 'StructInNestedNST{a: $a, b: $b}';
|
H A D | namespace_test1.ts | 1 export { StructInNestedNS, StructInNestedNST } from './namespace-a/namespace-b/struct-in-nested-n-s…
|
H A D | namespace_test2.ts | 2 export { StructInNestedNS, StructInNestedNST } from './namespace-a/namespace-b/struct-in-nested-n-s…
|
H A D | namespace_test2_namespace_a_generated.dart | 57 namespace_a_namespace_b.StructInNestedNST? fooStruct;
|
/aosp_15_r20/external/flatbuffers/tests/namespace_test/namespace_a/namespace_b/ |
H A D | struct_in_nested_ns_generated.rs | 140 pub fn unpack(&self) -> StructInNestedNST { in unpack() argument 141 StructInNestedNST { in unpack() 149 pub struct StructInNestedNST { struct 153 impl StructInNestedNST { implementation
|
/aosp_15_r20/external/flatbuffers/tests/namespace_test/namespace-a/ |
H A D | table-in-first-n-s.ts | 6 import { StructInNestedNS, StructInNestedNST } from '../namespace-a/namespace-b/struct-in-nested-n-… 133 public fooStruct: StructInNestedNST|null = null
|
/aosp_15_r20/external/flatbuffers/tests/namespace_test/namespace_a/ |
H A D | table_in_first_ns_generated.rs | 222 pub foo_struct: Option<namespace_b::StructInNestedNST>,
|