Lines Matching refs:this

101       : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }  in seconds_()
112 this->normalize(); in TimeValue()
128 this->seconds_ += that.seconds_ ;
129 this->nanos_ += that.nanos_ ;
130 this->normalize();
131 return *this;
138 this->seconds_ -= that.seconds_ ;
139 this->nanos_ -= that.nanos_ ;
140 this->normalize();
141 return *this;
147 int operator < (const TimeValue &that) const { return that > *this; }
153 if ( this->seconds_ > that.seconds_ ) {
155 } else if ( this->seconds_ == that.seconds_ ) {
156 if ( this->nanos_ > that.nanos_ ) return 1;
164 int operator <= (const TimeValue &that) const { return that >= *this; }
169 if ( this->seconds_ > that.seconds_ ) {
171 } else if ( this->seconds_ == that.seconds_ ) {
172 if ( this->nanos_ >= that.nanos_ ) return 1;
180 return (this->seconds_ == that.seconds_) &&
181 (this->nanos_ == that.nanos_);
187 int operator != (const TimeValue &that) const { return !(*this == that); }
286 this->seconds_ = sec; in seconds()
287 this->normalize(); in seconds()
297 this->nanos_ = nanos; in nanoseconds()
298 this->normalize(); in nanoseconds()
304 this->nanos_ = micros * NANOSECONDS_PER_MICROSECOND; in microseconds()
305 this->normalize(); in microseconds()
311 this->nanos_ = millis * NANOSECONDS_PER_MILLISECOND; in milliseconds()
312 this->normalize(); in milliseconds()
317 this->seconds_ = microseconds / MICROSECONDS_PER_SECOND; in usec()
318 this->nanos_ = NanoSecondsType(microseconds % MICROSECONDS_PER_SECOND) * in usec()
320 this->normalize(); in usec()
325 this->seconds_ = milliseconds / MILLISECONDS_PER_SECOND; in msec()
326 this->nanos_ = NanoSecondsType(milliseconds % MILLISECONDS_PER_SECOND) * in msec()
328 this->normalize(); in msec()
337 this->normalize(); in fromEpochTime()
344 this->seconds_ = win32Time / 10000000 + Win32ZeroTimeSeconds; in fromWin32Time()
345 this->nanos_ = NanoSecondsType(win32Time % 10000000) * 100; in fromWin32Time()