Home
last modified time | relevance | path

Searched refs:fooStruct (Results 1 – 11 of 11) sorted by relevance

/third_party/flatbuffers/tests/namespace_test/namespace-a/
Dtable-in-first-n-s.js48 fooStruct(obj) { method in TableInFirstNS
84 })(), (this.fooStruct() !== null ? this.fooStruct().unpack() : null));
97 _o.fooStruct = (this.fooStruct() !== null ? this.fooStruct().unpack() : null);
101 …oEnum = EnumInNestedNS.A, fooUnionType = UnionInNestedNS.NONE, fooUnion = null, fooStruct = null) { argument
106 this.fooStruct = fooStruct;
116 …TableInFirstNS.addFooStruct(builder, (this.fooStruct !== null ? this.fooStruct.pack(builder) : 0));
Dtable-in-first-n-s.ts60 fooStruct(obj?:StructInNestedNS):StructInNestedNS|null { method in TableInFirstNS
109 (this.fooStruct() !== null ? this.fooStruct()!.unpack() : null)
123 _o.fooStruct = (this.fooStruct() !== null ? this.fooStruct()!.unpack() : null);
133 public fooStruct: StructInNestedNST|null = null
146 …TableInFirstNS.addFooStruct(builder, (this.fooStruct !== null ? this.fooStruct!.pack(builder) : 0)…
/third_party/mesa3d/src/compiler/glsl/tests/warnings/
D029-fieldselection.vert11 s fooStruct;
13 fooFloat = fooStruct.c;
14 fooStruct.c = 10.0;
15 fooFloat = fooStruct.c;
16 fooStruct.c = 20.0;
21 fooFloat = fooStruct.x;
D029-fieldselection.vert.expected1 0:13(13): warning: `fooStruct' used uninitialized
/third_party/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.py91 def AddFooStruct(builder, fooStruct): builder.PrependStructSlot(4, flatbuffers.number_types.UOffset… argument
92 def TableInFirstNSAddFooStruct(builder, fooStruct): argument
94 return AddFooStruct(builder, fooStruct)
112 self.fooStruct = None # type: Optional[StructInNestedNST]
136 self.fooStruct = StructInNestedNST.InitFromObj(tableInFirstNS.FooStruct())
151 if self.fooStruct is not None:
152 fooStruct = self.fooStruct.Pack(builder)
153 AddFooStruct(builder, fooStruct)
DTableInFirstNS.kt60 …val fooStruct : NamespaceA.NamespaceB.StructInNestedNS? get() = fooStruct(NamespaceA.NamespaceB.St… constant
61 …fun fooStruct(obj: NamespaceA.NamespaceB.StructInNestedNS) : NamespaceA.NamespaceB.StructInNestedN… in fooStruct() method in NamespaceA.TableInFirstNS
81 … fun addFooStruct(builder: FlatBufferBuilder, fooStruct: Int) = builder.addStruct(4, fooStruct, 0) in startTableInFirstNS()
DTableInFirstNS.java24 …public NamespaceA.NamespaceB.StructInNestedNS fooStruct() { return fooStruct(new NamespaceA.Namesp… in fooStruct() method in TableInFirstNS
25 …public NamespaceA.NamespaceB.StructInNestedNS fooStruct(NamespaceA.NamespaceB.StructInNestedNS obj… in fooStruct() method in TableInFirstNS
DTableInFirstNS.lua72 function TableInFirstNS.AddFooStruct(builder, fooStruct) builder:PrependStructSlot(4, fooStruct, 0)…
DTableInFirstNS.php141 public static function addFooStruct(FlatBufferBuilder $builder, $fooStruct) argument
143 $builder->addStructX(4, $fooStruct, 0);
DTableInFirstNS.go153 func TableInFirstNSAddFooStruct(builder *flatbuffers.Builder, fooStruct flatbuffers.UOffsetT) {
154 builder.PrependStructSlot(4, flatbuffers.UOffsetT(fooStruct), 0)
/third_party/flatbuffers/tests/namespace_test/
Dnamespace_test2_namespace_a_generated.dart32 …namespace_a_namespace_b.StructInNestedNS get fooStruct => namespace_a_namespace_b.StructInNestedNS…
36 …able, fooEnum: $fooEnum, fooUnionType: $fooUnionType, fooUnion: $fooUnion, fooStruct: $fooStruct}';
97 namespace_a_namespace_b.StructInNestedNSObjectBuilder fooStruct,
103 _fooStruct = fooStruct;