Lines Matching full:this
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
7 * "License"); you may not use this file except in compliance
51 int get i => this._i;
54 this._i = i;
55 this.__isset_i = true;
58 bool isSetI() => this.__isset_i;
61 this.__isset_i = false;
65 double get d => this._d;
68 this._d = d;
69 this.__isset_d = true;
72 bool isSetD() => this.__isset_d;
75 this.__isset_d = false;
79 String get s => this._s;
82 this._s = s;
85 bool isSetS() => this.s != null;
88 this.s = null;
92 List<String> get l => this._l;
95 this._l = l;
98 bool isSetL() => this.l != null;
101 this.l = null;
105 bool get b => this._b;
108 this._b = b;
109 this.__isset_b = true;
112 bool isSetB() => this.__isset_b;
115 this.__isset_b = false;
122 return this.i;
124 return this.d;
126 return this.s;
128 return this.l;
130 return this.b;
143 this.i = value;
151 this.d = value;
159 this.s = value;
167 this.l = value as List<String>;
175 this.b = value;
215 this.i = iprot.readI32();
216 this.__isset_i = true;
223 this.d = iprot.readDouble();
224 this.__isset_d = true;
231 this.s = iprot.readString();
240 this.l = List<String>();
244 this.l.add(_elem76);
254 this.b = iprot.readBool();
255 this.__isset_b = true;
278 oprot.writeI32(this.i);
281 oprot.writeDouble(this.d);
283 if (this.s != null) {
285 oprot.writeString(this.s);
288 if (this.l != null) {
291 oprot.writeListBegin(TList(TType.STRING, this.l.length));
292 for (var elem77 in this.l) {
300 oprot.writeBool(this.b);
311 ret.write(this.i);
315 ret.write(this.d);
319 if (this.s == null) {
322 ret.write(this.s);
327 if (this.l == null) {
330 ret.write(this.l);
335 ret.write(this.b);