HomeSort by relevance Sort by last modified time
    Searched refs:seconds_ (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
TimeValue.cpp 29 seconds_++;
34 seconds_--;
39 if (seconds_ >= 1 && nanos_ < 0) {
40 seconds_--;
42 } else if (seconds_ < 0 && nanos_ > 0) {
43 seconds_++;
  /external/llvm/include/llvm/Support/
TimeValue.h 95 TimeValue() : seconds_(0), nanos_(0) {}
101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
107 : seconds_( 0 ) , nanos_ ( 0 ) {
109 seconds_ = integer_part;
128 this->seconds_ += that.seconds_ ;
138 this->seconds_ -= that.seconds_ ;
153 if ( this->seconds_ > that.seconds_ ) {
362 SecondsType seconds_;\/\/\/< Stores the seconds part of the TimeVal member in class:llvm::sys::TimeValue
    [all...]

Completed in 513 milliseconds