Lines Matching refs:seconds_
89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
95 : seconds_( 0 ) , nanos_ ( 0 ) {
97 seconds_ = integer_part;
116 this->seconds_ += that.seconds_ ;
126 this->seconds_ -= that.seconds_ ;
141 if ( this->seconds_ > that.seconds_ ) {
143 } else if ( this->seconds_ == that.seconds_ ) {
157 if ( this->seconds_ > that.seconds_ ) {
159 } else if ( this->seconds_ == that.seconds_ ) {
168 return (this->seconds_ == that.seconds_) &&
195 SecondsType seconds() const { return seconds_; }
222 return seconds_ * MICROSECONDS_PER_SECOND +
232 return seconds_ * MILLISECONDS_PER_SECOND +
240 uint64_t result = seconds_ - PosixZeroTime.seconds_;
248 return seconds_ - PosixZeroTime.seconds_;
255 uint64_t result = seconds_ - Win32ZeroTime.seconds_;
264 seconds = seconds_ - PosixZeroTime.seconds_;
282 this->seconds_ = sec;
313 this->seconds_ = microseconds / MICROSECONDS_PER_SECOND;
321 this->seconds_ = milliseconds / MILLISECONDS_PER_SECOND;
331 seconds_ = seconds + PosixZeroTime.seconds_;
340 this->seconds_ = win32Time / 10000000 + Win32ZeroTime.seconds_;
358 SecondsType seconds_;///< Stores the seconds part of the TimeVal
365 TimeValue sum (tv1.seconds_ + tv2.seconds_, tv1.nanos_ + tv2.nanos_);
371 TimeValue difference (tv1.seconds_ - tv2.seconds_, tv1.nanos_ - tv2.nanos_ );