HomeSort by relevance Sort by last modified time
    Searched refs:mTotalTime (Results 1 - 12 of 12) sorted by null

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
StopWatchMap.java 33 private long mTotalTime;
39 mTotalTime = 0;
57 mTotalTime += stopTime - mStartTime;
62 String.format("%.1f", mTotalTime * 1.0f / mNumCalls));
63 mTotalTime = 0;
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineButtonsTest.java 30 private View mTotalTime;
46 mTotalTime = activity.findViewById(R.id.totaltime);
56 assertNotNull(mTotalTime);
82 assertEquals("TotalTime wrong bottom", pauseHeight, mTotalTime.getBottom());
84 assertTrue("TotalTime too tall", mTotalTime.getTop() > 0);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TrimTimeBar.java 76 (int) ((mProgressBar.width() * (long) time) / mTotalTime);
92 if (mTotalTime > 0) {
113 if (mTotalTime > 0 && mTrimEndTime == 0) {
114 mTrimEndTime = mTotalTime;
127 if (mCurrentTime == currentTime && mTotalTime == totalTime
132 mTotalTime = totalTime;
163 * mTotalTime / mProgressBar.width());
202 stringForTime(mTotalTime),
TimeBar.java 75 protected int mTotalTime;
116 if (mTotalTime > 0) {
118 mPlayedBar.left + (int) ((mProgressBar.width() * (long) mCurrentTime) / mTotalTime);
145 if (mCurrentTime == currentTime && mTotalTime == totalTime) {
149 mTotalTime = totalTime;
169 * mTotalTime / mProgressBar.width());
209 stringForTime(mTotalTime),
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
Statistics.java 85 int mTotalTime;
89 mTotalTime = 0;
94 mTotalTime += deltaTime;
101 return mTotalTime / mCount;
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsUi.java 113 long mTotalTime;
194 args.putLong(ProcessStatsDetail.EXTRA_TOTAL_TIME, mTotalTime);
407 mTotalTime = ProcessStats.dumpSingleTime(null, null, mStats.mMemFactorDurations,
409 if (DEBUG) Log.d(TAG, "Total time of stats: " + makeDuration(mTotalTime));
441 memTotalTime = mTotalTime;
445 colors.setRatios(memTimes[ProcessStats.ADJ_MEM_FACTOR_CRITICAL] / (float)mTotalTime,
447 + memTimes[ProcessStats.ADJ_MEM_FACTOR_MODERATE]) / (float)mTotalTime,
448 memTimes[ProcessStats.ADJ_MEM_FACTOR_NORMAL] / (float)mTotalTime);
ProcessStatsDetail.java 66 private long mTotalTime;
91 mTotalTime = args.getLong(EXTRA_TOTAL_TIME);
120 String appLevelText = makePercentString(getResources(), mEntry.mDuration, mTotalTime);
208 makePercentString(getResources(), mEntry.mDuration, mTotalTime));
271 final double percentOfTime = (((double)duration) / mTotalTime) * 100;
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 116 private long mTotalTime;
303 mTotalTime += mStopTime;
483 sb.append("totalTime=" + (mTotalTime + currentSessionLength) + ", ");
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 80 mTotalTime = total;
83 public long mTotalTime;
151 totalTime.setText(Stopwatches.formatTimeText(lap.mTotalTime, mFormats[mTotalIndex]));
192 lap.mTotalTime >= mThresholds[mTotalIndex]) {
219 laps[i] = mLaps.get(i).mTotalTime;
238 mLaps.get(i).mTotalTime = totalTime;
798 final long lapTime = curTime - mLapsAdapter.getItem(1).mTotalTime;
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 593 long mTotalTime;
597 * mTotalTime to find the time for the current run of the system.
608 * The value of mTotalTime when unplug() was last called. Subtract
609 * this from mTotalTime to find the time since the last unplug from
628 mTotalTime = in.readLong();
650 mTotalTime = mLoadedTime = mLastTime = 0;
689 + " old mTotalTime=" + mTotalTime);
691 mTotalTime = computeRunTimeLocked(batteryRealtime);
695 + ": new mTotalTime=" + mTotalTime)
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 109 mTotalTime = (TextView) findViewById(R.id.totaltime);
    [all...]
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 403 milliseconds