Home
last modified time | relevance | path

Searched refs:otherFile (Results 1 – 2 of 2) sorted by relevance

/packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
DDownloadsFilePreferenceTest.java85 File otherFile = new File(mTempDir, "test.txt"); in compareTo_biggerFileSortsAhead() local
86 FileWriter fileWriter = new FileWriter(otherFile); in compareTo_biggerFileSortsAhead()
90 new DownloadsFilePreference(mContext, otherFile, mIconProvider); in compareTo_biggerFileSortsAhead()
100 File otherFile = new File(mTempDir, "test.txt"); in compareTo_fallbackToFileName() local
102 new DownloadsFilePreference(mContext, otherFile, mIconProvider); in compareTo_fallbackToFileName()
/packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
DDownloadsFilePreference.java61 File otherFile = ((DownloadsFilePreference) other).getFile(); in compareTo() local
65 int comparison = Long.compare(otherFile.length(), file.length()); in compareTo()
67 comparison = file.compareTo(otherFile); in compareTo()