Home
last modified time | relevance | path

Searched refs:StructInNestedNST (Results 1 – 18 of 18) sorted by relevance

/aosp_15_r20/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
H A DStructInNestedNS.cs30 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 DStructInNestedNS.java33 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 DStructInNestedNS.go9 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 DStructInNestedNST.java10 public class StructInNestedNST { class
23 public StructInNestedNST() { in StructInNestedNST() method in StructInNestedNST
H A DStructInNestedNS.py32 class StructInNestedNST(object): class
47 x = StructInNestedNST()
/aosp_15_r20/external/flatbuffers/tests/namespace_test/NamespaceA/
H A DTableInFirstNST.java14 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 DTableInFirstNS.cs35 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 DTableInFirstNS.go15 FooStruct *NamespaceA__NamespaceB.StructInNestedNST
H A DTableInFirstNS.py129 self.fooStruct = StructInNestedNST.InitFromObj(tableInFirstNS.FooStruct())
/aosp_15_r20/external/flatbuffers/tests/namespace_test/namespace-a/namespace-b/
H A Dstruct-in-nested-n-s.ts50 unpack(): StructInNestedNST {
51 return new StructInNestedNST(
58 unpackTo(_o: StructInNestedNST): void {
64 export class StructInNestedNST { class
H A Dstruct-in-nested-n-s.js39 return new StructInNestedNST(this.a(), this.b());
46 export class StructInNestedNST { class
/aosp_15_r20/external/flatbuffers/tests/namespace_test/
H A Dnamespace_test1_namespace_a.namespace_b_generated.dart214 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 Dnamespace_test1.ts1 export { StructInNestedNS, StructInNestedNST } from './namespace-a/namespace-b/struct-in-nested-n-s…
H A Dnamespace_test2.ts2 export { StructInNestedNS, StructInNestedNST } from './namespace-a/namespace-b/struct-in-nested-n-s…
H A Dnamespace_test2_namespace_a_generated.dart57 namespace_a_namespace_b.StructInNestedNST? fooStruct;
/aosp_15_r20/external/flatbuffers/tests/namespace_test/namespace_a/namespace_b/
H A Dstruct_in_nested_ns_generated.rs140 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 Dtable-in-first-n-s.ts6 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 Dtable_in_first_ns_generated.rs222 pub foo_struct: Option<namespace_b::StructInNestedNST>,