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 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);
  /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;
  /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 150 nsecs_t totalTime = systemTime(SYSTEM_TIME_MONOTONIC) - startTime;
157 (totalTime - value->getElapsedTime()) * 0.000001f,
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 214 mBatteryAudio.totalTime[i] = 0;
    [all...]
MediaPlayerService.h 292 // totalTime[]: total time of audio output devices usage
293 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/av/media/libstagefright/mp4/
FragmentedMP4Parser.cpp 318 int64_t totalTime = 0;
322 totalTime += se->mDurationUs;
323 if (totalTime > position) {
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityRecord.java     [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 162 long totalTime = 0;
164 totalTime += laps[i];
165 mLaps.get(i).mTotalTime = totalTime;
577 private void updateCurrentLap(long totalTime) {
580 curLap.mLapTime = totalTime - ((Lap)mLapsAdapter.getItem(1)).mTotalTime;
581 curLap.mTotalTime = totalTime;
606 long totalTime = mAccumulatedTime + (curTime - mStartTime);
608 mTimeText.setTime(totalTime, true, true);
611 updateCurrentLap(totalTime);
  /frameworks/base/core/java/android/app/
IActivityManager.java 426 public long totalTime;
440 dest.writeLong(totalTime);
459 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
332 |Process.PROC_OUT_LONG, // 6: totalTime
779 public void updateCurrentReportedTotalTime(long totalTime) {
782 mUnpluggedReportedTotalTime = totalTime;
786 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 761 milliseconds

1 2