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

  /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);
  /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;
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsMemDetail.java 53 long mTotalTime;
72 mTotalTime = args.getLong(EXTRA_TOTAL_TIME);
118 float level = ((float)mMemTimes[i])/mTotalTime;
129 (long)((weight * 1024) / mTotalTime));
ProcessStatsDetail.java 66 private long mTotalTime;
86 mTotalTime = args.getLong(EXTRA_TOTAL_TIME);
115 String appLevelText = Utils.formatPercentage(mEntry.mDuration, mTotalTime);
202 Utils.formatPercentage(mEntry.mDuration, mTotalTime));
264 String percentage = Utils.formatPercentage(service.mDuration, mTotalTime);
ProcessStatsUi.java 116 long mTotalTime;
208 args.putLong(ProcessStatsMemDetail.EXTRA_TOTAL_TIME, mTotalTime);
224 args.putLong(ProcessStatsDetail.EXTRA_TOTAL_TIME, mTotalTime);
438 mTotalTime = ProcessStats.dumpSingleTime(null, null, mStats.mMemFactorDurations,
440 if (DEBUG) Log.d(TAG, "Total time of stats: " + makeDuration(mTotalTime));
469 memTotalTime = mTotalTime;
480 float memBadness = ((float)timeGood)/mTotalTime;
490 mMemTimes[i] = (long)((mMemTimes[i]*(double)elapsedTime)/mTotalTime);
596 memTotalTime = mTotalTime;
600 colors.setRatios(mMemTimes[ProcessStats.ADJ_MEM_FACTOR_CRITICAL] / (float)mTotalTime,
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
ComprehensiveCountryDetector.java 115 private long mTotalTime;
302 mTotalTime += mStopTime;
482 sb.append("totalTime=" + (mTotalTime + currentSessionLength) + ", ");
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PlaybackControlsPresenter.java 58 final TextView mTotalTime;
70 mTotalTime = (TextView) rootView.findViewById(R.id.total_time);
91 ((MarginLayoutParams) mTotalTime.getLayoutParams()).getMarginEnd();
141 mTotalTime.setVisibility(View.GONE);
144 mTotalTime.setVisibility(View.VISIBLE);
147 mTotalTime.setText(mTotalTimeStringBuilder.toString());
271 lp = (MarginLayoutParams) vh.mTotalTime.getLayoutParams();
273 vh.mTotalTime.setLayoutParams(lp);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
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/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 68 mTotalTime = total;
71 public long mTotalTime;
154 totalTime.setText(Stopwatches.formatTimeText(lap.mTotalTime, mFormats[mTotalIndex]));
196 lap.mTotalTime >= mThresholds[mTotalIndex]) {
223 laps[i] = mLaps.get(i).mTotalTime;
242 mLaps.get(i).mTotalTime = totalTime;
588 final long lapTime = curTime - mLapsAdapter.getItem(1).mTotalTime;
590 mLapsAdapter.getItem(0).mTotalTime = curTime;
611 curLap.mLapTime = totalTime - mLapsAdapter.getItem(1).mTotalTime;
612 curLap.mTotalTime = totalTime
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 109 mTotalTime = (TextView) findViewById(R.id.totaltime);
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 883 long mTotalTime;
887 * mTotalTime to find the time for the current run of the system.
898 * The value of mTotalTime when unplug() was last called. Subtract
899 * this from mTotalTime to find the time since the last unplug from
918 mTotalTime = in.readLong();
923 if (DEBUG) Log.i(TAG, "**** READ TIMER #" + mType + ": mTotalTime=" + mTotalTime);
941 mTotalTime = mLoadedTime = mLastTime = 0;
    [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 1992 milliseconds