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

  /external/chromium_org/v8/src/base/platform/
time.h 176 Time() : us_(0) {}
179 bool IsNull() const { return us_ == 0; }
182 bool IsMax() const { return us_ == std::numeric_limits<int64_t>::max(); }
208 return us_;
229 us_ = other.us_;
235 return TimeDelta::FromMicroseconds(us_ - other.us_);
240 us_ += delta.InMicroseconds();
244 us_ -= delta.InMicroseconds()
280 int64_t us_; member in class:v8::base::FINAL
    [all...]
  /external/chromium_org/base/time/
time.h 261 Time() : us_(0) {
266 return us_ == 0;
271 return us_ == std::numeric_limits<int64>::max();
397 return us_;
414 us_ = other.us_;
420 return TimeDelta(us_ - other.us_);
425 us_ += delta.delta_;
429 us_ -= delta.delta_
491 int64 us_; member in class:base::Time
    [all...]

Completed in 55 milliseconds