Searched defs:totalSize (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Browser/tests/src/com/android/browser/
H A DWebStorageSizeManagerUnitTests.java55 public void setTotalSizeBytes(long totalSize) { argument
56 mTotalSize = totalSize;
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DStorageVolumePreferenceCategory.java291 public void updateApproximate(long totalSize, long availSize) { argument
292 mItemTotal.setSummary(formatSize(totalSize));
295 mTotalSize = totalSize;
297 final long usedSize = totalSize - availSize;
300 mUsageBarPreference.addEntry(0, usedSize / (float) totalSize, android.graphics.Color.GRAY);
321 mItemTotal.setSummary(formatSize(details.totalSize));
400 public void updateApproximate(StorageMeasurement meas, long totalSize, long availSize) {
402 totalSize, availSize }).sendToTarget();
H A DStorageMeasurement.java99 public long totalSize; field in class:StorageMeasurement.MeasurementDetails
147 public void updateApproximate(StorageMeasurement meas, long totalSize, long availSize); argument
402 details.totalSize = mTotalSize;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFolderIcon.java434 private void computePreviewDrawingParams(int drawableSize, int totalSize) { argument
435 if (mIntrinsicIconSize != drawableSize || mTotalWidth != totalSize) {
437 mTotalWidth = totalSize;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DFolderIcon.java446 private void computePreviewDrawingParams(int drawableSize, int totalSize) { argument
447 if (mIntrinsicIconSize != drawableSize || mTotalWidth != totalSize) {
452 mTotalWidth = totalSize;

Completed in 77 milliseconds