Home | History | Annotate | Download | only in adapter

Lines Matching refs:MIMETYPE

84     private static final String MIMETYPE_GROUP_MEMBERSHIP_AND_ID_EQUALS = Data.MIMETYPE + "='" +
1090 String mimeType = cv.getAsString(Data.MIMETYPE);
1091 if (mimeType.equals(contentItemType)) {
1135 String mimeType = cv.getAsString(Data.MIMETYPE);
1136 if (mimeType.equals(contentItemType)) {
1168 * @param mimeType the mime type of this row
1173 public RowBuilder createBuilder(Entity entity, String mimeType, int type,
1179 findTypedData(entity.getSubValues(), mimeType, type, stringType);
1190 builder = newRowBuilder(entity, mimeType);
1194 // Caller will fill in the appropriate values; 4 MIMETYPE is already set
1198 private RowBuilder typedRowBuilder(Entity entity, String mimeType, int type) {
1199 return createBuilder(entity, mimeType, type, null);
1202 private RowBuilder untypedRowBuilder(Entity entity, String mimeType) {
1203 return createBuilder(entity, mimeType, -1, null);
1206 private RowBuilder newRowBuilder(Entity entity, String mimeType) {
1225 builder.withValue(Data.MIMETYPE, mimeType);
1415 * We now are dealing with up to maxRows typeless rows of mimeType data. We need to try to
1420 public void addUntyped(Entity entity, ArrayList<UntypedRow> rows, String mimeType,
1426 oldValues = findUntypedData(entityValues, type, mimeType);
1457 RowBuilder builder = newRowBuilder(entity, mimeType);
1913 String mimeType = cv.getAsString(Data.MIMETYPE);
1914 if (mimeType.equals(Email.CONTENT_ITEM_TYPE)) {
1916 } else if (mimeType.equals(Nickname.CONTENT_ITEM_TYPE)) {
1918 } else if (mimeType.equals(EasChildren.CONTENT_ITEM_TYPE)) {
1920 } else if (mimeType.equals(EasBusiness.CONTENT_ITEM_TYPE)) {
1922 } else if (mimeType.equals(Website.CONTENT_ITEM_TYPE)) {
1924 } else if (mimeType.equals(EasPersonal.CONTENT_ITEM_TYPE)) {
1926 } else if (mimeType.equals(Phone.CONTENT_ITEM_TYPE)) {
1931 } else if (mimeType.equals(Relation.CONTENT_ITEM_TYPE)) {
1933 } else if (mimeType.equals(StructuredName.CONTENT_ITEM_TYPE)) {
1935 } else if (mimeType.equals(StructuredPostal.CONTENT_ITEM_TYPE)) {
1937 } else if (mimeType.equals(Organization.CONTENT_ITEM_TYPE)) {
1939 } else if (mimeType.equals(Im.CONTENT_ITEM_TYPE)) {
1941 } else if (mimeType.equals(Event.CONTENT_ITEM_TYPE)) {
1946 } else if (mimeType.equals(GroupMembership.CONTENT_ITEM_TYPE)) {
1949 } else if (mimeType.equals(Note.CONTENT_ITEM_TYPE)) {
1951 } else if (mimeType.equals(Photo.CONTENT_ITEM_TYPE)) {
1954 userLog("Contacts upsync, unknown data: ", mimeType);