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

1 2 3

  /external/chromium_org/media/base/
audio_timestamp_helper_unittest.cc 23 return helper_.GetTimestamp().InMicroseconds();
45 EXPECT_EQ(0, helper_.GetTimestamp().InMicroseconds());
60 base::TimeDelta timestamp_1 = helper_.GetTimestamp();
64 EXPECT_EQ(0, helper_.GetTimestamp().InMicroseconds());
67 EXPECT_EQ(113, helper_.GetTimestamp().InMicroseconds());
68 EXPECT_TRUE(timestamp_1 == helper_.GetTimestamp());
81 base::TimeDelta timestamp_1 = helper_.GetTimestamp() + duration;
83 base::TimeDelta timestamp_2 = helper_.GetTimestamp();
audio_timestamp_helper.h 23 // this class so GetTimestamp() can be used to determine the timestamp for the
44 base::TimeDelta GetTimestamp() const;
47 // timestamp reported by GetTimestamp(). This method ensures that
48 // (GetTimestamp() + GetFrameDuration(n)) will equal the timestamp that
49 // GetTimestamp() will return if AddFrames(n) is called.
audio_timestamp_helper.cc 35 base::TimeDelta AudioTimestampHelper::GetTimestamp() const {
42 return end_timestamp - GetTimestamp();
49 int64 delta_in_us = (target - GetTimestamp()).InMicroseconds();
audio_splicer.cc 60 base::TimeDelta expected_timestamp = output_timestamp_helper_.GetTimestamp();
  /external/chromium_org/chrome/browser/network_time/
navigation_time_helper_unittest.cc 31 EXPECT_EQ(entry1->GetTimestamp() + base::TimeDelta::FromHours(1),
36 EXPECT_EQ(entry1->GetTimestamp() + base::TimeDelta::FromHours(1),
42 EXPECT_EQ(entry2->GetTimestamp() + base::TimeDelta::FromHours(2),
47 entry1->GetTimestamp() + base::TimeDelta::FromSeconds(1));
48 EXPECT_EQ(entry1->GetTimestamp() + base::TimeDelta::FromHours(2),
navigation_time_helper.cc 29 base::Time local_time = entry->GetTimestamp();
  /external/chromium_org/content/renderer/media/
rtc_video_capturer.cc 100 first_frame_timestamp_ = frame->GetTimestamp();
109 (frame->GetTimestamp() - first_frame_timestamp_).InMicroseconds() *
111 captured_frame.time_stamp = frame->GetTimestamp().InMicroseconds() *
rtc_video_renderer.cc 90 frame->GetTimestamp().InMilliseconds());
webmediaplayer_ms.cc 235 return current_frame_->GetTimestamp().InSecondsF();
379 start_time_ = frame->GetTimestamp();
389 current_frame_->SetTimestamp(frame->GetTimestamp() - start_time_);
rtc_video_decoder_factory_tv_unittest.cc 298 last_decoder_buffer_->GetTimestamp());
305 last_decoder_buffer_->GetTimestamp());
  /external/chromium_org/media/filters/
video_renderer_impl.cc 300 base::TimeDelta deadline = ready_frames_.front()->GetTimestamp() +
301 (ready_frames_.front()->GetTimestamp() - last_timestamp_) / 2;
324 last_timestamp_ = next_frame->GetTimestamp();
343 last_timestamp_ = ready_frames_.front()->GetTimestamp();
406 frame->GetTimestamp() <= preroll_timestamp_) {
439 if (frame->GetTimestamp() > duration) {
447 max_time_cb_.Run(frame->GetTimestamp());
509 base::TimeDelta next_pts = next_frame->GetTimestamp();
skcanvas_video_renderer.cc 323 video_frame->GetTimestamp() != last_frame_timestamp_) {
325 last_frame_timestamp_ = video_frame->GetTimestamp();
  /external/chromium_org/chrome/browser/sync/test/integration/
typed_urls_helper.h 83 base::Time GetTimestamp();
typed_urls_helper.cc 242 base::Time GetTimestamp() {
262 base::Time timestamp = GetTimestamp();
  /external/chromium_org/content/public/browser/
navigation_entry.h 173 // If GetTimestamp() returns a null time, that means that either:
180 virtual base::Time GetTimestamp() const = 0;
  /external/chromium_org/android_webview/native/
state_serializer_unittests.cc 90 EXPECT_EQ(timestamp, copy->GetTimestamp());
  /external/chromium_org/content/browser/frame_host/
navigation_entry_impl_unittest.cc 214 EXPECT_EQ(base::Time(), entry1_->GetTimestamp());
217 EXPECT_EQ(now, entry1_->GetTimestamp());
navigation_controller_impl_unittest.cc 360 EXPECT_TRUE(controller.GetPendingEntry()->GetTimestamp().is_null());
384 EXPECT_FALSE(controller.GetVisibleEntry()->GetTimestamp().is_null());
401 EXPECT_TRUE(controller.GetPendingEntry()->GetTimestamp().is_null());
422 EXPECT_FALSE(controller.GetVisibleEntry()->GetTimestamp().is_null());
467 controller.GetEntryAtIndex(0)->GetTimestamp().ToInternalValue());
469 controller.GetEntryAtIndex(1)->GetTimestamp().ToInternalValue());
518 EXPECT_TRUE(entry->GetTimestamp().is_null());
585 const base::Time timestamp = controller.GetVisibleEntry()->GetTimestamp();
608 EXPECT_GE(controller.GetVisibleEntry()->GetTimestamp(), timestamp);
663 const base::Time timestamp = controller.GetVisibleEntry()->GetTimestamp();
    [all...]
  /external/chromium_org/media/mp2t/
es_parser_adts.cc 194 base::TimeDelta current_pts = audio_timestamp_helper_->GetTimestamp();
275 base::TimeDelta base_timestamp = audio_timestamp_helper_->GetTimestamp();
  /external/chromium_org/chrome/browser/history/
history_tab_helper.cc 102 base::Time navigation_time = details.entry->GetTimestamp();
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_queryobj.c 195 functions->GetTimestamp = st_GetTimestamp;
  /external/mesa3d/src/mesa/state_tracker/
st_cb_queryobj.c 195 functions->GetTimestamp = st_GetTimestamp;
  /external/stressapptest/src/
os.h 146 inline static uint64 GetTimestamp(void) {
  /external/chromium/webkit/glue/media/
video_renderer_impl.cc 77 VLOG(1) << "pts=" << video_frame->GetTimestamp().InMicroseconds();
158 base::TimeDelta timestamp = video_frame->GetTimestamp();
  /external/chromium_org/media/mp3/
mp3_stream_parser.cc 407 base_timestamp = timestamp_helper_->GetTimestamp();
424 buffer->set_timestamp(timestamp_helper_->GetTimestamp());

Completed in 866 milliseconds

1 2 3