HomeSort by relevance Sort by last modified time
    Searched refs:start_time (Results 1 - 25 of 488) 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/ui/events/gestures/
velocity_calculator_unittest.cc 65 int64 start_time = 0; local
66 velocity_calculator.PointSeen(9, -11, start_time);
67 velocity_calculator.PointSeen(21, -19, start_time + 8);
68 velocity_calculator.PointSeen(30, -32, start_time + 16);
69 velocity_calculator.PointSeen(38, -40, start_time + 24);
70 velocity_calculator.PointSeen(50, -51, start_time + 32);
77 start_time = 1223372036800000000LL;
78 velocity_calculator.PointSeen(9, -11, start_time);
79 velocity_calculator.PointSeen(21, -19, start_time + 8);
80 velocity_calculator.PointSeen(30, -32, start_time + 16)
93 int64 start_time = 0; local
    [all...]
  /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 30 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/chrome/browser/ui/app_list/
app_list_service.cc 60 void RecordStartupInfo(StartupType startup_type, const base::Time& start_time) {
61 g_original_process_start_time = start_time.ToInternalValue();
66 base::Time start_time(
68 base::TimeDelta elapsed = base::Time::Now() - start_time;
110 base::Time start_time = GetOriginalProcessStartTime(command_line); local
111 if (start_time.is_null())
114 base::TimeDelta elapsed = base::Time::Now() - start_time;
128 RecordStartupInfo(startup, start_time);
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
repaint_continuously.py 19 start_time = time.time()
35 elapsed_time = time.time() - start_time
  /external/chromium_org/components/domain_reliability/
beacon.h 40 base::TimeTicks start_time; member in struct:domain_reliability::DomainReliabilityBeacon
  /external/chromium_org/third_party/libjingle/source/talk/base/
timing.cc 88 double start_time = TimerNow(); local
89 while (TimerNow() - start_time < period) {
91 return TimerNow() - start_time;
95 double start_time = TimerNow(); local
126 return TimerNow() - start_time;
  /external/chromium_org/third_party/webrtc/base/
timing.cc 71 double start_time = TimerNow(); local
72 while (TimerNow() - start_time < period) {
74 return TimerNow() - start_time;
78 double start_time = TimerNow(); local
109 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/net/disk_cache/tracing/
tracing_cache_backend.cc 50 void RecordEvent(base::TimeTicks start_time, Operation op, RwOpExtra extra,
52 void EntryOpComplete(base::TimeTicks start_time, Operation op,
95 base::TimeTicks start_time = base::TimeTicks::Now(); local
103 base::Bind(&EntryProxy::EntryOpComplete, this, start_time,
106 RecordEvent(start_time, TracingCacheBackend::OP_READ, extra, rv);
114 base::TimeTicks start_time = base::TimeTicks::Now(); local
121 base::Bind(&EntryProxy::EntryOpComplete, this, start_time,
125 RecordEvent(start_time, TracingCacheBackend::OP_WRITE, extra, rv);
159 void EntryProxy::RecordEvent(base::TimeTicks start_time, Operation op,
164 void EntryProxy::EntryOpComplete(base::TimeTicks start_time, Operation op
245 base::TimeTicks start_time = base::TimeTicks::Now(); local
260 base::TimeTicks start_time = base::TimeTicks::Now(); local
275 base::TimeTicks start_time = base::TimeTicks::Now(); local
    [all...]
  /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 101 const base::TimeTicks start_time = base::TimeTicks::Now(); local
106 start_time,
148 void ExportedObject::SendSignalInternal(base::TimeTicks start_time,
157 base::TimeTicks::Now() - start_time);
215 const base::TimeTicks start_time = base::TimeTicks::Now(); local
223 start_time));
230 start_time,
241 base::TimeTicks start_time) {
247 start_time,
251 void ExportedObject::SendResponse(base::TimeTicks start_time,
    [all...]
  /external/chromium_org/chrome/test/mini_installer/
launch_chrome.py 29 start_time = time.time()
30 while time.time() - start_time < 30:

Completed in 1140 milliseconds

1 2 3 4 5 6 7 8 91011>>