Lines Matching refs:this
53 * Should this field be parsed lazily? Lazy applies only to message-type
58 * eager or lazy parsing regardless of the value of this option. However,
59 * setting this option true suggests that the protocol author believes that
60 * using lazy parsing on this field is worth the additional bookkeeping
64 * interface is not affected by this option; const methods remain safe to
82 * Is this field deprecated?
83 * Depending on the target platform, this can emit Deprecated annotations
84 * for accessors, or it will be completely ignored; in the very least, this
132 * Should this field be parsed lazily? Lazy applies only to message-type
137 * eager or lazy parsing regardless of the value of this option. However,
138 * setting this option true suggests that the protocol author believes that
139 * using lazy parsing on this field is worth the additional bookkeeping
143 * interface is not affected by this option; const methods remain safe to
157 * Is this field deprecated?
158 * Depending on the target platform, this can emit Deprecated annotations
159 * for accessors, or it will be completely ignored; in the very least, this
183 return isset($this->ctype) ? $this->ctype : 0;
188 return isset($this->ctype);
193 unset($this->ctype);
204 * @return $this
209 $this->ctype = $var;
211 return $this;
226 return isset($this->packed) ? $this->packed : false;
231 return isset($this->packed);
236 unset($this->packed);
248 * @return $this
253 $this->packed = $var;
255 return $this;
275 return isset($this->jstype) ? $this->jstype : 0;
280 return isset($this->jstype);
285 unset($this->jstype);
302 * @return $this
307 $this->jstype = $var;
309 return $this;
313 * Should this field be parsed lazily? Lazy applies only to message-type
318 * eager or lazy parsing regardless of the value of this option. However,
319 * setting this option true suggests that the protocol author believes that
320 * using lazy parsing on this field is worth the additional bookkeeping
324 * interface is not affected by this option; const methods remain safe to
343 return isset($this->lazy) ? $this->lazy : false;
348 return isset($this->lazy);
353 unset($this->lazy);
357 * Should this field be parsed lazily? Lazy applies only to message-type
362 * eager or lazy parsing regardless of the value of this option. However,
363 * setting this option true suggests that the protocol author believes that
364 * using lazy parsing on this field is worth the additional bookkeeping
368 * interface is not affected by this option; const methods remain safe to
384 * @return $this
389 $this->lazy = $var;
391 return $this;
395 * Is this field deprecated?
396 * Depending on the target platform, this can emit Deprecated annotations
397 * for accessors, or it will be completely ignored; in the very least, this
405 return isset($this->deprecated) ? $this->deprecated : false;
410 return isset($this->deprecated);
415 unset($this->deprecated);
419 * Is this field deprecated?
420 * Depending on the target platform, this can emit Deprecated annotations
421 * for accessors, or it will be completely ignored; in the very least, this
426 * @return $this
431 $this->deprecated = $var;
433 return $this;
444 return isset($this->weak) ? $this->weak : false;
449 return isset($this->weak);
454 unset($this->weak);
462 * @return $this
467 $this->weak = $var;
469 return $this;
480 return $this->uninterpreted_option;
488 * @return $this
493 $this->uninterpreted_option = $arr;
495 return $this;