Searched defs:startTime (Results 1 - 25 of 134) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFetchInitiatorInfo.h38 , startTime(0.0)
44 double startTime; member in struct:WebCore::FetchInitiatorInfo
/external/chromium_org/third_party/WebKit/PerformanceTests/Animation/resources/
H A Dframerate.js5 var startTime; variable
12 PerfTestRunner.measureValueAsync(1000 * framesPerTimerReading / (currTime - startTime));
13 startTime = currTime;
24 startTime = performance.now();
/external/chromium_org/third_party/WebKit/Source/core/timing/
H A DPerformanceEntry.cpp36 PerformanceEntry::PerformanceEntry(const String& name, const String& entryType, double startTime, double finishTime) argument
39 , m_startTime(startTime)
40 , m_duration(finishTime - startTime)
59 double PerformanceEntry::startTime() const function in class:WebCore::PerformanceEntry
H A DPerformanceMark.h37 static PassRefPtr<PerformanceMark> create(const String& name, double startTime) { return adoptRef(new PerformanceMark(name, startTime)); } argument
42 PerformanceMark(const String& name, double startTime) : PerformanceEntry(name, "mark", startTime, startTime) argument
H A DPerformanceMeasure.h37 static PassRefPtr<PerformanceMeasure> create(const String& name, double startTime, double endTime) { return adoptRef(new PerformanceMeasure(name, startTime, endTime)); } argument
42 PerformanceMeasure(const String& name, double startTime, double endTime) : PerformanceEntry(name, "measure", startTime, endTime) argument
H A DPerformanceResourceTiming.h50 static PassRefPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allowRedirectDetails) argument
52 return adoptRef(new PerformanceResourceTiming(info, requestingDocument, startTime, lastRedirectEndTime, m_allowTimingDetails, m_allowRedirectDetails));
55 static PassRefPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, bool m_allowTimingDetails) argument
57 return adoptRef(new PerformanceResourceTiming(info, requestingDocument, startTime, 0.0, m_allowTimingDetails, false));
77 PerformanceResourceTiming(const ResourceTimingInfo&, Document* requestingDocument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allowRedirectDetails);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebActiveWheelFlingParameters.h44 double startTime; member in struct:blink::WebActiveWheelFlingParameters
49 , startTime(0)
/external/compiler-rt/test/timing/
H A Dtiming.h5 double intervalInCycles( uint64_t startTime, uint64_t endTime ) argument
7 uint64_t rawTime = endTime - startTime;
H A Dfloatundidf.c29 uint64_t startTime = mach_absolute_time(); local
34 double thisTime = intervalInCycles(startTime, endTime);
H A Dashldi3.c34 uint64_t startTime = mach_absolute_time(); local
39 double thisTime = intervalInCycles(startTime, endTime);
H A Dashrdi3.c34 uint64_t startTime = mach_absolute_time(); local
39 double thisTime = intervalInCycles(startTime, endTime);
H A Ddivdi3.c37 uint64_t startTime = mach_absolute_time(); local
42 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdidf.c32 uint64_t startTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdisf.c32 uint64_t startTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdixf.c32 uint64_t startTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
/external/chromium_org/chrome/app/android/
H A Dchrome_main_delegate_android.cc44 base::Time startTime = chrome::android::GetMainEntryPointTime(); local
45 startup_metric_utils::RecordSavedMainEntryPointTime(startTime);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebActiveGestureAnimation.cpp39 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createWithTimeOffset(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime) argument
41 return adoptPtr(new WebActiveGestureAnimation(curve, target, startTime, false));
48 WebActiveGestureAnimation::WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime, bool waitingForFirstTick) argument
49 : m_startTime(startTime)
H A DWebSpeechSynthesisUtterance.cpp99 double WebSpeechSynthesisUtterance::startTime() const function in class:blink::WebSpeechSynthesisUtterance
101 return m_private->startTime();
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestLatency.java42 private static long startTime; field in class:TestLatency
47 startTime = System.currentTimeMillis();
51 return System.currentTimeMillis() - startTime;
/external/skia/tools/skpdiff/
H A DSkDifferentPixelsMetric_cpu.cpp19 double startTime = get_seconds(); local
66 result->timeElapsed = get_seconds() - startTime;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptGCEvent.h71 double startTime() { return m_startTime; } function in class:WebCore::GCEventData
72 void setStartTime(double startTime) { m_startTime = startTime; } argument
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DPlayer.h67 double startTime() const { return m_startTime; } function in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackCue.h62 double startTime() const { return m_startTime; } function in class:WebCore::TextTrackCue
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptProfile.cpp62 double ScriptProfile::startTime() const function in class:WebCore::ScriptProfile
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesisUtterance.h64 double startTime() const { return m_platformUtterance->startTime(); } function in class:WebCore::SpeechSynthesisUtterance
65 void setStartTime(double startTime) { m_platformUtterance->setStartTime(startTime); } argument

Completed in 343 milliseconds

123456