Searched refs:getCursorInt (Results 1 – 8 of 8) sorted by relevance
/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
D | DocumentFilters.java | 18 import static com.android.documentsui.base.DocumentInfo.getCursorInt; 52 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()
|
D | DocumentInfo.java | 169 this.flags = getCursorInt(cursor, Document.COLUMN_FLAGS); in updateFromCursor() 172 this.icon = getCursorInt(cursor, Document.COLUMN_ICON); in updateFromCursor() 360 public static int getCursorInt(Cursor cursor, String columnName) { in getCursorInt() method in DocumentInfo
|
D | RootInfo.java | 21 import static com.android.documentsui.base.DocumentInfo.getCursorInt; 196 root.flags = getCursorInt(cursor, Root.COLUMN_FLAGS); in fromRootsCursor() 197 root.icon = getCursorInt(cursor, Root.COLUMN_ICON); in fromRootsCursor()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/ |
D | SortingCursorWrapperTest.java | 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() 270 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE); in testSort_sizesWithBucketing_ascending() 321 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE); in testSort_sizesWithBucketing_descending() 423 seen.set(DocumentInfo.getCursorInt(cursor, Document.COLUMN_DOCUMENT_ID)); in testSort_type_ascending() 455 seen.set(DocumentInfo.getCursorInt(cursor, Document.COLUMN_DOCUMENT_ID)); in testSort_type_descending()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/ |
D | DocsSelectionPredicate.java | 20 import static com.android.documentsui.base.DocumentInfo.getCursorInt; 71 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS); in canSetStateForKey()
|
D | SelectionMetadata.java | 19 import static com.android.documentsui.base.DocumentInfo.getCursorInt; 84 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS); in onItemStateChanged()
|
D | ModelBackedDocumentsAdapter.java | 19 import static com.android.documentsui.base.DocumentInfo.getCursorInt; 133 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS); in onBindViewHolder()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/ |
D | AbstractActionHandler.java | 19 import static com.android.documentsui.base.DocumentInfo.getCursorInt; 291 int docFlags = getCursorInt(cursor, DocumentsContract.Document.COLUMN_FLAGS); in selectAllFiles()
|