/frameworks/support/documents-archive/tests/src/android/support/provider/ |
D | DocumentArchiveTest.java | 100 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument() 110 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument() 120 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument() 138 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument() 153 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_NoDirs() 169 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_NoDirs() 194 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_EmptyDirs() 210 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_EmptyDirs() 223 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryChildDocument_EmptyDirs() 261 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); in testQueryDocument()
|
D | StubProvider.java | 47 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_DISPLAY_NAME, Document.COLUMN_SIZE, 125 row.add(Document.COLUMN_SIZE, file.length()); in queryDocument()
|
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/ |
D | TestModel.java | 34 Document.COLUMN_SIZE, 57 row.add(Document.COLUMN_SIZE, rand.nextInt()); in update()
|
D | ModelTest.java | 55 Document.COLUMN_SIZE, 92 row.add(Document.COLUMN_SIZE, rand.nextInt()); in setUp() 216 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE); in testSort_sizes() 232 row.add(Document.COLUMN_SIZE, i); in testSort_sizesWithBucketing() 265 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE); in testSort_sizesWithBucketing()
|
D | SectionBreakDocumentsAdapterWrapperTest.java | 74 row.add(Document.COLUMN_SIZE, i); in testItemCount_allDirs() 99 row.add(Document.COLUMN_SIZE, i); in testItemCount_mixed()
|
/frameworks/base/packages/Shell/src/com/android/shell/ |
D | BugreportStorageProvider.java | 47 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 194 row.add(Document.COLUMN_SIZE, file.length()); in addFileRow()
|
/frameworks/base/packages/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()
|
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/ |
D | MtpDatabase.java | 764 values.putNull(Document.COLUMN_SIZE); in getDeviceDocumentValues() 805 values.put(Document.COLUMN_SIZE, root.mMaxCapacity - root.mFreeSpace); in getStorageDocumentValues() 843 values.put(Document.COLUMN_SIZE, size); in getObjectDocumentValues() 845 values.putNull(Document.COLUMN_SIZE); in getObjectDocumentValues()
|
D | MtpDatabaseConstants.java | 137 Document.COLUMN_SIZE + " INTEGER);";
|
D | MtpDocumentsProvider.java | 73 Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 556 MtpDatabase.strings(Document.COLUMN_SIZE, Document.COLUMN_DISPLAY_NAME)); in getFileSize()
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/ |
D | CopyJob.java | 394 Document.COLUMN_SIZE, in copyDirectoryHelper() 579 Document.COLUMN_SIZE in calculateFileSizesRecursively() 595 long size = getCursorLong(cursor, Document.COLUMN_SIZE); in calculateFileSizesRecursively()
|
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/ |
D | MtpDatabaseTest.java | 52 DocumentsContract.Document.COLUMN_SIZE, 107 assertEquals(1000, getInt(cursor, COLUMN_SIZE)); in testPutSingleStorageDocuments() 169 assertEquals(1000, getInt(cursor, COLUMN_SIZE)); in testPutStorageDocuments() 223 assertEquals(1024, getInt(cursor, COLUMN_SIZE)); in testPutChildDocuments() 242 assertEquals(2 * 1024 * 1024, getInt(cursor, COLUMN_SIZE)); in testPutChildDocuments() 261 assertEquals(3 * 1024 * 1024, getInt(cursor, COLUMN_SIZE)); in testPutChildDocuments()
|
D | MtpDocumentsProviderTest.java | 755 DocumentsContract.Document.COLUMN_SIZE in testObjectSizeLong()
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/ |
D | GridDocumentHolder.java | 128 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE); in bind()
|
D | ListDocumentHolder.java | 125 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE); in bind()
|
D | Model.java | 182 longValues[pos] = getCursorLong(mCursor, Document.COLUMN_SIZE); in updateModelData()
|
/frameworks/support/v4/kitkat/android/support/v4/provider/ |
D | DocumentsContractApi19.java | 71 return queryForLong(context, self, DocumentsContract.Document.COLUMN_SIZE, 0); in length()
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
D | DirectoryLoader.java | 222 return Document.COLUMN_SIZE + " DESC"; in getQuerySortOrder()
|
/frameworks/support/documents-archive/src/android/support/provider/ |
D | DocumentArchive.java | 77 Document.COLUMN_SIZE, 509 row.add(Document.COLUMN_SIZE, entry.getSize()); in addCursorRow()
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/ |
D | DocumentInfo.java | 162 this.size = getCursorLong(cursor, Document.COLUMN_SIZE); in updateFromCursor()
|
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
D | ExternalStorageProvider.java | 84 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 385 row.add(Document.COLUMN_SIZE, file.length()); in includeFile()
|
D | TestDocumentsProvider.java | 90 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
|
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/ |
D | StubProvider.java | 84 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 612 row.add(Document.COLUMN_SIZE, document.file.length()); in includeDocument()
|
/frameworks/base/core/java/android/provider/ |
D | DocumentsContract.java | 251 public static final String COLUMN_SIZE = OpenableColumns.SIZE; field in DocumentsContract.Document
|
/frameworks/base/docs/html-intl/intl/zh-cn/guide/topics/providers/ |
D | document-provider.jd | 694 Document.COLUMN_FLAGS, Document.COLUMN_SIZE,};
|