Searched refs:getCursorLong (Results 1 – 7 of 7) sorted by relevance
/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/ |
D | SortingCursorWrapper.java | 19 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 85 longValues[i] = getCursorLong(mCursor, Document.COLUMN_SIZE); in SortingCursorWrapper() 176 long l = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in getLastModified()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
D | FilteringCursorWrapper.java | 19 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 57 final long lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in FilteringCursorWrapper()
|
D | DocumentInfo.java | 168 this.lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); in updateFromCursor() 171 this.size = getCursorLong(cursor, Document.COLUMN_SIZE); in updateFromCursor() 341 public static long getCursorLong(Cursor cursor, String columnName) { in getCursorLong() method in DocumentInfo
|
D | RootInfo.java | 22 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 201 root.availableBytes = getCursorLong(cursor, Root.COLUMN_AVAILABLE_BYTES); in fromRootsCursor()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/ |
D | GridPhotoHolder.java | 19 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 142 Formatter.formatFileSize(mContext, getCursorLong(cursor, Document.COLUMN_SIZE)); in bind()
|
D | GridDocumentHolder.java | 19 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 178 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE); in bind()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/services/ |
D | CopyJob.java | 26 import static com.android.documentsui.base.DocumentInfo.getCursorLong; 713 long size = getCursorLong(cursor, Document.COLUMN_SIZE); in calculateFileSizesRecursively()
|