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

  /external/chromium/base/
time.h 455 TimeTicks() : ticks_(0) {
480 return ticks_ == 0;
485 return ticks_;
489 ticks_ = other.ticks_;
495 return TimeDelta(ticks_ - other.ticks_);
500 ticks_ += delta.delta_;
504 ticks_ -= delta.delta_;
510 return TimeTicks(ticks_ + delta.delta_)
546 int64 ticks_; member in class:base::TimeTicks
    [all...]
  /external/chromium_org/base/time/
time.h 529 TimeTicks() : ticks_(0) {
579 return ticks_ == 0;
593 return ticks_;
597 ticks_ = other.ticks_;
603 return TimeDelta(ticks_ - other.ticks_);
608 ticks_ += delta.delta_;
612 ticks_ -= delta.delta_;
618 return TimeTicks(ticks_ + delta.delta_)
653 int64 ticks_; member in class:base::TimeTicks
    [all...]
  /external/chromium_org/net/quic/
quic_time.h 99 base::TimeTicks ticks_; member in class:net::QuicTime
164 return lhs.ticks_ == rhs.ticks_;
170 return lhs.ticks_ < rhs.ticks_;
quic_time.cc 79 : ticks_(ticks) {
83 return (ticks_ - base::TimeTicks()).InMicroseconds();
87 return ticks_ != base::TimeTicks();
91 return QuicTime(ticks_ + delta.delta_);
95 return QuicTime(ticks_ - delta.delta_);
99 return QuicTime::Delta(ticks_ - other.ticks_);
  /external/v8/tools/
tickprocessor.js 194 var ticks = this.ticks_ =
356 this.ticks_.total++;
357 if (vmState == TickProcessor.VmStates.GC) this.ticks_.gc++;
359 this.ticks_.excluded++;
408 ', (' + this.ticks_.total +
409 ' ticks, ' + this.ticks_.unaccounted + ' unaccounted, ' +
410 this.ticks_.excluded + ' excluded).');
412 if (this.ticks_.total == 0) return;
415 if (!this.ignoreUnknown_ && this.ticks_.unaccounted > 0) {
417 this.printCounter(this.ticks_.unaccounted, this.ticks_.total)
    [all...]
  /external/chromium_org/v8/tools/
tickprocessor.js 200 var ticks = this.ticks_ =
379 this.ticks_.total++;
380 if (vmState == TickProcessor.VmStates.GC) this.ticks_.gc++;
382 this.ticks_.excluded++;
436 ', (' + this.ticks_.total +
437 ' ticks, ' + this.ticks_.unaccounted + ' unaccounted, ' +
438 this.ticks_.excluded + ' excluded).');
440 if (this.ticks_.total == 0) return;
443 if (!this.ignoreUnknown_ && this.ticks_.unaccounted > 0) {
445 this.printCounter(this.ticks_.unaccounted, this.ticks_.total)
    [all...]
  /external/chromium_org/v8/src/
hydrogen.cc 6028 int ticks_; member in class:v8::internal::FunctionSorter
    [all...]

Completed in 199 milliseconds