Searched refs:timestamp (Results 1 - 25 of 1370) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIOutput.idl34 [RaisesException] void send(Uint8Array data, optional double timestamp);
35 [RaisesException] void send(sequence<unsigned long> data, optional double timestamp);
/external/srec/portable/src/
H A Dptimestamp.c27 void PTimeStampSet(PTimeStamp *timestamp) argument
31 timestamp->secs = 0;
32 timestamp->msecs = 0;
39 timestamp->secs = now.time;
40 timestamp->msecs = now.millitm;
44 timestamp->secs = now.tv_sec;
45 timestamp->msecs = now.tv_nsec / MSECOND2NSECOND;
/external/chromium_org/ppapi/api/private/
H A Dpp_video_frame_private.idl18 * A timestamp placing the frame in a video stream.
20 PP_TimeTicks timestamp;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeoposition.idl30 readonly attribute DOMTimeStamp timestamp;
H A DGeoposition.h39 static PassRefPtr<Geoposition> create(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp) argument
41 return adoptRef(new Geoposition(coordinates, timestamp));
49 DOMTimeStamp timestamp() const { return m_timestamp; } function in class:WebCore::Geoposition
53 Geoposition(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp) argument
55 , m_timestamp(timestamp)
H A DGeolocationPosition.h37 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); } argument
39 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
41 double timestamp() const { return m_timestamp; } function in class:WebCore::GeolocationPosition
57 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy) argument
58 : m_timestamp(timestamp)
73 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
74 : m_timestamp(timestamp)
/external/chromium_org/content/browser/resources/media/new/
H A Dplayer_info.js34 * @param timestamp The time in milliseconds since the Epoch.
38 addProperty: function(timestamp, key, value) {
39 // The first timestamp that we get will be recorded.
42 this.firstTimestamp_ = timestamp;
56 time: timestamp - this.firstTimestamp_,
69 * @param timestamp The time in milliseconds since the Epoch.
73 addPropertyNoRecord: function(timestamp, key, value) {
74 this.addProperty(timestamp, key, value);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dwpamsg.h20 timestamp = QDateTime::currentDateTime();
25 QDateTime getTimestamp() const { return timestamp; }
30 QDateTime timestamp; member in class:WpaMsg
/external/chromium_org/ppapi/c/private/
H A Dpp_video_frame_private.h33 * A timestamp placing the frame in a video stream.
35 PP_TimeTicks timestamp; member in struct:PP_VideoFrame_Private
/external/chromium_org/tools/telemetry/telemetry/core/timeline/
H A Dsample.py16 def __init__(self, parent_thread, category, name, timestamp, args=None):
18 category, name, timestamp, 0, args=args)
/external/chromium_org/ppapi/cpp/private/
H A Dvideo_frame_private.cc15 PP_TimeTicks timestamp)
17 video_frame_.timestamp = timestamp;
32 set_timestamp(other.timestamp());
44 set_timestamp(other.timestamp());
14 VideoFrame_Private(const ImageData& image_data, PP_TimeTicks timestamp) argument
H A Dvideo_frame_private.h35 /// a timestamp.
36 VideoFrame_Private(const ImageData& image_data, PP_TimeTicks timestamp);
64 PP_TimeTicks timestamp() const { return video_frame_.timestamp; } function in class:pp::VideoFrame_Private
65 void set_timestamp(PP_TimeTicks timestamp) { argument
66 video_frame_.timestamp = timestamp;
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DRevokedOffer.java26 * the reason, the workgroup, the userJID, and the timestamp which the message was received.<br>
37 private Date timestamp; field in class:RevokedOffer
46 * @param timestamp the timestamp at which the revocation was issued
49 String reason, Date timestamp) {
57 this.timestamp = timestamp;
93 * @return the timestamp at which the revocation was issued
96 return this.timestamp;
48 RevokedOffer(String userJID, String userID, String workgroupName, String sessionID, String reason, Date timestamp) argument
/external/chromium_org/media/base/
H A Ddecoder_buffer_queue.cc24 // TODO(scherkus): FFmpeg returns some packets with no timestamp after
26 if (buffer->timestamp() == kNoTimestamp()) {
27 DVLOG(1) << "Buffer has no timestamp";
32 earliest_valid_timestamp_ = buffer->timestamp();
35 if (buffer->timestamp() < earliest_valid_timestamp_) {
38 << buffer->timestamp().InMicroseconds()
44 earliest_valid_timestamp_ = buffer->timestamp();
74 base::TimeDelta start = in_order_queue_.front()->timestamp();
75 base::TimeDelta end = in_order_queue_.back()->timestamp();
/external/chromium_org/net/quic/crypto/
H A Dsource_address_token.cc36 int64 timestamp; local
37 if (!base::StringToInt64(results[1], &timestamp)) {
42 timestamp_ = timestamp;
H A Dsource_address_token.h29 int64 timestamp() const { function in class:net::SourceAddressToken
37 void set_timestamp(int64 timestamp) { argument
38 timestamp_ = timestamp;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraphItem.java27 long timestamp; field in class:TimeLineGraphItem
33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) { argument
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { argument
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) { argument
44 this(title, description, value, color,timestamp);
48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) { argument
53 this.timestamp=timestamp;
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCStatsReport.cpp34 PassRefPtr<RTCStatsReport> RTCStatsReport::create(const String& id, const String& type, double timestamp) argument
36 return adoptRef(new RTCStatsReport(id, type, timestamp));
39 RTCStatsReport::RTCStatsReport(const String& id, const String& type, double timestamp) argument
42 , m_timestamp(timestamp)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_screen.h48 unsigned timestamp; member in struct:softpipe_screen
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_screen.h48 unsigned timestamp; member in struct:softpipe_screen
/external/srec/portable/include/
H A Dptimestamp.h43 * Seconds component of timestamp.
48 * Milliseconds component of timestamp.
58 PORTABLE_API void PTimeStampSet(PTimeStamp *timestamp);
63 * @param a First timestamp
64 * @param b Second timestamp
/external/chromium_org/chrome/browser/ui/webui/
H A Ddownloads_ui_browsertest.js48 var timestamp = new Date(2008, 9, 2, 1, 0).getTime();
50 downloads.updated(this.createDownload_(i, timestamp));
51 timestamp += 2 * 60 * 1000; // Next visit is two minutes later.
62 createDownload_: function(id, timestamp) {
65 download.started = timestamp;
70 download.file_url = 'http://google.com/' + timestamp;
71 download.file_name = 'download_' + timestamp;
72 download.url = 'http://google.com/' + timestamp;
/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/net/quic/congestion_control/
H A Dinter_arrival_receiver.cc40 QuicTime timestamp,
45 received_packet_times_.insert(std::make_pair(sequence_number, timestamp));
37 RecordIncomingPacket( QuicByteCount , QuicPacketSequenceNumber sequence_number, QuicTime timestamp, bool revived) argument
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepad.idl31 readonly attribute unsigned long long timestamp;

Completed in 3610 milliseconds

1234567891011>>