/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/ |
D | ReadableArchiveTest.java | 130 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument() 138 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument() 146 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument() 165 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument() 184 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_NoDirs() 202 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_NoDirs() 233 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_EmptyDirs() 247 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_EmptyDirs() 261 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_EmptyDirs() 314 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryDocument() [all …]
|
D | WriteableArchiveTest.java | 163 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testAddDirectory() 178 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testAddDirectory() 213 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testAddFile() 245 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testAddFile()
|
D | ResourcesProvider.java | 53 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 102 row.add(Document.COLUMN_SIZE, 0); in queryDocument() 157 row.add(Document.COLUMN_SIZE, fd.getLength()); in includeDocument()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/ |
D | SortingCursorWrapperTest.java | 63 Document.COLUMN_SIZE, 126 row.add(Document.COLUMN_SIZE, rand.nextInt()); in setUp() 196 int size = DocumentInfo.getCursorInt(cursor, Document.COLUMN_SIZE); in testSort_sizes_ascending() 219 int size = DocumentInfo.getCursorInt(cursor, Document.COLUMN_SIZE); in testSort_sizes_descending() 236 row.add(Document.COLUMN_SIZE, i); in testSort_sizesWithBucketing_ascending() 270 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE); in testSort_sizesWithBucketing_ascending() 288 row.add(Document.COLUMN_SIZE, i); in testSort_sizesWithBucketing_descending() 321 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE); in testSort_sizesWithBucketing_descending()
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/ |
D | TestRootProvider.java | 51 Document.COLUMN_SIZE, 87 row.add(Document.COLUMN_SIZE, 0); in addFile() 101 row.add(Document.COLUMN_SIZE, 0); in addFolder()
|
D | InspectorProvider.java | 138 row.add(Document.COLUMN_SIZE, size); in addFileWithSize()
|
D | StubProvider.java | 85 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 664 row.add(Document.COLUMN_SIZE, document.file.length()); in includeDocument()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | WidgetPreviewLoader.java | 123 private static final String COLUMN_SIZE = "size"; field in WidgetPreviewLoader.CacheDb 138 COLUMN_SIZE + " TEXT NOT NULL, " + in onCreateTable() 143 … "PRIMARY KEY (" + COLUMN_COMPONENT + ", " + COLUMN_USER + ", " + COLUMN_SIZE + ") " + in onCreateTable() 152 values.put(CacheDb.COLUMN_SIZE, key.size); in writeToDb() 263 + CacheDb.COLUMN_SIZE + " = ?", in readFromDb()
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/ |
D | TestModel.java | 41 Document.COLUMN_SIZE, 125 row.add(Document.COLUMN_SIZE, doc.size); in addToCursor()
|
D | TestDocumentsProvider.java | 47 Document.COLUMN_SIZE, 129 .add(Document.COLUMN_SIZE, doc.size) in createDocumentsCursor()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/ |
D | ModelTest.java | 54 Document.COLUMN_SIZE, 91 row.add(Document.COLUMN_SIZE, rand.nextInt()); in setUp()
|
/packages/apps/Traceur/src/com/google/android/traceur/ |
D | StorageProvider.java | 64 Document.COLUMN_SIZE, 119 row.add(Document.COLUMN_SIZE, file.length()); in queryDocument()
|
/packages/apps/Email/provider_src/com/android/email/ |
D | AttachmentInfo.java | 53 public static final int COLUMN_SIZE = 1; field in AttachmentInfo 97 this(context, c.getLong(COLUMN_ID), c.getLong(COLUMN_SIZE), c.getString(COLUMN_FILENAME), in AttachmentInfo()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/archives/ |
D | Archive.java | 62 Document.COLUMN_SIZE, 285 row.add(Document.COLUMN_SIZE, entry.getSize()); in addCursorRow()
|
D | ArchivesProvider.java | 196 row.add(Document.COLUMN_SIZE, 0); in queryDocument()
|
/packages/apps/DocumentsUI/perf-tests/src/com/android/documentsui/ |
D | StressProvider.java | 76 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 190 row.add(Document.COLUMN_SIZE, document.size); in includeDocument()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/ |
D | SortModel.java | 258 new String[]{ Document.COLUMN_SIZE }); in addQuerySortArgs() 309 columnName = Document.COLUMN_SIZE; in getDocumentSortQuery()
|
D | SortingCursorWrapper.java | 85 longValues[i] = getCursorLong(mCursor, Document.COLUMN_SIZE); in SortingCursorWrapper()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/services/ |
D | CopyJob.java | 451 Document.COLUMN_SIZE, in copyDirectoryHelper() 697 Document.COLUMN_SIZE in calculateFileSizesRecursively() 713 long size = getCursorLong(cursor, Document.COLUMN_SIZE); in calculateFileSizesRecursively()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/ |
D | GridPhotoHolder.java | 142 Formatter.formatFileSize(mContext, getCursorLong(cursor, Document.COLUMN_SIZE)); in bind()
|
D | GridDocumentHolder.java | 178 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE); in bind()
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaDocumentsProvider.java | 104 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 1069 row.add(Document.COLUMN_SIZE, cursor.getLong(ImageQuery.SIZE)); in includeImage() 1129 row.add(Document.COLUMN_SIZE, cursor.getLong(VideoQuery.SIZE)); in includeVideo() 1201 row.add(Document.COLUMN_SIZE, cursor.getLong(SongQuery.SIZE)); in includeAudio()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
D | DocumentInfo.java | 171 this.size = getCursorLong(cursor, Document.COLUMN_SIZE); in updateFromCursor()
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadStorageProvider.java | 94 Document.COLUMN_SIZE, 717 row.add(Document.COLUMN_SIZE, size == -1 ? null : size); in includeDownload()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/picker/ |
D | MenuManagerTest.java | 502 Document.COLUMN_SIZE, in getTestModel()
|