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

1 2

  /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();
video_frame_unittest.cc 55 yv12_frame->GetTimestamp());
175 EXPECT_EQ(0, frame->GetTimestamp().InMicroseconds());
video_frame.h 228 base::TimeDelta GetTimestamp() const {
  /external/chromium_org/media/filters/
video_renderer_base.cc 283 base::TimeDelta deadline = ready_frames_.front()->GetTimestamp() +
284 (ready_frames_.front()->GetTimestamp() - last_timestamp_) / 2;
306 last_timestamp_ = next_frame->GetTimestamp();
323 last_timestamp_ = ready_frames_.front()->GetTimestamp();
387 if (state_ == kPrerolling && frame->GetTimestamp() <= preroll_timestamp_) {
423 if (frame->GetTimestamp() > duration) {
431 max_time_cb_.Run(frame->GetTimestamp());
493 base::TimeDelta next_pts = next_frame->GetTimestamp();
skcanvas_video_renderer.cc 314 video_frame->GetTimestamp() != last_frame_timestamp_) {
316 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 174 // If GetTimestamp() returns a null time, that means that either:
181 virtual base::Time GetTimestamp() const = 0;
  /external/chromium_org/content/renderer/media/
webmediaplayer_ms.cc 245 return current_frame_->GetTimestamp().InSecondsF();
389 start_time_ = frame->GetTimestamp();
399 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/android_webview/native/
state_serializer_unittests.cc 88 EXPECT_EQ(timestamp, copy->GetTimestamp());
state_serializer.cc 186 if (!pickle->WriteInt64(entry.GetTimestamp().ToInternalValue()))
  /external/chromium_org/content/browser/web_contents/
navigation_entry_impl_unittest.cc 214 EXPECT_EQ(base::Time(), entry1_->GetTimestamp());
217 EXPECT_EQ(now, entry1_->GetTimestamp());
navigation_controller_impl_unittest.cc 359 EXPECT_TRUE(controller.GetPendingEntry()->GetTimestamp().is_null());
383 EXPECT_FALSE(controller.GetActiveEntry()->GetTimestamp().is_null());
401 EXPECT_TRUE(controller.GetPendingEntry()->GetTimestamp().is_null());
423 EXPECT_FALSE(controller.GetActiveEntry()->GetTimestamp().is_null());
468 controller.GetEntryAtIndex(0)->GetTimestamp().ToInternalValue());
470 controller.GetEntryAtIndex(1)->GetTimestamp().ToInternalValue());
519 EXPECT_TRUE(entry->GetTimestamp().is_null());
586 const base::Time timestamp = controller.GetActiveEntry()->GetTimestamp();
609 EXPECT_GE(controller.GetActiveEntry()->GetTimestamp(), timestamp);
628 const base::Time timestamp = controller.GetActiveEntry()->GetTimestamp();
    [all...]
navigation_entry_impl.cc 276 base::Time NavigationEntryImpl::GetTimestamp() const {
navigation_entry_impl.h 77 virtual base::Time GetTimestamp() const OVERRIDE;
  /external/chromium_org/chrome/browser/history/
history_tab_helper.cc 115 web_contents()->GetURL(), 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/base/android/
media_source_player.cc 603 clock_.SetMaxTime(audio_timestamp_helper_->GetTimestamp());
698 audio_timestamp_helper_->GetTimestamp() - current_timestamp;

Completed in 3623 milliseconds

1 2