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

1234567891011>>

/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/webkit/Source/WebKit2/Shared/
H A DWebGeolocationPosition.cpp34 WebGeolocationPosition::WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy) argument
36 m_data.timestamp = timestamp;
48 encoder->encode(CoreIPC::In(timestamp, latitude, longitude, accuracy));
53 return decoder->decode(CoreIPC::Out(data.timestamp, data.latitude, data.longitude, data.accuracy));
H A DWebGeolocationPosition.h44 double timestamp; member in struct:WebKit::WebGeolocationPosition::Data
50 static PassRefPtr<WebGeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) argument
52 return adoptRef(new WebGeolocationPosition(timestamp, latitude, longitude, accuracy));
57 double timestamp() const { return m_data.timestamp; } function in class:WebKit::WebGeolocationPosition
65 WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy);
H A DWebEvent.cpp42 WebEvent::WebEvent(Type type, Modifiers modifiers, double timestamp) argument
45 , m_timestamp(timestamp)
H A DWebGestureEvent.cpp38 WebGestureEvent::WebGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, Modifiers modifiers, double timestamp) argument
39 : WebEvent(type, modifiers, timestamp)
H A DWebTouchEvent.cpp36 WebTouchEvent::WebTouchEvent(WebEvent::Type type, Vector<WebPlatformTouchPoint> touchPoints, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers modifiers, double timestamp) argument
37 : WebEvent(type, modifiers, timestamp)
/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/webkit/Source/WebCore/page/
H A DGeoposition.idl30 readonly attribute DOMTimeStamp timestamp;
H A DGeoposition.h38 static PassRefPtr<Geoposition> create(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp) argument
40 return adoptRef(new Geoposition(coordinates, timestamp));
48 DOMTimeStamp timestamp() const { return m_timestamp; } function in class:WebCore::Geoposition
52 Geoposition(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp) argument
54 , m_timestamp(timestamp)
H A DGeolocationPosition.h39 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); } argument
41 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
43 double timestamp() const { return m_timestamp; } function in class:WebCore::GeolocationPosition
59 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy) argument
60 : m_timestamp(timestamp)
75 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
76 : m_timestamp(timestamp)
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKGeolocationPosition.cpp39 WKGeolocationPositionRef WKGeolocationPositionCreate(double timestamp, double latitude, double longitude, double accuracy) argument
41 RefPtr<WebGeolocationPosition> position = WebGeolocationPosition::create(timestamp, latitude, longitude, accuracy);
H A DWKGeolocationPosition.h37 WK_EXPORT WKGeolocationPositionRef WKGeolocationPositionCreate(double timestamp, double latitude, double longitude, double accuracy);
/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/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/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/webkit/Source/WebKit/mac/WebView/
H A DWebGeolocationPosition.h33 - (id)initWithTimestamp:(double)timestamp latitude:(double)latitude longitude:(double)longitude accuracy:(double)accuracy;
/external/oprofile/libopagent/
H A Djitdump.h47 u64 timestamp; member in struct:jitheader
68 u64 timestamp; member in struct:jr_code_load
79 u64 timestamp; member in struct:jr_code_unload
87 u64 timestamp; member in struct:jr_code_close
94 u64 timestamp; member in struct:jr_code_debug_info
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/componentScripts/
H A Dbuild.properties62 timestamp=007
/external/webkit/Source/WebKit/chromium/src/
H A DWebGeolocationPosition.cpp35 void WebGeolocationPosition::assign(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
37 m_private = GeolocationPosition::create(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebGeolocationPosition.idl38 HRESULT initWithTimestamp([in] double timestamp, [in] double latitude, [in] double longitude, [in] double accuracy);
/external/netperf/
H A Dhist.h88 HIST_timestamp - take a timestamp suitable for use in a histogram.
92 void HIST_timestamp(hrtime_t *timestamp);
94 void HIST_timestamp(hrt_t *timestamp);
96 void HIST_timestamp(LARGE_INTEGER *timestamp);
98 void HIST_timestamp(struct timeval *timestamp);
/external/chromium/chrome/browser/policy/
H A Dcloud_policy_cache_base.h79 // |timestamp| returns the timestamp embedded in |policy|, callers can pass
81 // to discard policy data with a timestamp from the future.
84 base::Time* timestamp,
87 void SetUnmanagedInternal(const base::Time& timestamp);
95 // Decodes a PolicyFetchResponse into two PolicyMaps and a timestamp.
100 base::Time* timestamp,
111 void set_last_policy_refresh_time(base::Time timestamp) { argument
112 last_policy_refresh_time_ = timestamp;
H A Dcloud_policy_cache_base.cc88 base::Time* timestamp,
103 if (timestamp) {
104 *timestamp = temp_timestamp;
130 void CloudPolicyCacheBase::SetUnmanagedInternal(const base::Time& timestamp) { argument
136 last_policy_refresh_time_ = timestamp;
157 base::Time* timestamp,
165 if (timestamp) {
166 *timestamp = base::Time::UnixEpoch() +
167 base::TimeDelta::FromMilliseconds(policy_data.timestamp());
86 SetPolicyInternal( const em::PolicyFetchResponse& policy, base::Time* timestamp, bool check_for_timestamp_validity) argument
153 DecodePolicyResponse( const em::PolicyFetchResponse& policy_response, PolicyMap* mandatory, PolicyMap* recommended, base::Time* timestamp, PublicKeyVersion* public_key_version) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DBuildProperties.java42 private String timestamp; field in class:BuildProperties
43 // the name of the directory containing the builds, typically <buildType>-<buildType><build date>-<timestamp>
106 timestamp = buildProperties.get("timestamp").toString();
109 "Value for timestamp not found in monitor.properties");
205 * Returns the timestamp.
209 return timestamp;
221 * Sets the timestamp.
222 * @param timestamp The timestamp t
224 setTimestamp(String timestamp) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/
H A Dbuild.properties16 timestamp=0000

Completed in 1500 milliseconds

1234567891011>>