Searched refs:timestamp (Results 26 - 50 of 361) sorted by relevance

1234567891011>>

/external/skia/src/gpu/gl/
H A DGrGLTexture.h82 const TexParams& getCachedTexParams(GrGpu::ResetTimestamp* timestamp) const {
83 *timestamp = fTexParamsTimestamp;
87 GrGpu::ResetTimestamp timestamp) {
89 fTexParamsTimestamp = timestamp;
86 setCachedTexParams(const TexParams& texParams, GrGpu::ResetTimestamp timestamp) argument
/external/webkit/Source/WebCore/platform/
H A DPlatformGestureEvent.h53 double timestamp() const { return m_timestamp; } function in class:WebCore::PlatformGestureEvent
/external/webkit/Source/WebKit/android/plugins/
H A DANPVideo_npapi.h65 * The timestamp is in nanoseconds, and is monotonically increasing.
67 typedef void (*ANPVideoFrameCallbackProc)(ANativeWindow* window, int64_t timestamp);
/external/kernel-headers/original/linux/
H A Dhdsmart.h80 unsigned int timestamp; member in struct:ata_smart_errorlog_command_struct_s
87 unsigned short timestamp; member in struct:ata_smart_errorlog_error_struct_s
109 unsigned short timestamp; member in struct:ata_smart_selftestlog_struct_s
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraph.java148 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp) { argument
149 addItem(groupName, name, description, value, col, display, timestamp,false);
152 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) { argument
154 timestamp,isSpecial,false);
157 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBaseline) { argument
164 timestamp,isSpecial,drawBaseline));
212 if (graphItem.timestamp > mostRecentTimestamp) {
213 mostRecentTimestamp = graphItem.timestamp;
250 if (thisItem.timestamp==-1)
267 long minimumTimeDiffPreceding=thisItem.timestamp;
[all...]
/external/apache-http/src/org/apache/http/util/
H A DVersionInfo.java68 public final static String PROPERTY_TIMESTAMP = "info.timestamp";
80 /** The timestamp from the version info. */
142 * Obtains the timestamp of the versioned module or informal unit.
145 * @return the timestamp, never <code>null</code>
290 String timestamp = null;
302 timestamp = (String) info.get(PROPERTY_TIMESTAMP);
303 if ((timestamp != null) &&
304 ((timestamp.length() < 1) ||
305 (timestamp.equals("${mvn.timestamp}")))
[all...]
/external/linux-tools-perf/
H A Dbuiltin-sched.c82 u64 timestamp; member in struct:sched_atom
234 get_new_event(struct task_desc *task, u64 timestamp) argument
240 event->timestamp = timestamp;
262 add_sched_event_run(struct task_desc *task, u64 timestamp, u64 duration) argument
276 event = get_new_event(task, timestamp);
285 add_sched_event_wakeup(struct task_desc *task, u64 timestamp, argument
290 event = get_new_event(task, timestamp);
313 add_sched_event_sleep(struct task_desc *task, u64 timestamp, argument
316 struct sched_atom *event = get_new_event(task, timestamp);
829 replay_switch_event(struct trace_switch_event *switch_event, struct perf_session *session __used, struct event *event, int cpu, u64 timestamp, struct thread *thread __used) argument
1000 add_sched_out_event(struct work_atoms *atoms, char run_state, u64 timestamp) argument
1032 add_sched_in_event(struct work_atoms *atoms, u64 timestamp) argument
1063 latency_switch_event(struct trace_switch_event *switch_event, struct perf_session *session, struct event *event __used, int cpu, u64 timestamp, struct thread *thread __used) argument
1116 latency_runtime_event(struct trace_runtime_event *runtime_event, struct perf_session *session, struct event *event __used, int cpu, u64 timestamp, struct thread *this_thread __used) argument
1139 latency_wakeup_event(struct trace_wakeup_event *wakeup_event, struct perf_session *session, struct event *__event __used, int cpu __used, u64 timestamp, struct thread *thread __used) argument
1187 latency_migrate_task_event(struct trace_migrate_task_event *migrate_task_event, struct perf_session *session, struct event *__event __used, int cpu __used, u64 timestamp, struct thread *thread __used) argument
1434 map_switch_event(struct trace_switch_event *switch_event, struct perf_session *session, struct event *event __used, int this_cpu, u64 timestamp, struct thread *thread __used) argument
1617 process_raw_event(union perf_event *raw_event __used, struct perf_session *session, void *data, int cpu, u64 timestamp, struct thread *thread) argument
[all...]
/external/oauth/core/src/main/java/net/oauth/
H A DSimpleOAuthValidator.java24 * A simple OAuthValidator, which checks the version, whether the timestamp
89 long timestamp = Long.parseLong(message.getParameter(OAuth.OAUTH_TIMESTAMP)) * 1000L;
93 if (timestamp < min || max < timestamp) {
/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/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dtimestamp.js18 t = p.timestamp;
/external/webkit/Source/WebKit/mac/WebView/
H A DWebGeolocationPosition.mm73 - (id)initWithTimestamp:(double)timestamp latitude:(double)latitude longitude:(double)longitude accuracy:(double)accuracy
79 _internal = [[WebGeolocationPositionInternal alloc] initWithCoreGeolocationPosition:GeolocationPosition::create(timestamp, latitude, longitude, accuracy)];
/external/webkit/Source/WebKit2/Shared/
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)
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 DWebEvent.h95 double timestamp() const { return m_timestamp; } function in class:WebKit::WebEvent
100 WebEvent(Type, Modifiers, double timestamp);
123 WebMouseEvent(Type, Button, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp);
125 WebMouseEvent(Type, Button, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp, bool didActivateWebView);
178 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Modifiers, double timestamp);
180 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Phase phase, Phase momentumPhase,bool hasPreciseScrollingDeltas, Modifiers, double timestamp);
217 WebKeyboardEvent(Type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers, double timestamp);
252 WebGestureEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, Modifiers, double timestamp);
312 WebTouchEvent(Type, Vector<WebPlatformTouchPoint>, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers, double timestamp);
/external/speex/libspeex/
H A Djitter.c140 spx_uint32_t last_returned_timestamp; /**< Useful for getting the next packet with the same timestamp (for fragmented media) */
143 spx_int32_t buffered; /**< Amount of data we think is still buffered by the application (timestamp units)*/
146 spx_uint32_t arrival[SPEEX_JITTER_MAX_BUFFER_SIZE]; /**< Packet arrival time (0 means it was late, even though it's a valid timestamp) */
150 spx_int32_t delay_step; /**< Size of the steps when adjusting buffering (timestamp units) */
170 The optimised function is in timestamp units and is:
173 @param late_factor Equivalent cost of a late frame (in timestamp units)
372 /*fprintf (stderr, "put packet %d %d\n", timestamp, span);*/
380 if (jitter->packets[i].data && LE32(jitter->packets[i].timestamp + jitter->packets[i].span, jitter->pointer_timestamp))
392 /*fprintf(stderr, "arrival: %d %d %d\n", packet->timestamp, jitter->next_stop, jitter->pointer_timestamp);*/
394 if (!jitter->reset_state && LT32(packet->timestamp, jitte
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_media.h189 extern void btif_media_aa_writebuf(BT_HDR *pBuf, UINT32 timestamp, UINT16 seq_num);
201 UINT32 timestamp, UINT16 seq_num);
/external/chromium/chrome/browser/ui/webui/
H A Dvalue_helper.cc23 dictionary->SetDouble("timestamp", tab.timestamp.ToDoubleT());
43 dictionary->SetDouble("timestamp", window.timestamp.ToDoubleT());
/external/tcpdump/
H A DMakefile-devel-adds12 echo timestamp > ${srcdir}/stamp-h.in
/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/webkit/Source/WebKit2/Shared/qt/
H A DWebEventFactoryQt.cpp107 double timestamp = WTF::currentTime(); local
109 return WebMouseEvent(type, button, event->pos().toPoint(), event->screenPos(), deltaX, deltaY, 0.0f, clickCount, modifiers, timestamp);
120 double timestamp = WTF::currentTime(); local
143 return WebWheelEvent(WebEvent::Wheel, e->pos().toPoint(), e->screenPos(), FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, modifiers, timestamp);
160 double timestamp = WTF::currentTime(); local
162 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, isAutoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
173 double timestamp = WTF::currentTime(); local
206 return WebTouchEvent(type, m_touchPoints, m_ctrlKey, m_altKey, m_shiftKey, m_metaKey, modifiers, timestamp);
/external/webkit/Tools/TestWebKitAPI/mac/
H A DPlatformWebViewMac.mm73 timestamp:GetCurrentEventTime()
86 timestamp:GetCurrentEventTime()
102 timestamp:GetCurrentEventTime()
115 timestamp:GetCurrentEventTime()
/external/oprofile/opjitconv/
H A Dparse_dump.c50 entry->life_start = rec->timestamp;
83 * address and fill life_end field with the timestamp. linear search not very
92 rec->vma, rec->timestamp);
99 if (rec->timestamp > 0 && rec->vma != 0) {
103 entry->life_end = rec->timestamp;
125 debug_line->life_start = rec->timestamp;
/external/chromium/chrome/browser/extensions/
H A Dextension_idle_api.cc37 double timestamp; member in struct:__anon2103::ExtensionIdlePollingData
88 polling_data.timestamp = base::Time::Now().ToDoubleT();
106 double delta = time_now - polling_data.timestamp;

Completed in 3034 milliseconds

1234567891011>>