Home
last modified time | relevance | path

Searched refs:FooUnion (Results 1 – 4 of 4) sorted by relevance

/third_party/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.cs26 …public TTable? FooUnion<TTable>() where TTable : struct, IFlatbufferObject { int o = __p.__offset(…
27 …public NamespaceA.NamespaceB.TableInNestedNS FooUnionAsTableInNestedNS() { return FooUnion<Namespa… in FooUnionAsTableInNestedNS()
63 _o.FooUnion = new NamespaceA.NamespaceB.UnionInNestedNSUnion(); in UnPackTo()
64 _o.FooUnion.Type = this.FooUnionType; in UnPackTo()
68 …_o.FooUnion.Value = this.FooUnion<NamespaceA.NamespaceB.TableInNestedNS>().HasValue ? this.FooUnio… in UnPackTo()
76 …var _foo_union_type = _o.FooUnion == null ? NamespaceA.NamespaceB.UnionInNestedNS.NONE : _o.FooUni… in Pack()
77 …var _foo_union = _o.FooUnion == null ? 0 : NamespaceA.NamespaceB.UnionInNestedNSUnion.Pack(builder… in Pack()
97 … return this.FooUnion != null ? this.FooUnion.Type : NamespaceA.NamespaceB.UnionInNestedNS.NONE;
100 this.FooUnion = new NamespaceA.NamespaceB.UnionInNestedNSUnion();
101 this.FooUnion.Type = value;
[all …]
DTableInFirstNS.go14 FooUnion *NamespaceA__NamespaceB.UnionInNestedNST member
21 fooUnionOffset := t.FooUnion.Pack(builder)
26 if t.FooUnion != nil {
27 TableInFirstNSAddFooUnionType(builder, t.FooUnion.Type)
39 if rcv.FooUnion(&fooUnionTable) {
40 t.FooUnion = rcv.FooUnionType().UnPack(fooUnionTable)
116 func (rcv *TableInFirstNS) FooUnion(obj *flatbuffers.Table) bool { func
DTableInFirstNS.py52 def FooUnion(self): member in TableInFirstNS
134 self.fooUnion = UnionInNestedNSCreator(self.fooUnionType, tableInFirstNS.FooUnion())
DTableInFirstNS.lua50 function TableInFirstNS_mt:FooUnion() function