Searched refs:GetTimestamp (Results 1 - 25 of 79) sorted by relevance

1234

/external/chromium_org/media/base/
H A Daudio_timestamp_helper_unittest.cc23 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();
H A Daudio_timestamp_helper.cc35 base::TimeDelta AudioTimestampHelper::GetTimestamp() const { function in class:media::AudioTimestampHelper
42 return end_timestamp - GetTimestamp();
49 int64 delta_in_us = (target - GetTimestamp()).InMicroseconds();
H A Daudio_timestamp_helper.h23 // 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/
H A Daudio_buffer.h41 PP_TimeDelta GetTimestamp() const;
H A Dvideo_frame.h42 PP_TimeDelta GetTimestamp() const;
H A Daudio_buffer.cc36 PP_TimeDelta AudioBuffer::GetTimestamp() const { function in class:pp::AudioBuffer
38 return get_interface<PPB_AudioBuffer_0_1>()->GetTimestamp(pp_resource());
H A Dvideo_frame.cc36 PP_TimeDelta VideoFrame::GetTimestamp() const { function in class:pp::VideoFrame
38 return get_interface<PPB_VideoFrame_0_1>()->GetTimestamp(pp_resource());
/external/chromium_org/ppapi/thunk/
H A Dppb_video_frame_api.h20 virtual PP_TimeDelta GetTimestamp() = 0;
H A Dppb_video_frame_thunk.cc25 PP_TimeDelta GetTimestamp(PP_Resource frame) { function in namespace:ppapi::thunk::__anon10324
26 VLOG(4) << "PPB_VideoFrame::GetTimestamp()";
30 return enter.object()->GetTimestamp();
75 &GetTimestamp,
H A Dppb_audio_buffer_thunk.cc25 PP_TimeDelta GetTimestamp(PP_Resource buffer) { function in namespace:ppapi::thunk::__anon10239
26 VLOG(4) << "PPB_AudioBuffer::GetTimestamp()";
30 return enter.object()->GetTimestamp();
91 &GetTimestamp,
H A Dppb_audio_buffer_api.h20 virtual PP_TimeDelta GetTimestamp() = 0;
/external/chromium_org/sync/internal_api/events/
H A Dprotocol_event.cc17 dict->SetDouble("time", event.GetTimestamp().ToJsTime());
H A Dcommit_response_event.cc22 base::Time CommitResponseEvent::GetTimestamp() const { function in class:syncer::CommitResponseEvent
H A Dpoll_get_updates_request_event.cc19 base::Time PollGetUpdatesRequestEvent::GetTimestamp() const { function in class:syncer::PollGetUpdatesRequestEvent
H A Dcommit_request_event.cc25 base::Time CommitRequestEvent::GetTimestamp() const { function in class:syncer::CommitRequestEvent
H A Dconfigure_get_updates_request_event.cc23 base::Time ConfigureGetUpdatesRequestEvent::GetTimestamp() const { function in class:syncer::ConfigureGetUpdatesRequestEvent
H A Dget_updates_response_event.cc23 base::Time GetUpdatesResponseEvent::GetTimestamp() const { function in class:syncer::GetUpdatesResponseEvent
/external/chromium_org/sync/internal_api/public/events/
H A Dprotocol_event.h35 virtual base::Time GetTimestamp() const = 0;
H A Dcommit_request_event.h30 virtual base::Time GetTimestamp() const OVERRIDE;
/external/chromium_org/ppapi/c/
H A Dppb_video_frame.h80 PP_TimeDelta (*GetTimestamp)(PP_Resource frame); member in struct:PPB_VideoFrame_0_1
H A Dppb_audio_buffer.h81 PP_TimeDelta (*GetTimestamp)(PP_Resource buffer); member in struct:PPB_AudioBuffer_0_1
/external/chromium_org/ppapi/api/
H A Dppb_video_frame.idl66 PP_TimeDelta GetTimestamp([in] PP_Resource frame);
/external/chromium_org/media/base/android/
H A Daudio_decoder_job.cc93 audio_timestamp_helper_->GetTimestamp() -
101 audio_timestamp_helper_->GetTimestamp());
136 base_timestamp_ = audio_timestamp_helper_->GetTimestamp();
/external/chromium_org/ppapi/proxy/
H A Daudio_buffer_resource.h34 virtual PP_TimeDelta GetTimestamp() OVERRIDE;
H A Dvideo_frame_resource.h31 virtual PP_TimeDelta GetTimestamp() OVERRIDE;

Completed in 239 milliseconds

1234