Home
last modified time | relevance | path

Searched refs:fooUnionType (Results 1 – 10 of 10) sorted by relevance

/third_party/flatbuffers/tests/namespace_test/namespace-a/
Dtable-in-first-n-s.js40 fooUnionType() { method in TableInFirstNS
64 static addFooUnionType(builder, fooUnionType) { argument
65 builder.addFieldInt8(2, fooUnionType, UnionInNestedNS.NONE);
78 …oTable() !== null ? this.fooTable().unpack() : null), this.fooEnum(), this.fooUnionType(), (() => {
79 let temp = unionToUnionInNestedNS(this.fooUnionType(), this.fooUnion.bind(this));
89 _o.fooUnionType = this.fooUnionType();
91 let temp = unionToUnionInNestedNS(this.fooUnionType(), this.fooUnion.bind(this));
101 …constructor(fooTable = null, fooEnum = EnumInNestedNS.A, fooUnionType = UnionInNestedNS.NONE, fooU… argument
104 this.fooUnionType = fooUnionType;
114 TableInFirstNS.addFooUnionType(builder, this.fooUnionType);
Dtable-in-first-n-s.ts50 fooUnionType():UnionInNestedNS { method in TableInFirstNS
81 static addFooUnionType(builder:flatbuffers.Builder, fooUnionType:UnionInNestedNS) {
82 builder.addFieldInt8(2, fooUnionType, UnionInNestedNS.NONE);
103 this.fooUnionType(),
105 let temp = unionToUnionInNestedNS(this.fooUnionType(), this.fooUnion.bind(this));
117 _o.fooUnionType = this.fooUnionType();
119 let temp = unionToUnionInNestedNS(this.fooUnionType(), this.fooUnion.bind(this));
131 public fooUnionType: UnionInNestedNS = UnionInNestedNS.NONE,
144 TableInFirstNS.addFooUnionType(builder, this.fooUnionType);
/third_party/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.py83 def AddFooUnionType(builder, fooUnionType): builder.PrependUint8Slot(2, fooUnionType, 0) argument
84 def TableInFirstNSAddFooUnionType(builder, fooUnionType): argument
86 return AddFooUnionType(builder, fooUnionType)
110 self.fooUnionType = 0 # type: int
133 self.fooUnionType = tableInFirstNS.FooUnionType()
134 self.fooUnion = UnionInNestedNSCreator(self.fooUnionType, tableInFirstNS.FooUnion())
148 AddFooUnionType(builder, self.fooUnionType)
DTableInFirstNS.kt43 val fooUnionType : UByte constant
48 fun mutateFooUnionType(fooUnionType: UByte) : Boolean { in mutateFooUnionType()
51 bb.put(o + bb_pos, fooUnionType.toByte()) in mutateFooUnionType()
79 …fun addFooUnionType(builder: FlatBufferBuilder, fooUnionType: UByte) = builder.addByte(2, fooUnion… in startTableInFirstNS()
DTableInFirstNS.java22 public byte fooUnionType() { int o = __offset(8); return o != 0 ? bb.get(o + bb_pos) : 0; } in fooUnionType() method in TableInFirstNS
30 …void addFooUnionType(FlatBufferBuilder builder, byte fooUnionType) { builder.addByte(2, fooUnionTy… in addFooUnionType() argument
DTableInFirstNS.lua70 function TableInFirstNS.AddFooUnionType(builder, fooUnionType) builder:PrependUint8Slot(2, fooUnion…
DTableInFirstNS.php126 public static function addFooUnionType(FlatBufferBuilder $builder, $fooUnionType) argument
128 $builder->addByteX(2, $fooUnionType, 0);
DTableInFirstNS.go147 func TableInFirstNSAddFooUnionType(builder *flatbuffers.Builder, fooUnionType NamespaceA__Namespace…
148 builder.PrependByteSlot(2, byte(fooUnionType), 0)
DTableInFirstNS.cs48 …er builder, NamespaceA.NamespaceB.UnionInNestedNS fooUnionType) { builder.AddByte(2, (byte)fooUnio… in AddFooUnionType()
/third_party/flatbuffers/tests/namespace_test/
Dnamespace_test2_namespace_a_generated.dart25 …UnionInNestedNSTypeId get fooUnionType => new UnionInNestedNSTypeId.fromValue(const fb.Uint8Reader…
27 switch (fooUnionType?.value) {
36 …return 'TableInFirstNS{fooTable: $fooTable, fooEnum: $fooEnum, fooUnionType: $fooUnionType, fooUni…
67 int addFooUnionType(UnionInNestedNSTypeId fooUnionType) {
68 fbBuilder.addUint8(2, fooUnionType?.value);
95 UnionInNestedNSTypeId fooUnionType,
101 _fooUnionType = fooUnionType,