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

1 2 3

  /frameworks/base/core/java/android/animation/
TimeAnimator.java 24 long totalTime = currentTime - mStartTime;
27 mListener.onTimeUpdate(this, totalTime, deltaTime);
57 * deltaTime will be zero. The same is true for totalTime, unless the animator was
67 * @param totalTime The total time elapsed since the animator started, in milliseconds.
70 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ControllerOverlay.java 54 void setTimes(int currentTime, int totalTime,
TrimControllerOverlay.java 84 public void setTimes(int currentTime, int totalTime, int trimStartTime, int trimEndTime) {
85 mTimeBar.setTime(currentTime, totalTime, trimStartTime, trimEndTime);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ProfileDataGridTree.js 46 this.totalTime = profileNode.totalTime;
71 data["total"] = formatMilliseconds(this.totalTime);
199 return this.selfTime / this.tree.totalTime * 100.0;
204 return this.totalTime / this.tree.totalTime * 100.0;
236 this._savedTotalTime = this.totalTime;
249 this.totalTime = this._savedTotalTime;
267 this.totalTime += child.totalTime;
    [all...]
BottomUpProfileDataGridTree.js 54 this.totalTime = profileDataGridNode.totalTime;
125 child.totalTime += focusNode.totalTime;
134 child.totalTime = focusNode.totalTime;
255 this.totalTime = profileDataGridNode.totalTime;
TopDownProfileDataGridTree.js 105 this.totalTime = profileDataGridNode.totalTime;
  /frameworks/native/opengl/tests/angeles/
app-linux.cpp 207 double totalTime = timeTemp.tv_usec/1000000.0 + timeTemp.tv_sec;
227 totalTime = (timeTemp.tv_usec/1000000.0 + timeTemp.tv_sec) - totalTime;
228 printf("totalTime=%f s, frameCount=%d, %.2f fps\n",
229 totalTime, frameCount, frameCount/totalTime);
  /external/chromium_org/v8/tools/
profile_view.js 90 * @param {number} totalTime Amount of time that application spent in the
99 funcName, totalTime, selfTime, head) {
101 funcName, totalTime, selfTime, head);
152 * @param {number} totalTime Amount of time that application spent in the
161 internalFuncName, totalTime, selfTime, head) {
163 this.totalTime = totalTime;
176 function() { return this.totalTime /
177 (this.head ? this.head.totalTime : this.totalTime) * 100.0; })
    [all...]
  /external/v8/tools/
profile_view.js 90 * @param {number} totalTime Amount of time that application spent in the
99 funcName, totalTime, selfTime, head) {
101 funcName, totalTime, selfTime, head);
152 * @param {number} totalTime Amount of time that application spent in the
161 internalFuncName, totalTime, selfTime, head) {
163 this.totalTime = totalTime;
176 function() { return this.totalTime /
177 (this.head ? this.head.totalTime : this.totalTime) * 100.0; })
    [all...]
  /external/chromium_org/third_party/icu/source/test/threadtest/
threadtest.cpp 159 int totalTime;
220 gRunInfo.totalTime = 0;
249 gRunInfo.totalTime = atoi(argv[argnum]);
250 if (gRunInfo.totalTime < 1)
435 while (gRunInfo.totalTime == 0 || gRunInfo.totalTime > elapsedSeconds)
521 double cyclesPerMinute = totalCyclesCompleted / (double(gRunInfo.totalTime) / double(60));
  /external/icu4c/test/threadtest/
threadtest.cpp 160 int totalTime;
221 gRunInfo.totalTime = 0;
250 gRunInfo.totalTime = atoi(argv[argnum]);
251 if (gRunInfo.totalTime < 1)
436 while (gRunInfo.totalTime == 0 || gRunInfo.totalTime > elapsedSeconds)
522 double cyclesPerMinute = totalCyclesCompleted / (double(gRunInfo.totalTime) / double(60));
  /development/tools/axl/
chewperf.py 58 totalTime = tLast - t0
60 print "total time", totalTime, "bytes", bytes, "rate", bytes * 1000 / totalTime
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2374.js 28 var msg = '{"result":{"profile":{"head":{"functionName":"(root)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":0,"numberOfCalls":0,"visible":true,"callUID":2771605942,"children":[{"functionName":"(program)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":495.7243772462511,"numberOfCalls":0,"visible":true,"callUID":1902715303,"children":[]}]},"bottomUpHead":{"functionName":"(root)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":0,"numberOfCalls":0,"visible":true,"callUID":2771605942,"children":[{"functionName":"(program)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":495.7243772462511,"numberOfCalls":0,"visible":true,"callUID":1902715303,"children":[]}]}}},"id":41}';
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 78 SkMSec totalTime = endTime - startTime;
80 endTime = SkScalarMulFloor(fRepeat, totalTime);
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 (SkMSec) SkScalarMulFloor(fraction, totalTime);
88 offsetTime = offsetTime % (totalTime << mirror);
89 if (offsetTime > totalTime) { // can only be true if fMirror is true
90 offsetTime = (totalTime << 1) - offsetTime;
  /external/skia/src/utils/
SkInterpolator.cpp 78 SkMSec totalTime = endTime - startTime;
80 endTime = SkScalarMulFloor(fRepeat, totalTime);
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 (SkMSec) SkScalarMulFloor(fraction, totalTime);
88 offsetTime = offsetTime % (totalTime << mirror);
89 if (offsetTime > totalTime) { // can only be true if fMirror is true
90 offsetTime = (totalTime << 1) - offsetTime;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
LoadAverageService.java 190 final int totalTime = userTime+systemTime+iowaitTime+irqTime+softIrqTime+idleTime;
191 if (totalTime == 0) {
194 int userW = (userTime*W)/totalTime;
195 int systemW = (systemTime*W)/totalTime;
196 int irqW = ((iowaitTime+irqTime+softIrqTime)*W)/totalTime;
234 userW = (st.rel_utime*W)/totalTime;
235 systemW = (st.rel_stime*W)/totalTime;
  /cts/suite/pts/deviceTests/simplecpu/jni/
CpuNativeJni.cpp 193 double totalTime = 0;
199 totalTime += (end - start);
202 return totalTime;
256 double totalTime = 0;
263 totalTime += (end - start);
268 return totalTime;
  /external/chromium_org/tools/page_cycler/database/
head.js 5 var totalTime;
80 '&td=' + totalTime + '&tf=' + fudgeTime;
120 totalTime = oldTotalTime + elapsedTime;
  /external/chromium_org/tools/page_cycler/indexed_db/
head.js 5 var totalTime;
80 '&td=' + totalTime + '&tf=' + fudgeTime;
120 totalTime = oldTotalTime + elapsedTime;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
SmoothScroller.java 111 public void onTimeUpdate(TimeAnimator animation, long totalTime,
113 if (!sendEvent(mDownTime + totalTime)) {
  /external/chromium_org/third_party/openssl/openssl/apps/
s_time.c 338 double totalTime = 0.0;
450 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */
453 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
484 totalTime = 0.0;
540 totalTime += tm_Time_F(STOP); /* Add the time for this iteration*/
543 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
  /external/openssl/apps/
s_time.c 338 double totalTime = 0.0;
450 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */
453 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
484 totalTime = 0.0;
540 totalTime += tm_Time_F(STOP); /* Add the time for this iteration*/
543 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
  /cts/suite/pts/deviceTests/opengl/src/com/android/pts/opengl/reference/
GLReferenceBenchmark.java 57 double totalTime = 0;
86 totalTime = setUpTimes[0] + setUpTimes[1] + setUpTimes[2] +
94 "Total Time", totalTime, ResultType.LOWER_BETTER, ResultUnit.MS);
  /external/chromium_org/tools/page_cycler/webpagereplay/extension/
background.js 37 var totalTime = 0
39 totalTime = me_.timing.loadEventEnd - me_.timing.navigationStart;
41 CHECK(totalTime >= 0);
42 return totalTime;
274 var totalTime = result.getTotalTime();
275 if (!totalTime && retryIndex_ < retries_) {
283 iterations_ + ": " + totalTime);
  /frameworks/base/core/java/com/android/internal/app/
ProcessStats.java 382 long totalTime = 0;
406 totalTime += time;
410 if (totalTime != 0 && pw != null) {
414 TimeUtils.formatDuration(totalTime, pw);
417 return totalTime;
474 data.totalTime = 0;
482 data.totalTime += proc.getDuration(bucket, now);
525 long totalTime = 0;
529 totalTime += proc.mState.getLong(val, 0);
531 totalTime += now - proc.mStartTime
    [all...]

Completed in 1299 milliseconds

1 2 3