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.java82 File otherFile = new File(mTempDir, "test.txt"); in compareTo_biggerFileSortsAhead() local
83 FileWriter fileWriter = new FileWriter(otherFile); in compareTo_biggerFileSortsAhead()
87 new DownloadsFilePreference(mContext, otherFile, mIconProvider); in compareTo_biggerFileSortsAhead()
97 File otherFile = new File(mTempDir, "test.txt"); in compareTo_fallbackToFileName() local
99 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()