Home
last modified time | relevance | path

Searched refs:CONTENT_TYPE (Results 1 – 25 of 111) sorted by relevance

12345

/aosp12/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactsIntentResolver.java79 if (Phone.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
81 } else if (Email.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
86 if (Contacts.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
88 } else if (People.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
91 } else if (Phone.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
93 } else if (Phones.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
96 } else if (StructuredPostal.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
101 } else if (Email.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
103 } else if (Groups.CONTENT_TYPE.equals(resolvedType)) { in resolveIntent()
142 Groups.CONTENT_TYPE.equals(intent.getType())) { in resolveIntent()
[all …]
/aosp12/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DConversationImagePartsView.java49 + DatabaseHelper.PARTS_TABLE + '.' + PartColumns.CONTENT_TYPE
50 + " as " + Columns.CONTENT_TYPE + ", "
69 + " WHERE " + DatabaseHelper.PARTS_TABLE + "." + PartColumns.CONTENT_TYPE
82 static final String CONTENT_TYPE = PhotoViewColumns.CONTENT_TYPE; field in ConversationImagePartsView.Columns
95 PhotoViewColumns.CONTENT_TYPE,
H A DDatabaseHelper.java330 public static final String CONTENT_TYPE = "content_type"; field in DatabaseHelper.PartColumns
351 + PartColumns.CONTENT_TYPE + " TEXT,"
519 + PARTS_TABLE + '.' + PartColumns.CONTENT_TYPE
520 + " as " + PartColumns.CONTENT_TYPE + ", "
/aosp12/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/
H A DPhotoContract.java50 public static final String CONTENT_TYPE = "contentType"; field
65 PhotoViewColumns.CONTENT_TYPE
78 public static final String CONTENT_TYPE = "contentType"; field in PhotoContract.ContentTypeParameters
/aosp12/packages/apps/Car/Messenger/src/com/android/car/messenger/impl/datamodels/util/
H A DCursorUtils.java19 import static android.provider.Telephony.BaseMmsColumns.CONTENT_TYPE;
57 _ID, TYPE, DATE, READ, CONTENT_TYPE, BODY, ADDRESS, THREAD_ID, SUBSCRIPTION_ID, MESSAGE_BOX
65 CONTENT_TYPE + " = '" + MMS_CONTENT_TYPE + "' AND " + DATE + " > ";
66 private static final String SMS_QUERY = CONTENT_TYPE + " IS NULL AND " + DATE + " > ";
H A DMmsUtils.java20 import static android.provider.Telephony.BaseMmsColumns.CONTENT_TYPE;
52 String contentType = cursor.getString(cursor.getColumnIndex(CONTENT_TYPE)); in isMms()
/aosp12/frameworks/base/core/java/android/provider/
H A DBrowserContract.java336 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/bookmark"; field in BrowserContract.Bookmarks
460 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/browser-history"; field in BrowserContract.History
483 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/searches"; field in BrowserContract.Searches
590 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/images"; field in BrowserContract.Images
663 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/image_mappings"; field in BrowserContract.ImageMappings
H A DContactsContract.java466 public static final String CONTENT_TYPE = field in ContactsContract.Directory
1791 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contact"; field in ContactsContract.Contacts
2860 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/raw_contact"; field in ContactsContract.RawContacts
3557 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/stream_item"; field in ContactsContract.StreamItems
4965 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/data"; field in ContactsContract.Data
5426 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/phone_lookup"; field in ContactsContract.PhoneLookup
6141 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/phone_v2"; field in ContactsContract.CommonDataKinds.Phone
6369 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/email_v2"; field in ContactsContract.CommonDataKinds.Email
8067 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/group"; field in ContactsContract.Groups
8672 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/setting"; field in ContactsContract.Settings
[all …]
H A DSimPhonebookContract.java214 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/sim-contact_v2"; field in SimPhonebookContract.SimRecords
470 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/sim-elementary-file"; field in SimPhonebookContract.ElementaryFiles
H A DContacts.java399 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/person"; field in Contacts.People
816 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contactsgroup"; field in Contacts.Groups
1005 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/phone"; field in Contacts.Phones
1070 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contactsgroupmembership"; field in Contacts.GroupMembership
1482 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contact-methods"; field in Contacts.ContactMethods
1936 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contact_extensions"; field in Contacts.Extensions
/aosp12/packages/apps/UniversalMediaPlayer/java/com/android/pump/activity/
H A DAudioPlayerActivity.java67 intent.setDataAndTypeAndNormalize(uri, MediaStore.Audio.Albums.CONTENT_TYPE); in start()
78 intent.setDataAndTypeAndNormalize(uri, MediaStore.Audio.Artists.CONTENT_TYPE); in start()
89 intent.setDataAndTypeAndNormalize(uri, MediaStore.Audio.Genres.CONTENT_TYPE); in start()
100 intent.setDataAndTypeAndNormalize(uri, MediaStore.Audio.Playlists.CONTENT_TYPE); in start()
/aosp12/packages/apps/TV/partner_support/src/com/google/android/tv/partner/support/
H A DEpgContract.java92 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/lineup"; field in EpgContract.Lineups
144 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/epg_input"; field in EpgContract.EpgInputs
/aosp12/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DRetrieveConf.java81 return mPduHeaders.getTextString(PduHeaders.CONTENT_TYPE); in getContentType()
91 mPduHeaders.setTextString(value, PduHeaders.CONTENT_TYPE); in setContentType()
H A DSendReq.java153 return mPduHeaders.getTextString(PduHeaders.CONTENT_TYPE); in getContentType()
163 mPduHeaders.setTextString(value, PduHeaders.CONTENT_TYPE); in setContentType()
/aosp12/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DRetrieveConf.java83 return mPduHeaders.getTextString(PduHeaders.CONTENT_TYPE); in getContentType()
93 mPduHeaders.setTextString(value, PduHeaders.CONTENT_TYPE); in setContentType()
H A DSendReq.java156 return mPduHeaders.getTextString(PduHeaders.CONTENT_TYPE); in getContentType()
166 mPduHeaders.setTextString(value, PduHeaders.CONTENT_TYPE); in setContentType()
/aosp12/frameworks/base/telephony/common/com/google/android/mms/pdu/
H A DRetrieveConf.java90 return mPduHeaders.getTextString(PduHeaders.CONTENT_TYPE); in getContentType()
101 mPduHeaders.setTextString(value, PduHeaders.CONTENT_TYPE); in setContentType()
H A DSendReq.java166 return mPduHeaders.getTextString(PduHeaders.CONTENT_TYPE); in getContentType()
177 mPduHeaders.setTextString(value, PduHeaders.CONTENT_TYPE); in setContentType()
/aosp12/packages/apps/TV/common/src/com/android/tv/common/
H A DCommonPreferenceProvider.java71 String CONTENT_TYPE = "vnd.android.cursor.dir/preferences"; field
162 return Preferences.CONTENT_TYPE; in getType()
/aosp12/frameworks/libs/service_entitlement/tests/utils/com/android/libraries/entitlement/testing/
H A DFakeURLStreamHandler.java50 private static final String CONTENT_TYPE = "Content-Type"; field in FakeURLStreamHandler
121 case CONTENT_TYPE: in getHeaderField()
/aosp12/frameworks/base/media/java/android/media/tv/
H A DTvContract.java1676 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/channel"; field in TvContract.Channels
2579 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/program"; field in TvContract.Programs
2929 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/recorded_program"; field in TvContract.RecordedPrograms
3055 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/preview_program"; field in TvContract.PreviewPrograms
3107 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/watch_next_program"; field in TvContract.WatchNextPrograms
3215 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/watched_program"; field in TvContract.WatchedPrograms
/aosp12/packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
H A DPartnerBookmarksContract.java90 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/partnerbookmark"; field in PartnerBookmarksContract.Bookmarks
/aosp12/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoPagerLoader.java46 PhotoContract.ContentTypeParameters.CONTENT_TYPE, "image/").build(); in loadInBackground()
/aosp12/packages/providers/BookmarkProvider/src/com/android/bookmarkstore/
H A DBookmarkProvider.java40 return BrowserContract.Bookmarks.CONTENT_TYPE; in getType()
/aosp12/frameworks/av/services/mediametrics/
H A DAudioTypes.h47 CONTENT_TYPE, enumerator

12345