Searched refs:MIMETYPE (Results 1 - 25 of 55) sorted by relevance

123

/packages/apps/Contacts/tests/src/com/android/contacts/detail/
H A DContactDetailFragmentTests.java43 values.put(Im.MIMETYPE, Im.CONTENT_ITEM_TYPE);
60 values.put(Im.MIMETYPE, Im.CONTENT_ITEM_TYPE);
79 values.put(Im.MIMETYPE, Im.CONTENT_ITEM_TYPE);
100 values.put(Im.MIMETYPE, Im.CONTENT_ITEM_TYPE);
125 values.put(Email.MIMETYPE, Email.CONTENT_ITEM_TYPE);
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
H A DDataItem.java56 final String mimeType = values.getAsString(Data.MIMETYPE);
112 return mContentValues.getAsString(Data.MIMETYPE);
116 mContentValues.put(Data.MIMETYPE, mimeType);
H A DStructuredNameDataItem.java32 getContentValues().put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
/packages/apps/Contacts/tests/src/com/android/contacts/
H A DRawContactModifierTests.java449 before.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
472 before.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
588 first.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
594 second.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
660 first.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
713 first.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
732 first.put(Data.MIMETYPE, Im.CONTENT_ITEM_TYPE);
784 mockNameValues.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
835 mockNameValues.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
877 mockNameValues.put(Data.MIMETYPE, StructuredNam
[all...]
H A DRawContactDeltaTests.java76 phone.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
108 phone.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
182 phone.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
222 phone.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
347 phone.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothShare.java124 public static final String MIMETYPE = "mimetype"; field in class:BluetoothShare
H A DBluetoothOppManager.java89 private static final String MIME_TYPE = "MIMETYPE";
438 values.put(BluetoothShare.MIMETYPE, contentType);
458 values.put(BluetoothShare.MIMETYPE, mTypeOfSingleFile);
H A DBluetoothOppProvider.java178 + BluetoothShare.MIMETYPE + " TEXT, " + BluetoothShare.DIRECTION + " INTEGER, "
244 copyString(BluetoothShare.MIMETYPE, values, filteredValues);
/packages/apps/Contacts/src/com/android/contacts/group/
H A DSuggestedMemberListAdapter.java66 Data.MIMETYPE, // 2
262 "(" + Data.MIMETYPE + "=? OR " + Data.MIMETYPE + "=? OR " + Data.MIMETYPE +
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
H A DDataUtil.java46 values.put(ContactsContract.Data.MIMETYPE, ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandler.java46 MimetypesColumns.MIMETYPE,
54 MimetypesColumns.MIMETYPE,
61 public static final int MIMETYPE = 1; field in interface:DataRowHandler.DataDeleteQuery
68 String[] COLUMNS = { Data._ID, Data.RAW_CONTACT_ID, Data.MIMETYPE };
72 int MIMETYPE = 2; field in interface:DataRowHandler.DataUpdateQuery
H A DSearchIndexManager.java60 MimetypesColumns.MIMETYPE,
66 public static final int MIMETYPE = 1; field in class:SearchIndexManager.ContactIndexQuery
374 String mimetype = cursor.getString(ContactIndexQuery.MIMETYPE);
H A DLegacyApiSupport.java180 "(CASE WHEN " + Data.MIMETYPE + "='" + Im.CONTENT_ITEM_TYPE + "'"
913 mValues.put(Data.MIMETYPE, android.provider.Contacts.Extensions.CONTENT_ITEM_TYPE);
936 mValues.put(Data.MIMETYPE, GroupMembership.CONTENT_ITEM_TYPE);
1188 mValues.put(Data.MIMETYPE, Photo.CONTENT_ITEM_TYPE);
1240 Data.MIMETYPE + "='" + LegacyPhotoData.CONTENT_ITEM_TYPE + "'"
1245 mValues.put(Data.MIMETYPE, LegacyPhotoData.CONTENT_ITEM_TYPE);
1374 mValues2.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
1388 mValues3.put(Data.MIMETYPE, Note.CONTENT_ITEM_TYPE);
1396 mValues.put(Data.MIMETYPE, Organization.CONTENT_ITEM_TYPE);
1417 mValues.put(Data.MIMETYPE, Phon
[all...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DBaseContactsProvider2Test.java227 values.put(Data.MIMETYPE, Organization.CONTENT_ITEM_TYPE);
249 values.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
282 values.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
304 values.put(Data.MIMETYPE, SipAddress.CONTENT_ITEM_TYPE);
317 values.put(Data.MIMETYPE, Nickname.CONTENT_ITEM_TYPE);
328 values.put(Data.MIMETYPE, StructuredPostal.CONTENT_ITEM_TYPE);
337 values.put(Data.MIMETYPE, StructuredPostal.CONTENT_ITEM_TYPE);
345 values.put(Data.MIMETYPE, Photo.CONTENT_ITEM_TYPE);
354 values.put(Data.MIMETYPE, Photo.CONTENT_ITEM_TYPE);
363 values.put(Data.MIMETYPE, GroupMembershi
[all...]
H A DContactsProvider2TransactionTest.java190 b.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
219 b.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
H A DContactsActor.java392 values.put(Data.MIMETYPE, CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE);
406 values.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
422 values.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
502 values.put(Data.MIMETYPE, CommonDataKinds.GroupMembership.CONTENT_ITEM_TYPE);
H A DDirectoryTest.java118 Data.MIMETYPE + "=? AND " + GroupMembership.GROUP_ROW_ID + "=?",
/packages/apps/Contacts/src/com/android/contacts/
H A DSplitAggregateView.java57 Data.MIMETYPE, RawContacts.ACCOUNT_TYPE, RawContacts.DATA_SET, Data.RAW_CONTACT_ID,
62 int MIMETYPE = 0; field in interface:SplitAggregateView.SplitQuery
171 String mimetype = cursor.getString(SplitQuery.MIMETYPE);
H A DGroupMemberLoader.java114 selection.append(Data.MIMETYPE + "=?" + " AND " + GroupMembership.GROUP_ROW_ID + "=?");
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionEngine.java261 Data.MIMETYPE + " IN ('"
276 Data.MIMETYPE,
291 public static final int MIMETYPE = 6; field in class:AggregationSuggestionEngine.DataQuery
401 String mimetype = mDataCursor.getString(DataQuery.MIMETYPE);
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java259 Phone.MIMETYPE, // 7
270 private static final int MIMETYPE = 7; field in class:PhoneNumberInteraction
274 Data.MIMETYPE + " IN ('"
407 item.mimeType = cursor.getString(MIMETYPE);
/packages/services/Telephony/src/com/android/phone/
H A DSimContacts.java167 builder.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
173 builder.withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
183 builder.withValue(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
193 builder.withValue(Data.MIMETYPE, GroupMembership.CONTENT_ITEM_TYPE);
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
H A DContactsUtils.java235 final boolean isEmail = Email.CONTENT_ITEM_TYPE.equals(values.getAsString(Data.MIMETYPE));
300 Data.MIMETYPE + "=" + Phone.MIMETYPE +
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
H A DAllIntentsActivity.java599 Data.MIMETYPE + "=" + Phone.MIMETYPE,
656 row1.put(Data.MIMETYPE, Organization.CONTENT_ITEM_TYPE);
660 row2.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
/packages/apps/Exchange/src/com/android/exchange/provider/
H A DExchangeDirectoryProvider.java160 r.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
172 r.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
184 r.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);

Completed in 695 milliseconds

123