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

1 2 3 4

  /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.cc 35 base::TimeDelta AudioTimestampHelper::GetTimestamp() const {
42 return end_timestamp - GetTimestamp();
49 int64 delta_in_us = (target - GetTimestamp()).InMicroseconds();
audio_timestamp_helper.h 23 // this class so GetTimestamp() can be used to determine the timestamp for the
45 base::TimeDelta GetTimestamp() const;
48 // timestamp reported by GetTimestamp(). This method ensures that
49 // (GetTimestamp() + GetFrameDuration(n)) will equal the timestamp that
50 // GetTimestamp() will return if AddFrames(n) is called.
  /external/chromium_org/ppapi/cpp/
video_frame.h 42 PP_TimeDelta GetTimestamp() const;
audio_buffer.h 41 PP_TimeDelta GetTimestamp() const;
audio_buffer.cc 36 PP_TimeDelta AudioBuffer::GetTimestamp() const {
38 return get_interface<PPB_AudioBuffer_0_1>()->GetTimestamp(pp_resource());
video_frame.cc 36 PP_TimeDelta VideoFrame::GetTimestamp() const {
38 return get_interface<PPB_VideoFrame_0_1>()->GetTimestamp(pp_resource());
  /external/chromium_org/ppapi/thunk/
ppb_audio_buffer_api.h 20 virtual PP_TimeDelta GetTimestamp() = 0;
ppb_video_frame_api.h 20 virtual PP_TimeDelta GetTimestamp() = 0;
ppb_video_frame_thunk.cc 25 PP_TimeDelta GetTimestamp(PP_Resource frame) {
26 VLOG(4) << "PPB_VideoFrame::GetTimestamp()";
30 return enter.object()->GetTimestamp();
75 &GetTimestamp,
ppb_audio_buffer_thunk.cc 25 PP_TimeDelta GetTimestamp(PP_Resource buffer) {
26 VLOG(4) << "PPB_AudioBuffer::GetTimestamp()";
30 return enter.object()->GetTimestamp();
91 &GetTimestamp,
  /external/chromium_org/sync/internal_api/public/events/
protocol_event.h 35 virtual base::Time GetTimestamp() const = 0;
commit_response_event.h 29 virtual base::Time GetTimestamp() const OVERRIDE;
configure_get_updates_request_event.h 27 virtual base::Time GetTimestamp() const OVERRIDE;
get_updates_response_event.h 31 virtual base::Time GetTimestamp() const OVERRIDE;
poll_get_updates_request_event.h 30 virtual base::Time GetTimestamp() const OVERRIDE;
  /external/chromium_org/sync/internal_api/events/
protocol_event.cc 17 dict->SetDouble("time", event.GetTimestamp().ToJsTime());
commit_response_event.cc 22 base::Time CommitResponseEvent::GetTimestamp() const {
poll_get_updates_request_event.cc 19 base::Time PollGetUpdatesRequestEvent::GetTimestamp() const {
  /external/chromium_org/ppapi/c/
ppb_video_frame.h 80 PP_TimeDelta (*GetTimestamp)(PP_Resource frame);
ppb_audio_buffer.h 81 PP_TimeDelta (*GetTimestamp)(PP_Resource buffer);
  /external/chromium_org/ppapi/proxy/
video_frame_resource.h 31 virtual PP_TimeDelta GetTimestamp() OVERRIDE;
audio_buffer_resource.h 34 virtual PP_TimeDelta GetTimestamp() OVERRIDE;
  /external/chromium_org/ppapi/api/
ppb_video_frame.idl 66 PP_TimeDelta GetTimestamp([in] PP_Resource frame);
  /external/chromium_org/media/base/android/
audio_decoder_job.cc 82 audio_timestamp_helper_->GetTimestamp() -
90 audio_timestamp_helper_->GetTimestamp());
136 base_timestamp_ = audio_timestamp_helper_->GetTimestamp();

Completed in 402 milliseconds

1 2 3 4