Lines Matching defs:nanos
24 * duration.nanos = end.nanos - start.nanos;
25 * if (duration.seconds < 0 && duration.nanos > 0) {
27 * duration.nanos -= 1000000000;
28 * } else if (durations.seconds > 0 && duration.nanos < 0) {
30 * duration.nanos += 1000000000;
37 * end.nanos = start.nanos + duration.nanos;
38 * if (end.nanos < 0) {
40 * end.nanos += 1000000000;
41 * } else if (end.nanos >= 1000000000) {
43 * end.nanos -= 1000000000;
73 * `seconds` field and a positive or negative `nanos` field. For durations
74 * of one second or more, a non-zero value for the `nanos` field must be
78 * Generated from protobuf field <code>int32 nanos = 2;</code>
80 private $nanos = 0;
92 * @type int $nanos
95 * `seconds` field and a positive or negative `nanos` field. For durations
96 * of one second or more, a non-zero value for the `nanos` field must be
139 * `seconds` field and a positive or negative `nanos` field. For durations
140 * of one second or more, a non-zero value for the `nanos` field must be
144 * Generated from protobuf field <code>int32 nanos = 2;</code>
149 return $this->nanos;
155 * `seconds` field and a positive or negative `nanos` field. For durations
156 * of one second or more, a non-zero value for the `nanos` field must be
160 * Generated from protobuf field <code>int32 nanos = 2;</code>
167 $this->nanos = $var;