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

  /external/chromium_org/v8/src/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::internal::BASE_EMBEDDED
    [all...]
  /external/chromium_org/base/time/
time.h 256 Time() : us_(0) {
261 return us_ == 0;
266 return us_ == std::numeric_limits<int64>::max();
398 return us_;
415 us_ = other.us_;
421 return TimeDelta(us_ - other.us_);
426 us_ += delta.delta_;
430 us_ -= delta.delta_
502 int64 us_; member in class:base::Time
    [all...]

Completed in 169 milliseconds