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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/media/base/
text_ranges.cc 22 bool TextRanges::AddCue(base::TimeDelta start_time) {
30 NewRange(start_time);
34 if (start_time < range_map_.begin()->first) {
35 NewRange(start_time);
39 const Itr itr = --Itr(range_map_.upper_bound(start_time));
40 DCHECK(start_time >= itr->first);
44 if (start_time > range.last_time()) {
45 NewRange(start_time);
49 range.ResetCount(start_time);
54 DCHECK(start_time >= curr_range_itr_->first)
    [all...]
text_ranges.h 28 // Given a cue with starting timestamp |start_time|, add its start
35 bool AddCue(base::TimeDelta start_time);
47 void ResetCount(base::TimeDelta start_time);
53 // returning true if we have not seen |start_time| already and
55 bool AddCue(base::TimeDelta start_time);
77 // range contains the indicated |start_time| of the cue.
78 void NewRange(base::TimeDelta start_time);
  /external/lldb/test/expression_command/timeout/
wait-a-while.c 12 struct timeval start_time; local
13 gettimeofday(&start_time, NULL);
14 uint64_t target = start_time.tv_sec * 1000000 + start_time.tv_usec + interval;
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
frame_counter.cc 11 struct timeval start_time; local
12 gettimeofday(&start_time, NULL);
13 frame_start_ = start_time.tv_sec * kMicroSecondsPerSecond +
14 start_time.tv_usec;
  /external/chromium_org/ui/gfx/animation/
animation_container_element.h 19 virtual void SetStartTime(base::TimeTicks start_time) = 0;
  /external/chromium_org/chrome/common/media/
webrtc_logging_message_data.cc 16 WebRtcLoggingMessageData::Format(base::Time start_time) const {
18 static_cast<int32>((timestamp - start_time).InMilliseconds());
webrtc_logging_message_data.h 18 // the timestamp relative to |start_time| converted to seconds (XXX) plus
20 std::string Format(base::Time start_time) const;
  /external/chromium_org/ui/compositor/
layer_animation_sequence_unittest.cc 27 base::TimeTicks start_time; local
28 start_time += base::TimeDelta::FromSeconds(1);
29 sequence.set_start_time(start_time);
30 EXPECT_TRUE(sequence.IsFinished(start_time));
45 base::TimeTicks start_time; local
51 start_time += delta;
52 sequence.set_start_time(start_time);
55 sequence.Progress(start_time, &delegate);
57 sequence.Progress(start_time + base::TimeDelta::FromMilliseconds(500),
60 EXPECT_TRUE(sequence.IsFinished(start_time + delta))
79 base::TimeTicks start_time; local
121 base::TimeTicks start_time; local
210 base::TimeTicks start_time; local
262 base::TimeTicks start_time; local
    [all...]
layer_animation_element_unittest.cc 30 base::TimeTicks start_time; local
39 start_time = effective_start_time + delta;
40 element->set_requested_start_time(start_time);
43 element->Progress(start_time, &delegate);
46 effective_start_time = start_time + delta;
101 base::TimeTicks start_time; local
103 start_time += delta;
115 base_element->set_requested_start_time(start_time);
116 inverse_element->set_requested_start_time(start_time);
139 base::TimeTicks start_time; local
175 base::TimeTicks start_time; local
216 base::TimeTicks start_time; local
251 base::TimeTicks start_time; local
286 base::TimeTicks start_time; local
322 base::TimeTicks start_time; local
361 base::TimeTicks start_time; local
400 base::TimeTicks start_time; local
    [all...]
compositor_observer.h 32 base::TimeTicks start_time) = 0;
  /external/chromium-trace/trace-viewer/examples/stream_server/handlers/
stream_wsh.py 12 def make_slice(start_time, elapsed_time, label, last):
16 out.append('\"s\": {0},'.format(start_time))
17 out.append('\"e\": {0}'.format(start_time+elapsed_time))
48 def make_count(start_time, value, last):
51 out.append('\"t\": {0},'.format(start_time))
89 start_time = 0;
91 msg = make_thread_command(start_time, 'apple')
93 msg = make_thread_command(start_time+1, 'banana')
95 msg = make_thread_command(start_time+2, 'cherry')
97 msg = make_counter_command(start_time+2, 'Base', 'Bytes'
    [all...]
  /external/chromium_org/content/browser/download/
download_create_info.cc 14 DownloadCreateInfo::DownloadCreateInfo(const base::Time& start_time,
20 : start_time(start_time),
download_create_info.h 27 DownloadCreateInfo(const base::Time& start_time,
55 base::Time start_time; member in struct:content::DownloadCreateInfo
  /external/chromium_org/third_party/webrtc/base/
timing.cc 72 double start_time = TimerNow(); local
73 while (TimerNow() - start_time < period) {
75 return TimerNow() - start_time;
79 double start_time = TimerNow(); local
110 return TimerNow() - start_time;
  /external/chromium_org/media/cast/logging/
logging_impl_unittest.cc 48 base::TimeTicks start_time = testing_clock_.NowTicks(); local
49 base::TimeDelta time_interval = testing_clock_.NowTicks() - start_time;
61 time_interval = now - start_time;
76 base::TimeTicks start_time = testing_clock_.NowTicks(); local
77 base::TimeDelta time_interval = testing_clock_.NowTicks() - start_time;
92 time_interval = testing_clock_.NowTicks() - start_time;
106 base::TimeTicks start_time = testing_clock_.NowTicks(); local
107 base::TimeDelta time_interval = testing_clock_.NowTicks() - start_time;
123 time_interval = testing_clock_.NowTicks() - start_time;
133 base::TimeTicks start_time = testing_clock_.NowTicks() local
177 base::TimeTicks start_time = testing_clock_.NowTicks(); local
    [all...]
  /external/chromium_org/content/public/test/
mock_download_manager.cc 20 const base::Time& start_time,
37 start_time(start_time),
53 start_time(rhs.start_time),
75 start_time == rhs.start_time &&
106 const base::Time& start_time,
118 original_mime_type, start_time, end_time, etag, last_modified,
  /external/chromium_org/ui/gfx/
interpolated_transform.h 31 // The interpolated transform varies only when t in (start_time, end_time).
32 // If t <= start_time, Interpolate(t) will return the initial transform, and
34 InterpolatedTransform(float start_time, float end_time);
63 float start_time() const { return start_time_; } function in class:ui::InterpolatedTransform
92 float start_time,
120 float start_time,
145 float start_time, float end_time);
150 float start_time,
170 float start_time,
225 float start_time,
    [all...]
  /external/chromium_org/dbus/
exported_object.cc 93 const base::TimeTicks start_time = base::TimeTicks::Now(); local
98 start_time,
140 void ExportedObject::SendSignalInternal(base::TimeTicks start_time,
149 base::TimeTicks::Now() - start_time);
207 const base::TimeTicks start_time = base::TimeTicks::Now(); local
215 start_time));
222 start_time,
233 base::TimeTicks start_time) {
239 start_time,
243 void ExportedObject::SendResponse(base::TimeTicks start_time,
    [all...]
exported_object.h 124 void SendSignalInternal(base::TimeTicks start_time,
141 base::TimeTicks start_time);
146 void SendResponse(base::TimeTicks start_time,
154 base::TimeTicks start_time);
  /external/chromium_org/chrome/test/mini_installer/
launch_chrome.py 29 start_time = time.time()
30 while time.time() - start_time < 30:
  /external/chromium_org/chrome/installer/tools/
setup_timer.py 44 start_time = 0
51 start_time = time.clock()
71 elapsed_time = round(time.clock() - start_time, 2)
99 start_time = time.clock()
  /external/chromium_org/mojo/public/cpp/test_support/lib/
test_utils.cc 74 const MojoTimeTicks start_time = GetTimeTicksNow(); local
83 } while (end_time - start_time < kPerftestTimeMicroseconds);
86 1000000.0 * iterations / (end_time - start_time),
  /external/chromium_org/third_party/icu/source/test/perf/ucnvavailperf/
ucnvavailperf.cpp 113 UTimer start_time; local
114 utimer_getTime(&start_time);
117 double elapsed = utimer_getElapsedSeconds(&start_time);
  /external/chromium_org/ui/gfx/android/
scroller.h 37 base::TimeTicks start_time);
45 base::TimeTicks start_time,
58 base::TimeTicks start_time);
scroller_unittest.cc 31 base::TimeTicks start_time = base::TimeTicks::Now(); local
38 start_time);
51 scroller.ComputeScrollOffset(start_time + scroll_duration / 2);
72 scroller.ComputeScrollOffset(start_time + scroll_duration / 2);
79 scroller.ComputeScrollOffset(start_time + scroll_duration);
88 scroller.ComputeScrollOffset(start_time + scroll_duration * 2);
97 base::TimeTicks start_time = base::TimeTicks::Now(); local
108 start_time);
121 scroller.ComputeScrollOffset(start_time + scroll_duration / 2);
144 scroller.ComputeScrollOffset(start_time + scroll_duration / 2)
    [all...]

Completed in 1278 milliseconds

1 2 3 4 5 6 7 8 91011>>