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

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/
CurrentTime.h 54 WTF_EXPORT double monotonicallyIncreasingTime();
65 using WTF::monotonicallyIncreasingTime;
CurrentTime.cpp 54 double monotonicallyIncreasingTime()
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentLoadTiming.h 47 void markUnloadEventStart() { m_unloadEventStart = monotonicallyIncreasingTime(); }
48 void markUnloadEventEnd() { m_unloadEventEnd = monotonicallyIncreasingTime(); }
49 void markRedirectStart() { m_redirectStart = monotonicallyIncreasingTime(); }
50 void markRedirectEnd() { m_redirectEnd = monotonicallyIncreasingTime(); }
51 void markFetchStart() { m_fetchStart = monotonicallyIncreasingTime(); }
53 void markLoadEventStart() { m_loadEventStart = monotonicallyIncreasingTime(); }
54 void markLoadEventEnd() { m_loadEventEnd = monotonicallyIncreasingTime(); }
DocumentLoadTiming.cpp 71 m_navigationStart = m_referenceMonotonicTime = monotonicallyIncreasingTime();
86 m_redirectEnd = m_fetchStart = monotonicallyIncreasingTime();
  /external/chromium_org/third_party/WebKit/Source/modules/performance/
WorkerPerformance.cpp 54 return 1000.0 * (monotonicallyIncreasingTime() - workerGlobalScope->timeOrigin());
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ThreadTimers.cpp 92 double currentMonotonicTime = monotonicallyIncreasingTime();
121 double fireTime = monotonicallyIncreasingTime();
137 if (!m_firingTimers || timeToQuit < monotonicallyIncreasingTime())
Timer.cpp 212 setNextFireTime(monotonicallyIncreasingTime() + nextFireInterval);
230 double current = monotonicallyIncreasingTime();
412 return max(m_unalignedNextFireTime - monotonicallyIncreasingTime(), 0.0);
ScrollAnimatorNone.cpp 430 bool needToScroll = data.updateDataFromParameters(step, multiplier, scrollableSize, WTF::monotonicallyIncreasingTime(), &parameters);
492 double currentTime = WTF::monotonicallyIncreasingTime();
  /external/chromium_org/webkit/glue/
webkit_glue_unittest.cc 44 virtual double monotonicallyIncreasingTime() OVERRIDE {
48 monotonicallyIncreasingTime();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptGCEvent.cpp 92 gcEventData->setStartTime(WTF::monotonicallyIncreasingTime());
101 double endTime = WTF::monotonicallyIncreasingTime();
  /external/chromium_org/third_party/WebKit/Source/web/
ValidationMessageClientImpl.cpp 93 m_finishTime = monotonicallyIncreasingTime() + std::max(minimumSecondToShowValidationMessage, (message.length() + title.length()) * secondPerCharacter);
124 if (monotonicallyIncreasingTime() >= m_finishTime || !currentView()) {
WebKit.cpp 128 return Platform::current()->monotonicallyIncreasingTime();
LinkHighlight.cpp 70 , m_startTime(monotonicallyIncreasingTime())
269 float extraDurationRequired = std::max(0.f, minPreFadeDuration - static_cast<float>(monotonicallyIncreasingTime() - m_startTime));
WebPagePopupImpl.cpp 241 PageWidgetDelegate::animate(m_page.get(), monotonicallyIncreasingTime());
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorkerGlobalScope.cpp 62 : WorkerGlobalScope(url, userAgent, thread, monotonicallyIncreasingTime(), workerClients)
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLResourcePreloader.cpp 96 HistogramSupport::histogramCustomCounts("WebCore.PreloadDelayMs", static_cast<int>(1000 * (monotonicallyIncreasingTime() - preload->discoveryTime())), 0, 2000, 20);
HTMLResourcePreloader.h 68 , m_discoveryTime(monotonicallyIncreasingTime())
  /external/chromium_org/third_party/WebKit/Source/core/page/
MemoryInfo.cpp 66 double now = monotonicallyIncreasingTime();
DOMTimer.cpp 169 double currentTime = monotonicallyIncreasingTime();
Performance.cpp 291 return 1000.0 * (monotonicallyIncreasingTime() - m_referenceTime);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorProfilerAgent.cpp 275 double idleTime = WTF::monotonicallyIncreasingTime() - m_previousTaskEndTime;
286 m_previousTaskEndTime = WTF::monotonicallyIncreasingTime();
InspectorConsoleAgent.cpp 201 m_times.add(title, monotonicallyIncreasingTime());
218 double elapsed = monotonicallyIncreasingTime() - startTime;
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.cpp 96 utterance->setStartTime(monotonicallyIncreasingTime());
  /external/chromium_org/webkit/child/
webkitplatformsupport_impl.h 100 virtual double monotonicallyIncreasingTime();
webkitplatformsupport_impl.cc 703 double WebKitPlatformSupportImpl::monotonicallyIncreasingTime() {
719 shared_timer_fire_time_ = interval_seconds + monotonicallyIncreasingTime();
    [all...]

Completed in 298 milliseconds

1 2