Searched defs:timestamp (Results 26 - 50 of 506) sorted by relevance

1234567891011>>

/external/chromium_org/chromecast/media/cma/base/
H A Dframe_generator_for_test.h28 base::TimeDelta timestamp; member in struct:chromecast::media::FrameGeneratorForTest::FrameSpec
/external/chromium_org/components/invalidation/
H A Dack_handle.cc38 value->SetString("timestamp",
47 if (!value.GetString("timestamp", &timestamp_as_string))
60 AckHandle::AckHandle(const std::string& state, base::Time timestamp) argument
61 : state_(state), timestamp_(timestamp) {
/external/chromium_org/content/browser/renderer_host/input/
H A Dsynthetic_tap_gesture.cc24 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
36 ForwardTouchOrMouseInputEvents(timestamp, target);
45 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
48 Press(target, timestamp);
51 Release(target, timestamp);
54 start_time_ = timestamp;
59 if (timestamp - start_time_ >= GetDuration()) {
72 const base::TimeTicks& timestamp) {
75 touch_event_.timeStampSeconds = ConvertTimestampToSeconds(timestamp);
84 mouse_event.timeStampSeconds = ConvertTimestampToSeconds(timestamp);
23 ForwardInputEvents( const base::TimeTicks& timestamp, SyntheticGestureTarget* target) argument
44 ForwardTouchOrMouseInputEvents( const base::TimeTicks& timestamp, SyntheticGestureTarget* target) argument
71 Press(SyntheticGestureTarget* target, const base::TimeTicks& timestamp) argument
91 Release(SyntheticGestureTarget* target, const base::TimeTicks& timestamp) argument
[all...]
/external/chromium_org/content/common/gpu/
H A Ddevtools_gpu_instrumentation.cc40 TimeTicks timestamp = base::TimeTicks::NowFromSystemTraceTime(); local
46 (*it)->ProcessEvent(timestamp, phase, channel);
/external/chromium_org/content/renderer/media/
H A Drenderer_webmidiaccessor_impl.cc31 double timestamp) {
36 timestamp);
27 sendMIDIData( unsigned port_index, const unsigned char* data, size_t length, double timestamp) argument
/external/chromium_org/media/base/
H A Ddecoder_buffer.cc81 s << "timestamp: " << timestamp_.InMicroseconds()
91 void DecoderBuffer::set_timestamp(base::TimeDelta timestamp) { argument
93 timestamp_ = timestamp;
H A Dtext_cue.h20 TextCue(const base::TimeDelta& timestamp,
27 base::TimeDelta timestamp() const { return timestamp_; } function in class:media::TextCue
/external/chromium_org/net/cert/
H A Dct_serialization_unittest.cc94 base::Time timestamp = base::Time::UnixEpoch() + local
101 timestamp,
107 // Bytes 2-10 are timestamp
110 //EXPECT_EQ(0, timestamp.ToTimeT());
144 EXPECT_EQ(expected_time, sct->timestamp);
173 // Bytes 2-9 are timestamp
H A Dsigned_tree_head.h30 base::Time timestamp; member in struct:net::ct::SignedTreeHead
/external/chromium_org/ppapi/cpp/
H A Dvideo_frame.cc42 void VideoFrame::SetTimestamp(PP_TimeDelta timestamp) { argument
44 get_interface<PPB_VideoFrame_0_1>()->SetTimestamp(pp_resource(), timestamp); local
/external/chromium_org/ppapi/thunk/
H A Dppb_audio_buffer_thunk.cc33 void SetTimestamp(PP_Resource buffer, PP_TimeDelta timestamp) { argument
38 enter.object()->SetTimestamp(timestamp);
H A Dppb_video_frame_thunk.cc33 void SetTimestamp(PP_Resource frame, PP_TimeDelta timestamp) { argument
38 enter.object()->SetTimestamp(timestamp);
/external/chromium_org/sync/internal_api/events/
H A Dcommit_request_event.cc14 base::Time timestamp,
18 : timestamp_(timestamp),
13 CommitRequestEvent( base::Time timestamp, size_t num_items, ModelTypeSet contributing_types_, const sync_pb::ClientToServerMessage& request) argument
H A Dcommit_response_event.cc13 base::Time timestamp,
16 : timestamp_(timestamp),
12 CommitResponseEvent( base::Time timestamp, SyncerError result, const sync_pb::ClientToServerResponse& response) argument
H A Dconfigure_get_updates_request_event.cc14 base::Time timestamp,
17 : timestamp_(timestamp),
13 ConfigureGetUpdatesRequestEvent( base::Time timestamp, sync_pb::SyncEnums::GetUpdatesOrigin origin, const sync_pb::ClientToServerMessage& request) argument
H A Dget_updates_response_event.cc13 base::Time timestamp,
16 : timestamp_(timestamp),
12 GetUpdatesResponseEvent( base::Time timestamp, const sync_pb::ClientToServerResponse& response, SyncerError error) argument
H A Dpoll_get_updates_request_event.cc12 base::Time timestamp,
14 : timestamp_(timestamp),
11 PollGetUpdatesRequestEvent( base::Time timestamp, const sync_pb::ClientToServerMessage& request) argument
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeoposition.h39 static Geoposition* create(Coordinates* coordinates, DOMTimeStamp timestamp) argument
41 return new Geoposition(coordinates, timestamp);
49 DOMTimeStamp timestamp() const { return m_timestamp; } function in class:blink::FINAL
53 Geoposition(Coordinates* coordinates, DOMTimeStamp timestamp) argument
55 , m_timestamp(timestamp)
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCStatsReport.cpp31 RTCStatsReport* RTCStatsReport::create(const String& id, const String& type, double timestamp) argument
33 return new RTCStatsReport(id, type, timestamp);
36 RTCStatsReport::RTCStatsReport(const String& id, const String& type, double timestamp) argument
39 , m_timestamp(timestamp)
H A DRTCStatsReport.h39 static RTCStatsReport* create(const String& id, const String& type, double timestamp);
41 double timestamp() const { return m_timestamp; } function in class:blink::FINAL
57 RTCStatsReport(const String& id, const String& type, double timestamp);
H A DRTCStatsResponse.cpp46 size_t RTCStatsResponse::addReport(const String& id, const String& type, double timestamp) argument
48 m_result.append(RTCStatsReport::create(id, type, timestamp));
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDevToolsAgent.h72 GPUEvent(double timestamp, int phase, bool foreign, uint64_t usedGPUMemoryBytes) : argument
73 timestamp(timestamp),
78 double timestamp; member in class:blink::WebDevToolsAgent::GPUEvent
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DStatsReport.java53 public final double timestamp; field in class:StatsReport
56 public StatsReport(String id, String type, double timestamp, Value[] values) { argument
59 this.timestamp = timestamp;
66 .append(", timestamp: ").append(timestamp).append(", values: ");
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_texture.h67 unsigned timestamp; member in struct:softpipe_resource
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dinter_frame_delay.cc31 // Calculates the delay of a frame with the given timestamp.
34 VCMInterFrameDelay::CalculateDelay(uint32_t timestamp, argument
42 _prevTimestamp = timestamp;
48 CheckForWrapArounds(timestamp);
57 if ((wrapAroundsSincePrev == 0 && timestamp < _prevTimestamp) || wrapAroundsSincePrev < 0)
63 // Compute the compensated timestamp difference and convert it to ms and
65 _dTS = static_cast<int64_t>((timestamp + wrapAroundsSincePrev *
69 // the wall clock time difference and the timestamp difference between
73 _prevTimestamp = timestamp;
89 // Investigates if the timestamp cloc
92 CheckForWrapArounds(uint32_t timestamp) argument
[all...]

Completed in 407 milliseconds

1234567891011>>