Home
last modified time | relevance | path

Searched refs:COLUMN_FLAGS (Results 1 – 25 of 32) sorted by relevance

12

/packages/apps/DocumentsUI/tests/common/com/android/documentsui/
DTestRootProvider.java39 Root.COLUMN_FLAGS,
50 Document.COLUMN_FLAGS,
73 row.add(Root.COLUMN_FLAGS, mFlags); in queryRoots()
89 row.add(Document.COLUMN_FLAGS, flags); in addFile()
103 row.add(Document.COLUMN_FLAGS, flags); in addFolder()
DStubProvider.java84 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_TITLE, Root.COLUMN_DOCUMENT_ID,
89 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
165 row.add(Root.COLUMN_FLAGS, info.flags); in queryRoots()
686 row.add(Document.COLUMN_FLAGS, document.flags); in includeDocument()
DInspectorProvider.java140 row.add(Document.COLUMN_FLAGS, 0); in addFileWithSize()
/packages/apps/DocumentsUI/src/com/android/documentsui/base/
DDocumentFilters.java52 int flags = getCursorInt(c, Document.COLUMN_FLAGS); in isSharableInO()
63 int flags = getCursorInt(c, Document.COLUMN_FLAGS); in isSharablePreO()
75 int flags = getCursorInt(c, Document.COLUMN_FLAGS); in isVirtual()
83 int flags = getCursorInt(c, Document.COLUMN_FLAGS); in isNotMovable()
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/archives/
DResourcesProvider.java45 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_TITLE, Root.COLUMN_DOCUMENT_ID
49 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
83 row.add(Root.COLUMN_FLAGS, 0); in queryRoots()
97 row.add(Document.COLUMN_FLAGS, 0); in queryDocument()
145 row.add(Document.COLUMN_FLAGS, 0); in includeDocument()
/packages/services/Mtp/src/com/android/mtp/
DMtpDatabaseConstants.java136 Document.COLUMN_FLAGS + " INTEGER NOT NULL," +
142 Root.COLUMN_FLAGS + " INTEGER NOT NULL," +
158 COLUMN_MAP_ROOTS.put(Root.COLUMN_FLAGS, TABLE_ROOT_EXTRA + "." + Root.COLUMN_FLAGS); in COLUMN_MAP_ROOTS.put() argument
DMtpDatabase.java766 values.put(Document.COLUMN_FLAGS, getDocumentFlags( in getDeviceDocumentValues()
777 extraValues.put(Root.COLUMN_FLAGS, getRootFlags(device.operationsSupported)); in getDeviceDocumentValues()
809 values.put(Document.COLUMN_FLAGS, getDocumentFlags( in getStorageDocumentValues()
817 extraValues.put(Root.COLUMN_FLAGS, getRootFlags(operationsSupported)); in getStorageDocumentValues()
849 values.put(Document.COLUMN_FLAGS, getDocumentFlags( in getObjectDocumentValues()
DMtpDocumentsProvider.java73 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON,
80 Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
216 MtpDatabase.strings(Document.COLUMN_DISPLAY_NAME, Document.COLUMN_FLAGS))) { in queryDocument() argument
233 values.put(Document.COLUMN_FLAGS, storageFlags); in queryDocument()
/packages/apps/Traceur/src/com/android/traceur/
DStorageProvider.java55 Root.COLUMN_FLAGS,
63 Document.COLUMN_FLAGS,
90 row.add(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY); in queryRoots()
120 …row.add(Document.COLUMN_FLAGS, Document.FLAG_DIR_PREFERS_LAST_MODIFIED | Document.FLAG_SUPPORTS_DE… in queryDocument()
/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaDocumentsProvider.java97 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON,
104 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
1085 row.add(Root.COLUMN_FLAGS, flags); in includeImagesRoot()
1101 row.add(Root.COLUMN_FLAGS, flags); in includeVideosRoot()
1117 row.add(Root.COLUMN_FLAGS, flags); in includeAudioRoot()
1133 row.add(Root.COLUMN_FLAGS, flags); in includeDocumentsRoot()
1144 row.add(Document.COLUMN_FLAGS, in includeImagesRootDocument()
1153 row.add(Document.COLUMN_FLAGS, in includeVideosRootDocument()
1169 row.add(Document.COLUMN_FLAGS, in includeDocumentsRootDocument()
1201 row.add(Document.COLUMN_FLAGS, Document.FLAG_DIR_PREFERS_GRID in includeImagesBucket()
[all …]
/packages/services/Mtp/tests/src/com/android/mtp/
DMtpDatabaseTest.java51 DocumentsContract.Document.COLUMN_FLAGS,
106 assertEquals(Document.FLAG_DIR_SUPPORTS_CREATE, getInt(cursor, COLUMN_FLAGS)); in testPutSingleStorageDocuments()
118 Root.COLUMN_FLAGS, in testPutSingleStorageDocuments()
132 getInt(cursor, Root.COLUMN_FLAGS)); in testPutSingleStorageDocuments()
168 assertEquals(Document.FLAG_DIR_SUPPORTS_CREATE, getInt(cursor, COLUMN_FLAGS)); in testPutStorageDocuments()
219 COLUMN_FLAGS, in testPutChildDocuments()
238 COLUMN_FLAGS, in testPutChildDocuments()
258 COLUMN_FLAGS, in testPutChildDocuments()
281 mDatabase.queryChildDocuments(strings(Document.COLUMN_FLAGS), "2")) { in testPutChildDocuments_operationsSupported()
298 mDatabase.queryChildDocuments(strings(Document.COLUMN_FLAGS), "2")) { in testPutChildDocuments_operationsSupported()
[all …]
/packages/apps/DocumentsUI/perf-tests/src/com/android/documentsui/
DStressProvider.java71 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_TITLE, Root.COLUMN_DOCUMENT_ID,
76 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
181 row.add(Root.COLUMN_FLAGS, 0); in includeRoot()
192 row.add(Document.COLUMN_FLAGS, in includeDocument()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
DTestDocumentsProvider.java45 Document.COLUMN_FLAGS,
127 .add(Document.COLUMN_FLAGS, doc.flags) in createDocumentsCursor()
DTestModel.java40 Document.COLUMN_FLAGS,
134 row.add(Document.COLUMN_FLAGS, doc.flags); in addToCursor()
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DModelTest.java52 Document.COLUMN_FLAGS,
87 row.add(Document.COLUMN_FLAGS, Document.FLAG_SUPPORTS_DELETE); in setUp()
DRecentsLoaderTests.java138 final int flags = c.getInt(c.getColumnIndex(Document.COLUMN_FLAGS)); in testDocumentsNotMovable()
/packages/apps/DocumentsUI/src/com/android/documentsui/archives/
DArchive.java63 Document.COLUMN_FLAGS
294 row.add(Document.COLUMN_FLAGS, flags); in addCursorRow()
DArchivesProvider.java60 Root.COLUMN_ROOT_ID, Root.COLUMN_DOCUMENT_ID, Root.COLUMN_TITLE, Root.COLUMN_FLAGS,
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadStorageProvider.java87 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON,
93 Document.COLUMN_SUMMARY, Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS,
170 row.add(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_RECENTS in queryRoots()
607 row.add(Document.COLUMN_FLAGS, in includeDefaultDocument()
723 row.add(Document.COLUMN_FLAGS, flags); in includeDownload()
DDownloadProvider.java215 addMapping(map, Downloads.Impl.COLUMN_FLAGS); in addMapping() argument
374 addColumn(db, DB_TABLE, Downloads.Impl.COLUMN_FLAGS, in upgradeTo()
844 copyInteger(Downloads.Impl.COLUMN_FLAGS, values, filteredValues); in insert()
1228 values.remove(Downloads.Impl.COLUMN_FLAGS); in checkInsertPermissions()
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DDocsSelectionPredicate.java71 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS); in canSetStateForKey()
DSelectionMetadata.java84 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS); in onItemStateChanged()
DModelBackedDocumentsAdapter.java133 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS); in onBindViewHolder()
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
DSortingCursorWrapperTest.java61 Document.COLUMN_FLAGS,
122 row.add(Document.COLUMN_FLAGS, Document.FLAG_SUPPORTS_DELETE); in setUp()
/packages/apps/DocumentsUI/src/com/android/documentsui/
DMultiRootDocumentsLoader.java355 final int flagIndex = getWrappedCursor().getColumnIndex(Document.COLUMN_FLAGS); in getInt()

12