Searched defs:timestamp (Results 1 - 25 of 166) sorted by relevance

1234567

/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/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);
/external/webkit/LayoutTests/storage/
H A Dsql-data-types.js15 timestamp: new Date("Wed Feb 06 2008 12:16:52 GMT+0200 (EET)").valueOf(),
36 i = "timestamp"; shouldBeSameTypeAndValue(i, testValues[i], rs[i]);
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
61 [testValues.id, testValues.real, testValues.timestamp, testValues.text, testValues.blob],
70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],
/external/webkit/Source/WebKit2/Shared/
H A DWebEvent.cpp42 WebEvent::WebEvent(Type type, Modifiers modifiers, double timestamp) argument
45 , m_timestamp(timestamp)
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 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)
H A DWebKeyboardEvent.cpp33 WebKeyboardEvent::WebKeyboardEvent(Type type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers modifiers, double timestamp) argument
34 : WebEvent(type, modifiers, timestamp)
H A DWebMouseEvent.cpp49 WebMouseEvent::WebMouseEvent(Type type, Button button, const IntPoint& position, const IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modifiers, double timestamp) argument
50 : WebEvent(type, modifiers, timestamp)
66 WebMouseEvent::WebMouseEvent(Type type, Button button, const IntPoint& position, const IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modifiers, double timestamp, bool didActivateWebView) argument
67 : WebEvent(type, modifiers, timestamp)
H A DWebWheelEvent.cpp36 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Modifiers modifiers, double timestamp) argument
37 : WebEvent(type, modifiers, timestamp)
52 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Phase phase, Phase momentumPhase, bool hasPreciseScrollingDeltas, Modifiers modifiers, double timestamp) argument
53 : WebEvent(type, modifiers, timestamp)
/external/chromium/chrome/browser/policy/
H A Dmock_device_management_backend.h73 base::TimeDelta timestamp = local
75 signed_response.set_timestamp(timestamp.InMilliseconds());
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;
/external/webkit/Source/WebCore/page/
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)
/external/webkit/Source/WebCore/platform/
H A DPlatformGestureEvent.h53 double timestamp() const { return m_timestamp; } function in class:WebCore::PlatformGestureEvent
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Dwpamsg.h21 timestamp = QDateTime::currentDateTime();
26 QDateTime getTimestamp() const { return timestamp; }
31 QDateTime timestamp; member in class:WpaMsg
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
H A Dwpamsg.h26 timestamp = QDateTime::currentDateTime();
31 QDateTime getTimestamp() const { return timestamp; }
36 QDateTime timestamp; member in class:WpaMsg
/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/WebKit/chromium/public/
H A DWebGeolocationPosition.h43 WebGeolocationPosition(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
45 assign(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
50 WEBKIT_API void 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);
/external/webkit/Source/WebKit/win/
H A DWebGeolocationPosition.cpp84 HRESULT WebGeolocationPosition::initWithTimestamp(double timestamp, double latitude, double longitude, double accuracy) argument
87 m_position = GeolocationPosition::create(timestamp, latitude, longitude, accuracy);
/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/ipsec-tools/src/racoon/
H A Devt.h41 time_t timestamp; member in struct:evtdump
/external/webkit/Source/WebCore/loader/icon/
H A DIconRecord.h60 IconSnapshot(const String& iconURL, int timestamp, SharedBuffer* data) argument
62 , m_timestamp(timestamp)
67 int timestamp() const { return m_timestamp; } function in class:WebCore::IconSnapshot
/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/chromium/chrome/browser/extensions/
H A Dextension_idle_api.cc37 double timestamp; member in struct:__anon1965::ExtensionIdlePollingData
88 polling_data.timestamp = base::Time::Now().ToDoubleT();
106 double delta = time_now - polling_data.timestamp;

Completed in 1879 milliseconds

1234567