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

1 2

  /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(); }
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfileNode.cpp 56 double ScriptProfileNode::totalTime() const
  /frameworks/base/core/java/android/animation/
TimeAnimator.java 18 long totalTime = currentTime - mStartTime;
21 mListener.onTimeUpdate(this, totalTime, deltaTime);
51 * deltaTime will be zero. The same is true for totalTime, unless the animator was
61 * @param totalTime The total time elapsed since the animator started, in milliseconds.
64 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime);
  /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/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));
  /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/src/utils/
SkInterpolator.cpp 78 SkMSec totalTime = endTime - startTime;
80 endTime = SkScalarMulFloor(fRepeat, totalTime);
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 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;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
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...]
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 120 int totalTime = 0;
124 totalTime += rt.mTotalThreadTime;
128 Log.d("Http", "Http thread used " + totalTime + " ms " + " for "
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.cpp 158 nsecs_t totalTime = systemTime(SYSTEM_TIME_MONOTONIC) - startTime;
165 (totalTime - value->getElapsedTime()) * 0.000001f,
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 231 mBatteryAudio.totalTime[i] = 0;
    [all...]
MediaPlayerService.h 287 // totalTime[]: total time of audio output devices usage
288 int32_t totalTime[NUM_AUDIO_DEVICES]; // in ms
  /external/quake/src/com/android/quake/
DownloaderActivity.java 260 long totalTime = 10000 * delta / progress;
261 long timeLeft = Math.max(0L, totalTime - delta);
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityRecord.java 740 final long totalTime = stack.mInitialStartTime != 0
745 thisTime, totalTime);
752 if (thisTime != totalTime)
    [all...]
  /gdk/samples/quake/src/com/android/quake/llvm/
DownloaderActivity.java 260 long totalTime = 10000 * delta / progress;
261 long timeLeft = Math.max(0L, totalTime - delta);
    [all...]
  /frameworks/base/core/java/android/app/
IActivityManager.java 418 public long totalTime;
432 dest.writeLong(totalTime);
451 totalTime = source.readLong();
    [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java     [all...]
  /frameworks/base/core/java/android/view/
ViewRootImpl.java     [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 320 Process.PROC_TAB_TERM|Process.PROC_OUT_LONG, // 5: totalTime
767 public void updateCurrentReportedTotalTime(long totalTime) {
770 mUnpluggedReportedTotalTime = totalTime;
774 mCurrentReportedTotalTime = totalTime;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 

Completed in 843 milliseconds

1 2