HomeSort by relevance Sort by last modified time
    Searched refs:start_time_ (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/sdch/open-vcdiff/src/
testing.h 65 start_time_.tv_sec = 0;
66 start_time_.tv_usec = 0;
72 gettimeofday(&start_time_, NULL);
85 (1000000 * (end_time.tv_sec - start_time_.tv_sec))
86 + end_time.tv_usec - start_time_.tv_usec;
87 start_time_.tv_sec = 0;
88 start_time_.tv_usec = 0;
97 return (start_time_.tv_usec > 0) || (start_time_.tv_sec > 0);
100 struct timeval start_time_; member in class:open_vcdiff::CycleTimer
    [all...]
  /external/chromium_org/content/renderer/
stats_collection_observer.h 28 const base::Time& load_start_time() { return start_time_; }
32 base::Time start_time_; member in class:content::StatsCollectionObserver
stats_collection_observer.cc 20 DCHECK(start_time_.is_null());
21 start_time_ = base::Time::Now();
  /external/chromium_org/mojo/system/
test_utils.h 47 void Start() { start_time_ = base::TimeTicks::Now(); }
49 base::TimeDelta Elapsed() { return base::TimeTicks::Now() - start_time_; }
52 base::TimeTicks start_time_; member in class:mojo::system::test::Stopwatch
  /external/ceres-solver/internal/ceres/
wall_time.h 80 const double start_time_; member in class:ceres::internal::EventLogger
execution_summary.h 73 : start_time_(WallTimeInSeconds()),
78 summary_->IncrementTimeBy(name_, WallTimeInSeconds() - start_time_);
82 const double start_time_; member in class:ceres::internal::ScopedExecutionTimer
wall_time.cc 63 : start_time_(WallTimeInSeconds()),
64 last_event_time_(start_time_),
85 const double absolute_time_delta = current_time - start_time_;
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_base.h 39 base::Time start_time_; member in class:extensions::LoggedAsyncExtensionFunction
private_api_base.cc 20 start_time_ = base::Time::Now();
29 int64 elapsed = (base::Time::Now() - start_time_).InMilliseconds();
  /external/chromium_org/net/quic/
quic_sustained_bandwidth_recorder.cc 20 start_time_(QuicTime::Zero()) {}
36 start_time_ = estimate_time;
38 DVLOG(1) << "Started recording at: " << start_time_.ToDebuggingValue();
44 if (estimate_time.Subtract(start_time_) >= srtt.Multiply(3)) {
quic_sustained_bandwidth_recorder.h 85 QuicTime start_time_; member in class:net::QuicSustainedBandwidthRecorder
  /external/chromium_org/components/startup_metric_utils/
startup_metric_utils.h 66 : start_time_(base::TimeTicks::Now()),
72 const base::TimeTicks start_time_; member in class:startup_metric_utils::ScopedSlowStartupUMA
  /external/chromium_org/cc/debug/
lap_timer.h 50 base::TimeTicks start_time_; member in class:cc::LapTimer
lap_timer.cc 42 start_time_ = Now();
59 accumulator_ += now - start_time_;
60 start_time_ = now;
  /external/chromium_org/testing/gtest/samples/
sample5_unittest.cc 68 start_time_ = time(NULL);
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
84 time_t start_time_; member in class:QuickTest
  /external/chromium_org/base/metrics/
stats_counters.cc 82 start_time_ = TimeTicks::Now();
96 return Enabled() && !start_time_.is_null() && stop_time_.is_null();
105 AddTime(stop_time_ - start_time_);
  /external/chromium_org/cc/input/
page_scale_animation.h 68 base::TimeTicks start_time() const { return start_time_; }
70 base::TimeTicks end_time() const { return start_time_ + duration_; }
106 base::TimeTicks start_time_; member in class:cc::PageScaleAnimation
page_scale_animation.cc 168 return start_time_ > base::TimeTicks();
172 DCHECK(start_time_.is_null());
173 start_time_ = time;
178 DCHECK(!start_time_.is_null());
183 DCHECK(!start_time_.is_null());
188 DCHECK(!start_time_.is_null());
193 DCHECK(!start_time_.is_null());
194 DCHECK(monotonic_time >= start_time_);
198 (monotonic_time - start_time_).InSecondsF() / duration_.InSecondsF();
  /external/chromium_org/ui/compositor/
layer_animation_sequence.h 47 void set_start_time(base::TimeTicks start_time) { start_time_ = start_time; }
48 base::TimeTicks start_time() const { return start_time_; }
166 base::TimeTicks start_time_; member in class:ui::LayerAnimationSequence
  /development/ndk/sources/android/ndk_helper/
interpolator.cpp 51 start_time_ = PerfMonitor::GetCurrentTime();
52 dest_time_ = start_time_ + duration;
93 float t = (float) (current_time - start_time_);
94 float d = (float) (dest_time_ - start_time_);
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_host_metrics.h 88 base::TimeTicks start_time_; member in class:SpellCheckHostMetrics
  /external/chromium_org/content/test/plugin/
plugin_schedule_timer_test.h 56 base::Time start_time_; member in class:NPAPIClient::ScheduleTimerTest
  /external/chromium_org/chrome/service/cloud_print/
job_status_updater.h 57 return start_time_;
64 base::Time start_time_; member in class:cloud_print::JobStatusUpdater
  /external/chromium_org/ui/gfx/animation/
animation.h 80 base::TimeTicks start_time() const { return start_time_; }
102 base::TimeTicks start_time_; member in class:gfx::Animation
  /external/chromium_org/base/threading/
watchdog.cc 96 start_time_ = start_time;
133 (TimeTicks::Now() - watchdog_->start_time_);
143 if (static_data->last_debugged_alarm_time > watchdog_->start_time_) {
146 watchdog_->start_time_ += static_data->last_debugged_alarm_delay;
147 if (static_data->last_debugged_alarm_time > watchdog_->start_time_)

Completed in 994 milliseconds

1 2 3 4 5 6 7