Searched refs:start_time (Results 1 - 25 of 390) sorted by relevance

1234567891011>>

/external/chromium_org/media/base/
H A Dtext_ranges.cc22 bool TextRanges::AddCue(base::TimeDelta start_time) { argument
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 >
92 NewRange(base::TimeDelta start_time) argument
111 ResetCount(base::TimeDelta start_time) argument
121 AddCue(base::TimeDelta start_time) argument
[all...]
H A Dtext_ranges.h28 // 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/
H A Dwait-a-while.c12 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/
H A Dframe_counter.cc11 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/chrome/common/media/
H A Dwebrtc_logging_message_data.cc16 WebRtcLoggingMessageData::Format(base::Time start_time) const {
18 static_cast<int32>((timestamp - start_time).InMilliseconds());
H A Dwebrtc_logging_message_data.h18 // 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/
H A Dlayer_animation_sequence_unittest.cc27 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
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...]
H A Dlayer_animation_element_unittest.cc30 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...]
/external/chromium-trace/trace-viewer/examples/stream_server/handlers/
H A Dstream_wsh.py12 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
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dtiming.cc72 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/content/browser/download/
H A Ddownload_create_info.cc14 DownloadCreateInfo::DownloadCreateInfo(const base::Time& start_time, argument
20 : start_time(start_time),
H A Ddownload_create_info.h27 DownloadCreateInfo(const base::Time& start_time,
55 base::Time start_time; member in struct:content::DownloadCreateInfo
/external/chromium_org/chrome/test/mini_installer/
H A Dlaunch_chrome.py29 start_time = time.time()
30 while time.time() - start_time < 30:
/external/chromium_org/ui/gfx/animation/
H A Danimation_container_element.h19 virtual void SetStartTime(base::TimeTicks start_time) = 0;
/external/chromium_org/media/cast/logging/
H A Dlogging_impl_unittest.cc48 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 local
177 base::TimeTicks start_time = testing_clock_.NowTicks(); local
[all...]
/external/chromium_org/content/public/test/
H A Dmock_download_manager.cc20 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,
12 CreateDownloadItemAdapter( uint32 id, const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer_url, const std::string& mime_type, const std::string& original_mime_type, const base::Time& start_time, const base::Time& end_time, const std::string& etag, const std::string& last_modified, int64 received_bytes, int64 total_bytes, DownloadItem::DownloadState state, DownloadDangerType danger_type, DownloadInterruptReason interrupt_reason, bool opened) argument
98 CreateDownloadItem( uint32 id, const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer_url, const std::string& mime_type, const std::string& original_mime_type, const base::Time& start_time, const base::Time& end_time, const std::string& etag, const std::string& last_modified, int64 received_bytes, int64 total_bytes, DownloadItem::DownloadState state, DownloadDangerType danger_type, DownloadInterruptReason interrupt_reason, bool opened) argument
/external/chromium_org/ui/gfx/
H A Dinterpolated_transform.h31 // 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/
H A Dexported_object.cc93 const base::TimeTicks start_time = base::TimeTicks::Now(); local
98 start_time,
140 void ExportedObject::SendSignalInternal(base::TimeTicks start_time, argument
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, argument
231 RunMethod(MethodCallCallback method_call_callback, scoped_ptr<MethodCall> method_call, base::TimeTicks start_time) argument
260 OnMethodCompleted(scoped_ptr<MethodCall> method_call, scoped_ptr<Response> response, base::TimeTicks start_time) argument
[all...]
/external/vixl/tools/
H A Dprinter.py59 def UpdateProgress(start_time, passed, failed, count, verbose, name):
63 minutes, seconds = divmod(time.time() - start_time, 60)
/external/chromium_org/chrome/installer/tools/
H A Dsetup_timer.py44 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/
H A Dtest_utils.cc74 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/
H A Ducnvavailperf.cpp113 UTimer start_time; local
114 utimer_getTime(&start_time);
117 double elapsed = utimer_getElapsedSeconds(&start_time);
/external/chromium_org/ui/gfx/android/
H A Dscroller_unittest.cc31 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
[all...]
/external/icu/icu4c/source/test/perf/ucnvavailperf/
H A Ducnvavailperf.cpp113 UTimer start_time; local
114 utimer_getTime(&start_time);
117 double elapsed = utimer_getElapsedSeconds(&start_time);
/external/tremolo/Tremolo/
H A Dmisc.c62 long start_time=-1; variable
115 if(start_time==-1)start_time=(tv.tv_sec*1000)+(tv.tv_usec/1000);
121 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
124 -start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
129 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
131 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
156 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
158 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
169 fprintf(out,"%ld, %ld\n",-start_time
[all...]

Completed in 729 milliseconds

1234567891011>>