Searched refs:startTime (Results 1 - 25 of 243) sorted by relevance

12345678910

/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 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 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 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 DPerformanceEntry.h48 double startTime() const;
57 return a->startTime() < b->startTime();
61 PerformanceEntry(const String& name, const String& entryType, double startTime, double finishTime);
H A DPerformanceEntry.idl37 readonly attribute double startTime;
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/v8/test/intl/overrides/
H A Dcaching.js32 var startTime = new Date();
37 var cachedTime = endTime.getTime() - startTime.getTime();
40 startTime = new Date();
45 var nonCachedTime = endTime.getTime() - startTime.getTime();
49 startTime = new Date();
54 collatorTime = endTime.getTime() - startTime.getTime();
/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/jmonkeyengine/engine/src/android/com/jme3/system/android/
H A DAndroidTimer.java47 private long startTime; field in class:AndroidTimer
53 //startTime = System.currentTimeMillis();
54 startTime = System.nanoTime();
69 //return System.currentTimeMillis() - startTime;
70 return System.nanoTime() - startTime;
92 //startTime = System.currentTimeMillis();
93 startTime = System.nanoTime();
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DNanoTimer.java46 private long startTime; field in class:NanoTimer
52 startTime = System.nanoTime();
67 return System.nanoTime() - startTime;
89 startTime = System.nanoTime();
/external/chromium_org/third_party/WebKit/public/web/
H A DWebActiveWheelFlingParameters.h44 double startTime; member in struct:blink::WebActiveWheelFlingParameters
49 , startTime(0)
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackCue.idl28 CustomConstructor(double startTime, double endTime, DOMString text),
34 [RaisesException=Setter] attribute double startTime;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptGCEventListener.h40 virtual void didGC(double startTime, double endTime, size_t collectedBytes) = 0;
/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 DWebActiveGestureAnimation.h47 static PassOwnPtr<WebActiveGestureAnimation> createWithTimeOffset(PassOwnPtr<WebGestureCurve>, WebGestureCurveTarget*, double startTime);
54 WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve>, WebGestureCurveTarget*, double startTime, bool waitingForFirstTick);
/external/chromium_org/content/browser/resources/media/
H A Ddata_series.js45 startTime: this.dataPoints_[0].time,
81 * points, starting at |startTime|, and |stepSize| milliseconds apart.
84 getValues: function(startTime, stepSize, count) {
86 if (this.cacheStartTime_ == startTime &&
93 this.cacheValues_ = this.getValuesInternal_(startTime, stepSize, count);
94 this.cacheStartTime_ = startTime;
103 getValuesInternal_: function(startTime, stepSize, count) {
107 var time = 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/html/
H A DMediaFragmentURIParser.h41 double startTime();
52 bool parseNPTFragment(const LChar*, unsigned length, double& startTime, double& endTime);
/external/compiler-rt/test/timing/
H A Dtiming.h5 double intervalInCycles( uint64_t startTime, uint64_t endTime ) argument
7 uint64_t rawTime = endTime - startTime;
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
H A Dprettyload.js36 var startTime;
70 startTime = Date.now();
81 if (Date.now() - startTime < MAX_DURATION) {
97 }, this.minDuration * MS_PER_SEC - (Date.now() - startTime));
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserScheduler.h55 double startTime; member in class:WebCore::PumpSession
75 if (!session.startTime)
76 session.startTime = currentTime();
81 double elapsedTime = currentTime() - session.startTime;
/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
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/
H A Dttsdebug.js58 var startTime;
68 startTime = new Date();
73 if (startTime == undefined) {
75 startTime = callTime;
81 if (startTime - callTime > 1000) {
82 var delta = ((startTime - callTime) / 1000).toFixed(3);
87 var delta = (endTime - startTime) / 1000;
106 var startTime; variable
116 startTime = new Date();
118 if (startTime
141 var startTime; variable
178 var startTime; variable
288 var startTime; variable
403 var startTime; variable
457 var startTime; variable
[all...]
/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);

Completed in 648 milliseconds

12345678910