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

1 2

  /frameworks/base/core/java/android/animation/
TimeAnimator.java 30 long totalTime = currentTime - mStartTime;
33 mListener.onTimeUpdate(this, totalTime, deltaTime);
62 * since the last frame. The first time the listener is called, totalTime and
73 * @param totalTime The
75 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime);
  /external/webkit/Source/JavaScriptCore/profiler/
Profile.h 44 double totalTime() const { return m_head->totalTime(); }
ProfileNode.h 82 double totalTime() const { return m_visibleTotalTime; }
93 double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
94 double selfPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
143 static inline bool totalTimeDescendingComparator(const RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() > b->totalTime(); }
144 static inline bool totalTimeAscendingComparator(const RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() < b->totalTime(); }
ProfileGenerator.cpp 160 currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime());
175 currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime());
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
LeaksParserWorker.js 58 totalTime: 0,
69 // non-zero selfTime). "totalTime" is the number of stacks which contain this function (and thus is
87 childNode.totalTime += leak.size;
92 self.profile.totalTime = self.profile.children.reduce(function(sum, child) { return sum + child.totalTime; }, 0);
WebInspectorShims.js 61 data.total = Number.bytesToString(this.totalTime);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ControllerOverlay.java 56 void setTimes(int currentTime, int totalTime);
TimeBar.java 72 private int totalTime;
113 if (totalTime > 0) {
115 playedBar.left + (int) ((progressBar.width() * (long) currentTime) / totalTime);
140 public void setTime(int currentTime, int totalTime) {
141 if (this.currentTime == currentTime && this.totalTime == totalTime) {
145 this.totalTime = totalTime;
183 * totalTime / progressBar.width());
225 stringForTime(totalTime),
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ProfileDataGridTree.js 42 this.totalTime = profileNode.totalTime;
69 data["total"] = formatMilliseconds(this.totalTime);
192 return this.averageTime / this.tree.totalTime * 100.0;
197 return this.selfTime / this.tree.totalTime * 100.0;
202 return this.totalTime / this.tree.totalTime * 100.0;
233 this._savedTotalTime = this.totalTime;
247 this.totalTime = this._savedTotalTime;
266 this.totalTime += child.totalTime
    [all...]
BottomUpProfileDataGridTree.js 45 this.totalTime = profileDataGridNode.totalTime;
111 child.totalTime += focusNode.totalTime;
120 child.totalTime = focusNode.totalTime;
232 this.totalTime = profileDataGridNode.totalTime;
TopDownProfileDataGridTree.js 88 this.totalTime = profileDataGrideNode.totalTime;
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfileNode.h 57 double totalTime() const;
ScriptProfileNode.cpp 56 double ScriptProfileNode::totalTime() const
  /external/webkit/Source/WebCore/inspector/
ScriptProfileNode.idl 33 readonly attribute double totalTime;
  /frameworks/base/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/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/icu4c/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));
  /development/tools/axl/
chewperf.py 58 totalTime = tLast - t0
60 print "total time", totalTime, "bytes", bytes, "rate", bytes * 1000 / totalTime
  /external/skia/src/utils/
SkInterpolator.cpp 85 SkMSec totalTime = endTime - startTime;
87 endTime = SkScalarMulFloor(fRepeat, totalTime);
90 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
91 SkScalarMulFloor(fraction, totalTime);
95 offsetTime = offsetTime % (totalTime << mirror);
96 if (offsetTime > totalTime) { // can only be true if fMirror is true
97 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;
  /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);
  /external/skia/gpu/include/
GrStopwatch.h 75 double totalTime() const {
  /external/webkit/Source/WebKit/android/
TimeCounter.cpp 125 int totalTime = static_cast<int>((currentTime() - sStartTotalTime) * 1000);
128 totalTime, threadTime, urlString.utf8().data());
  /external/webkit/Source/WebCore/bindings/js/
ScriptProfile.cpp 77 result->setNumber("totalTime", node->totalTime());
  /frameworks/base/core/java/com/android/internal/os/
ProcessStats.java 710 final int totalTime = mRelUserTime + mRelSystemTime + mRelIoWaitTime
713 if (DEBUG) Slog.i(TAG, "totalTime " + totalTime + " over sample time "
734 printProcessCPU(pw, "", -1, "TOTAL", totalTime, mRelUserTime, mRelSystemTime,
754 int totalTime, int user, int system, int iowait, int irq, int softIrq,
757 if (totalTime == 0) totalTime = 1;
758 printRatio(pw, user+system+iowait+irq+softIrq, totalTime);
766 printRatio(pw, user, totalTime);
768 printRatio(pw, system, totalTime);
    [all...]

Completed in 480 milliseconds

1 2