HomeSort by relevance Sort by last modified time
    Searched refs:FLAG_SUPPORTS_SETTINGS (Results 1 - 12 of 12) sorted by null

  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/actions/
ShowInProviderAction.java 18 import static android.provider.DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS;
59 if ((mDoc.flags & FLAG_SUPPORTS_SETTINGS) != 0) {
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
InspectorProvider.java 18 import static android.provider.DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS;
55 addFile(c, OPEN_IN_PROVIDER_TEST, FLAG_SUPPORTS_SETTINGS);
94 addFile(c, OPEN_IN_PROVIDER_TEST, FLAG_SUPPORTS_SETTINGS);
BrokenSettingsEnabledProvider.java 27 * Provides data view that has files with FLAG_SUPPORTS_SETTINGS but nothing set to receive
58 addFile(c, "fred-dog.jpg", DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS);
DemoProvider.java 71 addFile(c, "" + i, DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS);
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
SelectionMetadata.java 97 mSupportsSettings = (docFlags & Document.FLAG_SUPPORTS_SETTINGS) != 0 &&
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/inspector/
InspectorControllerTest.java 18 import static android.provider.DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS;
186 * Test that when a document has the FLAG_SUPPORTS_SETTINGS set the showInProvider view will
197 doc.flags = doc.flags | Document.FLAG_SUPPORTS_SETTINGS;
203 * Test that when a document does not have the FLAG_SUPPORTS_SETTINGS set the view will be
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
InspectorController.java 18 import static android.provider.DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS;
187 * @param DocumentInfo whose flag FLAG_SUPPORTS_SETTINGS is set.
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
DocumentInfo.java 288 return (flags & Document.FLAG_SUPPORTS_SETTINGS) != 0;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MailboxUtilities.java 61 parentFlags |= Mailbox.FLAG_HOLDS_MAIL + Mailbox.FLAG_SUPPORTS_SETTINGS;
Mailbox.java 402 public static final int FLAG_SUPPORTS_SETTINGS = 1<<6;
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
DBHelper.java     [all...]
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 158 * {@link Document#FLAG_SUPPORTS_SETTINGS} in the flags for each document that supports
161 * @see DocumentsContact#Document#FLAG_SUPPORTS_SETTINGS
434 public static final int FLAG_SUPPORTS_SETTINGS = 1 << 11;
    [all...]

Completed in 1241 milliseconds