/external/compiler-rt/test/builtins/timing/ |
floatundixf.c | 32 uint64_t startTime = mach_absolute_time(); 37 double thisTime = intervalInCycles(startTime, endTime);
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
CycleInterpolatorTest.java | 79 long startTime = anim.getStartTime(); 80 anim.getTransformation(startTime, transformation); 84 anim.getTransformation(startTime + 500, transformation); 88 anim.getTransformation(startTime + 1000, transformation); 91 anim.getTransformation(startTime + 1500, transformation); 95 anim.getTransformation(startTime + CYCLE_ALPHA_DURATION, transformation); 118 startTime = anim.getStartTime(); 119 anim.getTransformation(startTime, transformation); 123 anim.getTransformation(startTime + 250, transformation); 127 anim.getTransformation(startTime + 500, transformation) [all...] |
AccelerateInterpolatorTest.java | 86 long startTime = anim.getStartTime(); 87 anim.getTransformation(startTime, transformation); 91 anim.getTransformation(startTime + 250, transformation); 94 anim.getTransformation(startTime + 500, transformation); 97 anim.getTransformation(startTime + 750, transformation); 100 anim.getTransformation(startTime + ACCELERATE_ALPHA_DURATION, transformation); 120 startTime = anim.getStartTime(); 121 anim.getTransformation(startTime, transformation); 125 anim.getTransformation(startTime + 250, transformation); 128 anim.getTransformation(startTime + 500, transformation) [all...] |
DecelerateInterpolatorTest.java | 89 long startTime = anim.getStartTime(); 90 anim.getTransformation(startTime, transformation); 94 anim.getTransformation(startTime + 500, transformation); 97 anim.getTransformation(startTime + 1000, transformation); 100 anim.getTransformation(startTime + 1500, transformation); 103 anim.getTransformation(startTime + DECELERATE_ALPHA_DURATION, transformation); 123 startTime = anim.getStartTime(); 124 anim.getTransformation(startTime, transformation); 128 anim.getTransformation(startTime + 500, transformation); 131 anim.getTransformation(startTime + 1000, transformation) [all...] |
LinearInterpolatorTest.java | 84 final long startTime = anim.getStartTime(); 85 anim.getTransformation(startTime, transformation); 89 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP, transformation); 92 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 2, transformation); 95 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 3, transformation); 98 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 4, transformation); 101 anim.getTransformation(startTime + LINEAR_ALPHA_DURATION, transformation);
|
AccelerateDecelerateInterpolatorTest.java | 80 long startTime = anim.getStartTime(); 81 anim.getTransformation(startTime, transformation); 85 anim.getTransformation(startTime + 500, transformation); 88 anim.getTransformation(startTime + 1000, transformation); 91 anim.getTransformation(startTime + 1500, transformation); 94 anim.getTransformation(startTime + ALPHA_DURATION, transformation);
|
RotateAnimationTest.java | 97 final long startTime = rotateAnimation.getStartTime(); 101 rotateAnimation.getTransformation(startTime, transformation); 109 rotateAnimation.getTransformation(startTime + DURATION / 2, transformation); 117 rotateAnimation.getTransformation(startTime + DURATION, transformation); 153 final long startTime = rotateAnimation.getStartTime(); 157 rotateAnimation.getTransformation(startTime, transformation); 165 rotateAnimation.getTransformation(startTime + DURATION / 2, transformation); 173 rotateAnimation.getTransformation(startTime + DURATION, transformation);
|
/external/chromium_org/third_party/WebKit/Source/core/timing/ |
PerformanceEntry.cpp | 36 PerformanceEntry::PerformanceEntry(const String& name, const String& entryType, double startTime, double finishTime) 39 , m_startTime(startTime) 40 , m_duration(finishTime - startTime) 58 double PerformanceEntry::startTime() const
|
PerformanceMeasure.h | 39 static PassRefPtrWillBeRawPtr<PerformanceMeasure> create(const String& name, double startTime, double endTime) 41 return adoptRefWillBeNoop(new PerformanceMeasure(name, startTime, endTime)); 52 PerformanceMeasure(const String& name, double startTime, double endTime) 53 : PerformanceEntry(name, "measure", startTime, endTime) { }
|
PerformanceResourceTiming.h | 52 static PassRefPtrWillBeRawPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allowRedirectDetails) 54 return adoptRefWillBeNoop(new PerformanceResourceTiming(info, requestingDocument, startTime, lastRedirectEndTime, m_allowTimingDetails, m_allowRedirectDetails)); 57 static PassRefPtrWillBeRawPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, bool m_allowTimingDetails) 59 return adoptRefWillBeNoop(new PerformanceResourceTiming(info, requestingDocument, startTime, 0.0, m_allowTimingDetails, false)); 81 PerformanceResourceTiming(const ResourceTimingInfo&, Document* requestingDocument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allowRedirectDetails);
|
PerformanceUserTiming.cpp | 108 double startTime = m_performance->now(); 109 insertPerformanceEntry(m_marksMap, PerformanceMark::create(markName, startTime)); 110 blink::Platform::current()->histogramCustomCounts("PLT.UserTiming_Mark", static_cast<int>(startTime), 0, 600000, 100); 121 return m_marksMap.get(markName).last()->startTime(); 138 double startTime = 0.0; 145 startTime = findExistingMarkStartTime(startMark, exceptionState); 152 startTime = findExistingMarkStartTime(startMark, exceptionState); 157 insertPerformanceEntry(m_measuresMap, PerformanceMeasure::create(measureName, startTime, endTime)); 158 if (endTime >= startTime) 159 blink::Platform::current()->histogramCustomCounts("PLT.UserTiming_MeasureDuration", static_cast<int>(endTime - startTime), 0, 600000, 100) [all...] |
PerformanceEntry.h | 50 double startTime() const; 59 return a->startTime() < b->startTime(); 65 PerformanceEntry(const String& name, const String& entryType, double startTime, double finishTime);
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/ |
ttsdebug.js | 58 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; 116 startTime = new Date(); 118 if (startTime == undefined [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
TimelineOverviewPane.js | 144 this._windowStartTime = windowTimes.startTime; 150 * @param {number} startTime 153 requestWindowTimes: function(startTime, endTime) 155 if (startTime === this._windowStartTime && endTime === this._windowEndTime) 157 this._windowStartTime = startTime; 160 this.dispatchEventToListeners(WebInspector.TimelineOverviewPane.Events.WindowChanged, { startTime: startTime, endTime: endTime }); 208 var start = (record.startTime() - this._minimumBoundary) / this.boundarySpan() * 100; 309 * @return {!{startTime: number, endTime: number}} 314 * @param {number} startTime [all...] |
TimelineFrameModel.js | 56 * @param {number} startTime 60 filteredFrames: function(startTime, endTime) 69 return value - object.startTime; 81 var firstFrame = insertionIndexForObjectInListSortedByFunction(startTime, frames, compareEndTime); 99 * @param {number} startTime 101 handleBeginFrame: function(startTime) 104 this._startBackgroundFrame(startTime); 108 * @param {number} startTime 110 handleDrawFrame: function(startTime) 113 this._startBackgroundFrame(startTime); [all...] |
/cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/ |
ReceiveUriActivity.java | 98 final long startTime = SystemClock.uptimeMillis(); 104 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) { 125 final long startTime = SystemClock.uptimeMillis(); 131 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) { 140 final long startTime = SystemClock.uptimeMillis(); 146 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
|
ReceiveUriService.java | 96 final long startTime = SystemClock.uptimeMillis(); 102 if (SystemClock.uptimeMillis() >= (startTime+5000)) { 117 final long startTime = SystemClock.uptimeMillis(); 123 if (SystemClock.uptimeMillis() >= (startTime+5000)) {
|
/packages/providers/TvProvider/tests/src/com/android/providers/tv/ |
EpgDataCleanupServiceTests.java | 84 final long startTime; 87 Program(long startTime, long endTime) { 88 this(-1, startTime, endTime); 91 Program(long id, long startTime, long endTime) { 93 this.startTime = startTime; 104 && Objects.equals(startTime, that.startTime) 110 return Objects.hash(id, startTime, endTime); 115 return "Program(id=" + id + ",start=" + startTime + ",end=" + endTime + ")" [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/inspector/ |
inspector-startup-time.html | 12 startTime = Date.now(); 13 testStartTime = startTime; 19 times.push(Date.now() - startTime); 26 startTime = Date.now();
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLParserScheduler.h | 57 double startTime; 77 if (!session.startTime) 78 session.startTime = currentTime(); 83 double elapsedTime = currentTime() - session.startTime;
|
/external/chromium_org/third_party/WebKit/Source/modules/speech/ |
SpeechSynthesisUtterance.h | 64 double startTime() const { return m_platformUtterance->startTime(); } 65 void setStartTime(double startTime) { m_platformUtterance->setStartTime(startTime); }
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebActiveGestureAnimation.cpp | 39 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createWithTimeOffset(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime) 41 return adoptPtr(new WebActiveGestureAnimation(curve, target, startTime, false)); 48 WebActiveGestureAnimation::WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime, bool waitingForFirstTick) 49 : m_startTime(startTime)
|
/external/chromium_org/tools/telemetry/telemetry/timeline/ |
inspector_importer.py | 30 return 'startTime' in event_datum and 'type' in event_datum 45 if ('startTime' in raw_inspector_event and 49 if x in ('startTime', 'endTime', 'children'): 54 start_time = raw_inspector_event['startTime']
|
/frameworks/native/libs/binder/ |
AppOpsManager.cpp | 44 int64_t startTime = 0; 51 if (startTime == 0) { 52 startTime = uptimeMillis(); 54 } else if ((uptimeMillis()-startTime) > 10000) {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
CPUProfileFlameChart.js | 72 * @param {number} startTime 76 dividerOffsets: function(startTime, endTime) 140 * @param {number} startTime 144 function ChartEntry(depth, duration, startTime, selfTime, node) 148 this.startTime = startTime; 162 // Reserve space for the entry, as they have to be ordered by startTime. 166 function onCloseFrame(depth, node, startTime, totalTime, selfTime) 169 entries[index] = new ChartEntry(depth, totalTime, startTime, selfTime, node); 187 entryStartTimes[i] = entry.startTime; [all...] |