Lines Matching refs:this
63 * In JavaScript, one can convert a Date object to this format using the
66 * to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime)
70 * ) to obtain a formatter capable of generating timestamps in this format.
126 return $this->seconds;
136 * @return $this
141 $this->seconds = $var;
143 return $this;
157 return $this->nanos;
168 * @return $this
173 $this->nanos = $var;
175 return $this;
185 $this->seconds = $datetime->getTimestamp();
186 $this->nanos = 1000 * $datetime->format('u');
196 $time = sprintf('%s.%06d', $this->seconds, $this->nanos / 1000);