HomeSort by relevance Sort by last modified time
    Searched refs:currentTime (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/webkit/WebCore/platform/chromium/
SystemTimeChromium.cpp 40 double currentTime()
42 return ChromiumBridge::currentTime();
  /external/webkit/WebKit/chromium/src/
ChromiumCurrentTime.cpp 32 #include <wtf/CurrentTime.h>
39 double currentTime()
41 return WebKit::webKitClient()->currentTime();
  /packages/apps/Gallery3D/src/com/cooliris/media/
FloatAnim.java 36 public float getTimeRemaining(long currentTime) {
37 float duration = (currentTime - mStartTime) * 0.001f;
44 public float getValue(long currentTime) {
48 return getInterpolatedValue(currentTime);
52 public void animateValue(float value, float duration, long currentTime) {
53 mDelta = getValue(currentTime) - value;
56 mStartTime = currentTime;
68 private float getInterpolatedValue(long currentTime) {
69 float ratio = (float) (currentTime - mStartTime) * 0.001f / mDuration;
  /external/webkit/JavaScriptCore/wtf/
CurrentTime.h 42 double currentTime();
47 return currentTime() * 1000.0;
63 using WTF::currentTime;
CurrentTime.cpp 34 #include "CurrentTime.h"
161 double currentTime()
230 double currentTime()
256 double currentTime()
267 double currentTime()
276 double currentTime()
289 double currentTime()
298 double currentTime()
MainThread.cpp 33 #include "CurrentTime.h"
84 double startTime = currentTime();
104 if (currentTime() - startTime > maxRunLoopSuspensionTime) {
  /external/webkit/WebCore/page/
PluginHalter.cpp 32 #include <wtf/CurrentTime.h>
55 double currentTime = WTF::currentTime();
57 m_plugins.add(obj, currentTime);
60 m_oldestStartTime = currentTime;
82 double pluginCutOffTime = WTF::currentTime() - m_pluginAllowedRunTime;
114 double nextFireInterval = static_cast<double>(m_pluginAllowedRunTime) - (currentTime() - m_oldestStartTime);
  /external/webkit/JavaScriptCore/runtime/
TimeoutChecker.cpp 41 #include "CurrentTime.h"
94 return currentTime() * 1000;
114 unsigned currentTime = getCPUTime();
118 m_timeAtLastCheck = currentTime;
122 unsigned timeDiff = currentTime - m_timeAtLastCheck;
128 m_timeAtLastCheck = currentTime;
  /external/webkit/WebCore/platform/android/
SharedTimerAndroid.cpp 34 #include <wtf/CurrentTime.h>
49 // as the result of currentTime() is.
52 long long timeInMs = static_cast<long long>((fireTime - WTF::currentTime()) * 1000);
  /external/webkit/WebCore/platform/brew/
SharedTimerBrew.cpp 33 #include <wtf/CurrentTime.h>
57 double interval = fireTime - currentTime();
  /external/webkit/WebCore/platform/wx/
SharedTimerWx.cpp 32 #include <wtf/CurrentTime.h>
75 double interval = fireTime - currentTime();
  /external/webkit/WebCore/platform/
ThreadTimers.cpp 33 #include <wtf/CurrentTime.h>
100 double fireTime = currentTime();
115 if (!m_firingTimers || timeToQuit < currentTime())
  /external/webkit/JavaScriptCore/wtf/qt/
ThreadingQt.cpp 34 #include "CurrentTime.h"
265 double currentTime = WTF::currentTime();
268 if (absoluteTime < currentTime)
272 if (absoluteTime - currentTime > static_cast<double>(INT_MAX) / 1000.0) {
277 double intervalMilliseconds = (absoluteTime - currentTime) * 1000.0;
  /sdk/traceview/src/com/android/traceview/
ThreadData.java 63 long currentTime = call.mThreadStartTime;
64 if (currentTime < mLastEventTime) {
68 call.getName(), currentTime, mLastEventTime, mName);
71 long elapsed = currentTime - mLastEventTime;
80 mLastEventTime = currentTime;
  /external/webkit/WebCore/platform/gtk/
SharedTimerGtk.cpp 32 #include <wtf/CurrentTime.h>
56 double interval = fireTime - currentTime();
  /external/webkit/WebCore/platform/network/qt/
DnsPrefetchHelper.h 52 *tmpTime = QTime::currentTime();
  /external/webkit/WebKit/mac/WebCoreSupport/
WebGeolocationMock.mm 31 #import <wtf/CurrentTime.h>
48 RefPtr<Geoposition> position = Geoposition::create(coordinates.release(), currentTime() * 1000.0);
  /frameworks/base/include/ui/
InputDispatcher.h 741 void synthesizeCancelationEvents(nsecs_t currentTime, Allocator* allocator,
810 inline double getEventLatencyMillis(nsecs_t currentTime) const {
811 return (currentTime - lastEventTime) / 1000000.0;
815 inline double getDispatchLatencyMillis(nsecs_t currentTime) const {
816 return (currentTime - lastDispatchTime) / 1000000.0;
    [all...]
  /frameworks/base/libs/ui/
InputDispatcher.cpp 225 nsecs_t currentTime = now();
227 if (nextWakeupTime > currentTime) {
228 uint64_t timeout = uint64_t(nextWakeupTime - currentTime);
240 nsecs_t currentTime = now();
260 bool isAppSwitchDue = mAppSwitchDueTime <= currentTime;
278 if (currentTime >= mKeyRepeatState.nextRepeatTime) {
279 mPendingEvent = synthesizeKeyRepeatLocked(currentTime, keyRepeatDelay);
313 if (currentTime < nextTime) {
318 deviceId, source, (nextTime - currentTime) * 0.000001);
341 mThrottleState.lastEventTime = entry->eventTime < currentTime
    [all...]
  /external/webkit/WebCore/inspector/
InspectorResource.cpp 98 resource->m_startTime = currentTime();
334 m_startTime = currentTime();
340 m_responseReceivedTime = currentTime();
346 m_endTime = currentTime();
354 m_domContentEventTime = currentTime();
360 m_loadEventTime = currentTime();
378 m_endTime = currentTime();
  /external/webkit/WebKit/android/
TimeCounter.cpp 38 #include <wtf/CurrentTime.h>
126 int totalTime = static_cast<int>((currentTime() - sStartTotalTime) * 1000);
153 double current = currentTime();
183 sStartTotalTime = currentTime();
  /external/webkit/WebCore/dom/
Event.cpp 27 #include <wtf/CurrentTime.h>
41 , m_createTime(static_cast<DOMTimeStamp>(currentTime() * 1000.0))
56 , m_createTime(static_cast<DOMTimeStamp>(currentTime() * 1000.0))
  /external/webkit/WebCore/platform/qt/
PlatformMouseEventQt.cpp 31 #include <wtf/CurrentTime.h>
40 m_timestamp = WTF::currentTime();
76 m_timestamp = WTF::currentTime();
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginPackage.mm 352 CFAbsoluteTime currentTime;
366 currentTime = CFAbsoluteTimeGetCurrent();
367 duration = currentTime - start;
369 LOG(Plugins, "%f CFBundleLoadExecutable took %f seconds", currentTime, duration);
408 currentTime = CFAbsoluteTimeGetCurrent();
409 duration = currentTime - start;
411 LOG(Plugins, "%f WebGetDiskFragment took %f seconds", currentTime, duration);
511 currentTime = CFAbsoluteTimeGetCurrent();
512 duration = currentTime - mainStart;
514 LOG(Plugins, "%f main took %f seconds", currentTime, duration)
    [all...]
  /external/webkit/WebKitTools/QtLauncher/
webview.cpp 63 m_lastConsultTime = m_startTime = QTime::currentTime();
72 QTime now = QTime::currentTime();

Completed in 559 milliseconds

1 2 3 4 5 6 7