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.java293 public void updateApproximate(long totalSize, long availSize) { argument
294 mItemTotal.setSummary(formatSize(totalSize));
297 mTotalSize = totalSize;
299 final long usedSize = totalSize - availSize;
302 mUsageBarPreference.addEntry(0, usedSize / (float) totalSize, android.graphics.Color.GRAY);
323 mItemTotal.setSummary(formatSize(details.totalSize));
402 public void updateApproximate(StorageMeasurement meas, long totalSize, long availSize) {
404 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 214 milliseconds