HomeSort by relevance Sort by last modified time
    Searched refs:COLUMN_FLAGS (Results 1 - 25 of 50) sorted by null

1 2

  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
DocumentFilters.java 52 int flags = getCursorInt(c, Document.COLUMN_FLAGS);
63 int flags = getCursorInt(c, Document.COLUMN_FLAGS);
75 int flags = getCursorInt(c, Document.COLUMN_FLAGS);
83 int flags = getCursorInt(c, Document.COLUMN_FLAGS);
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportStorageProvider.java 40 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, Root.COLUMN_TITLE,
46 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
63 row.add(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY | Root.FLAG_ADVANCED);
135 row.add(Document.COLUMN_FLAGS, Document.FLAG_SUPPORTS_DELETE);
145 row.add(Document.COLUMN_FLAGS, Document.FLAG_DIR_PREFERS_LAST_MODIFIED);
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
TestRootProvider.java 39 Root.COLUMN_FLAGS,
50 Document.COLUMN_FLAGS,
73 row.add(Root.COLUMN_FLAGS, mFlags);
89 row.add(Document.COLUMN_FLAGS, flags);
103 row.add(Document.COLUMN_FLAGS, flags);
InspectorProvider.java 107 row.add(Document.COLUMN_FLAGS, 0);
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDatabaseConstants.java 136 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);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/
ResourcesProvider.java 49 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_TITLE, Root.COLUMN_DOCUMENT_ID
53 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
80 row.add(Root.COLUMN_FLAGS, 0);
94 row.add(Document.COLUMN_FLAGS, 0);
142 row.add(Document.COLUMN_FLAGS, 0);
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestDocumentsProvider.java 44 Document.COLUMN_FLAGS,
117 .add(Document.COLUMN_FLAGS, doc.flags)
TestModel.java 39 Document.COLUMN_FLAGS,
123 row.add(Document.COLUMN_FLAGS, doc.flags);
  /packages/apps/DocumentsUI/perf-tests/src/com/android/documentsui/
StressProvider.java 71 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);
192 row.add(Document.COLUMN_FLAGS,
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
TestDocumentsProvider.java 83 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON,
90 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
135 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_RECENTS | Root.FLAG_SUPPORTS_CREATE);
398 row.add(Document.COLUMN_FLAGS, flags);
402 row.add(Document.COLUMN_FLAGS, Document.FLAG_DIR_SUPPORTS_CREATE);
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 58 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, Root.COLUMN_TITLE,
64 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
89 row.add(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY);
96 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE | Root.FLAG_SUPPORTS_IS_CHILD);
103 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_EJECT);
219 row.add(Document.COLUMN_FLAGS, flags);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaDocumentsProvider.java 69 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON,
75 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
556 row.add(Root.COLUMN_FLAGS, flags);
571 row.add(Root.COLUMN_FLAGS, flags);
586 row.add(Root.COLUMN_FLAGS, flags);
596 row.add(Document.COLUMN_FLAGS,
605 row.add(Document.COLUMN_FLAGS,
641 row.add(Document.COLUMN_FLAGS, Document.FLAG_DIR_PREFERS_GRID
671 row.add(Document.COLUMN_FLAGS,
699 row.add(Document.COLUMN_FLAGS, Document.FLAG_DIR_PREFERS_GRI
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
SelectionMetadata.java 81 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
RecentsLoaderTests.java 77 final int flags = c.getInt(c.getColumnIndex(Document.COLUMN_FLAGS));
ModelTest.java 51 Document.COLUMN_FLAGS,
86 row.add(Document.COLUMN_FLAGS, Document.FLAG_SUPPORTS_DELETE);
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
MtpDatabaseTest.java 51 DocumentsContract.Document.COLUMN_FLAGS,
106 assertEquals(Document.FLAG_DIR_SUPPORTS_CREATE, getInt(cursor, COLUMN_FLAGS));
118 Root.COLUMN_FLAGS,
132 getInt(cursor, Root.COLUMN_FLAGS));
168 assertEquals(Document.FLAG_DIR_SUPPORTS_CREATE, getInt(cursor, COLUMN_FLAGS));
219 COLUMN_FLAGS,
238 COLUMN_FLAGS,
257 COLUMN_FLAGS,
280 mDatabase.queryChildDocuments(strings(Document.COLUMN_FLAGS), "2")) {
297 mDatabase.queryChildDocuments(strings(Document.COLUMN_FLAGS), "2"))
    [all...]
  /frameworks/support/core-utils/kitkat/android/support/v4/provider/
DocumentsContractApi19.java 67 return queryForLong(context, self, DocumentsContract.Document.COLUMN_FLAGS, 0);
114 final int flags = queryForInt(context, self, DocumentsContract.Document.COLUMN_FLAGS, 0);
  /packages/apps/Email/provider_src/com/android/email/
AttachmentInfo.java 57 public static final int COLUMN_FLAGS = 5;
99 c.getInt(COLUMN_FLAGS));
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java 71 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON,
77 Document.COLUMN_SUMMARY, Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS,
124 row.add(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_RECENTS
428 row.add(Document.COLUMN_FLAGS,
509 row.add(Document.COLUMN_FLAGS, flags);
  /developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 61 Root.COLUMN_FLAGS,
76 Document.COLUMN_FLAGS,
131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE |
514 row.add(Document.COLUMN_FLAGS, flags);
  /developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 61 Root.COLUMN_FLAGS,
76 Document.COLUMN_FLAGS,
131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE |
514 row.add(Document.COLUMN_FLAGS, flags);
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 97 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, Root.COLUMN_TITLE,
103 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
208 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE | Root.FLAG_LOCAL_ONLY
255 row.add(Document.COLUMN_FLAGS, flags);
  /development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudProvider.java 61 Root.COLUMN_FLAGS,
76 Document.COLUMN_FLAGS,
131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE |
514 row.add(Document.COLUMN_FLAGS, flags);
  /frameworks/base/core/java/android/provider/
Downloads.java 420 public static final String COLUMN_FLAGS = "flags";
  /packages/apps/DocumentsUI/src/com/android/documentsui/archives/
Archive.java 64 Document.COLUMN_FLAGS
285 row.add(Document.COLUMN_FLAGS, flags);

Completed in 781 milliseconds

1 2