Home
last modified time | relevance | path

Searched refs:totalTime (Results 1 – 25 of 25) sorted by relevance

/external/v8/tools/
Dprofile_view.js99 funcName, totalTime, selfTime, head) { argument
101 funcName, totalTime, selfTime, head);
161 internalFuncName, totalTime, selfTime, head) { argument
163 this.totalTime = totalTime;
176 function() { return this.totalTime /
177 (this.head ? this.head.totalTime : this.totalTime) * 100.0; });
186 (this.head ? this.head.totalTime : this.totalTime) * 100.0; });
194 function() { return this.totalTime /
195 (this.parent ? this.parent.totalTime : this.totalTime) * 100.0; });
Dtickprocessor.js397 return rec2.totalTime - rec1.totalTime ||
432 flatView.head.totalTime = totalTicks;
462 heavyView.head.totalTime = totalTicks;
465 return rec2.totalTime - rec1.totalTime ||
541 print(' ' + padLeft(rec.totalTime, 5) + ' ' +
/external/webkit/Source/WebCore/inspector/front-end/
DProfileDataGridTree.js42 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;
305 this.totalTime = profileNode.totalTime;
342 this._savedTotalTime = this.totalTime;
[all …]
DBottomUpProfileDataGridTree.js45 this.totalTime = profileDataGridNode.totalTime;
111 child.totalTime += focusNode.totalTime;
120 child.totalTime = focusNode.totalTime;
232 this.totalTime = profileDataGridNode.totalTime;
DTopDownProfileDataGridTree.js88 this.totalTime = profileDataGrideNode.totalTime;
DProfileView.js302 if (profileDataGridNode.totalTime < queryNumberMilliseconds)
309 if (profileDataGridNode.totalTime > queryNumberMilliseconds)
318 if (profileDataGridNode.totalTime == queryNumberMilliseconds)
/external/webkit/Source/JavaScriptCore/profiler/
DProfileNode.h82 double totalTime() const { return m_visibleTotalTime; } in totalTime() function
93 …Percent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100… in totalPercent()
94 …fPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime())) * 100… in selfPercent()
143 …t RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() > b->totalTime(); } in totalTimeDescendingComparator()
144 …t RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->totalTime() < b->totalTime(); } in totalTimeAscendingComparator()
DProfile.h44 double totalTime() const { return m_head->totalTime(); } in totalTime() function
DProfileNode.cpp84 , m_visibleTotalTime(nodeToCopy->totalTime()) in ProfileNode()
173 m_actualSelfTime += m_children[i]->totalTime(); in stopProfiling()
232 sumOfVisibleChildrensTime += m_children[i]->totalTime(); in calculateVisibleTotalTime()
DProfileGenerator.cpp160 … currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime()); in removeProfileStart()
175 … currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime()); in removeProfileEnd()
DProfile.cpp93 m_head->setVisibleTotalTime(m_head->totalTime() - m_head->selfTime()); in exclude()
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
DLeaksParserWorker.js58 totalTime: 0,
87 childNode.totalTime += leak.size;
92 …self.profile.totalTime = self.profile.children.reduce(function(sum, child) { return sum + child.to…
DWebInspectorShims.js61 data.total = Number.bytesToString(this.totalTime);
/external/icu4c/test/threadtest/
Dthreadtest.cpp159 int totalTime; member
220 gRunInfo.totalTime = 0; in parseCommandLine()
249 gRunInfo.totalTime = atoi(argv[argnum]); in parseCommandLine()
250 if (gRunInfo.totalTime < 1) in parseCommandLine()
435 while (gRunInfo.totalTime == 0 || gRunInfo.totalTime > elapsedSeconds) in main()
521 double cyclesPerMinute = totalCyclesCompleted / (double(gRunInfo.totalTime) / double(60)); in main()
/external/openssl/apps/
Ds_time.c338 double totalTime = 0.0; in MAIN() local
450 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */ in MAIN()
453 ….2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),by… in MAIN()
484 totalTime = 0.0; in MAIN()
540 totalTime += tm_Time_F(STOP); /* Add the time for this iteration*/ in MAIN()
543 ….2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),by… in MAIN()
/external/skia/src/utils/
DSkInterpolator.cpp78 SkMSec totalTime = endTime - startTime; in timeToT() local
80 endTime = SkScalarMulFloor(fRepeat, totalTime); in timeToT()
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime : in timeToT()
84 SkScalarMulFloor(fraction, totalTime); in timeToT()
88 offsetTime = offsetTime % (totalTime << mirror); in timeToT()
89 if (offsetTime > totalTime) { // can only be true if fMirror is true in timeToT()
90 offsetTime = (totalTime << 1) - offsetTime; in timeToT()
/external/webkit/Source/WebCore/platform/graphics/qt/
DMediaPlayerPrivatePhonon.cpp66 stream << " | Total time: " << mediaObject.totalTime(); in debugMediaObject()
293 float duration = m_mediaObject->totalTime() / 1000.0f; in duration()
535 void MediaPlayerPrivatePhonon::totalTimeChanged(qint64 totalTime) in totalTimeChanged() argument
538 LOG(Media, "MediaPlayerPrivatePhonon::totalTimeChanged(%I64d)", totalTime); in totalTimeChanged()
540 LOG(Media, "MediaPlayerPrivatePhonon::totalTimeChanged(%lld)", totalTime); in totalTimeChanged()
/external/webkit/Source/WebCore/bindings/v8/
DScriptProfileNode.h57 double totalTime() const;
DScriptProfileNode.cpp56 double ScriptProfileNode::totalTime() const in totalTime() function in WebCore::ScriptProfileNode
/external/webkit/Source/WebCore/bindings/js/
DScriptProfile.cpp77 result->setNumber("totalTime", node->totalTime()); in buildInspectorObjectFor()
/external/webkit/Source/WebCore/inspector/
DScriptProfileNode.idl33 readonly attribute double totalTime;
/external/quake/src/com/android/quake/
DDownloaderActivity.java260 long totalTime = 10000 * delta / progress; in onReportProgress() local
261 long timeLeft = Math.max(0L, totalTime - delta); in onReportProgress()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2008-08-105776 (KJS::Profile::exclude): Subtract the selfTime from the totalTime of the
5778 were excluded. Since the head's totalTime is used to calculate %s when
5779 its totalTime is the same as the sum of all its visible childrens' times
7715 (KJS::Profile::totalTime):
9325 (KJS::ProfileNode::totalTime):
15624 know which profile to get the totalTime for the whole profile from without
15641 (KJS::ProfileNode::totalTime):
15746 (KJS::FunctionCallProfile::totalTime):
/external/webkit/Tools/
DChangeLog4446 node's totalTime, which is used in calculating percentages.
4471 property, and changed to store the number of leaked bytes in .selfTime/.totalTime.
/external/webkit/Source/WebCore/
DChangeLog-2010-05-2414477 (WebCore::ScriptProfileNode::totalTime):
23233 (WebCore::ScriptProfileNode::totalTime):