Searched refs:Part (Results 1 – 22 of 22) sorted by relevance
40 import android.provider.Telephony.Mms.Part;204 " AFTER UPDATE of " + Part.MSG_ID + " ON part " +623 new String[] { Part._ID, Part.TEXT }, in populateWordsTable()768 Part._ID + " INTEGER PRIMARY KEY AUTOINCREMENT," + in createMmsTables()769 Part.MSG_ID + " INTEGER," + in createMmsTables()770 Part.SEQ + " INTEGER DEFAULT 0," + in createMmsTables()771 Part.CONTENT_TYPE + " TEXT," + in createMmsTables()772 Part.NAME + " TEXT," + in createMmsTables()773 Part.CHARSET + " INTEGER," + in createMmsTables()774 Part.CONTENT_DISPOSITION + " TEXT," + in createMmsTables()[all …]
243 Telephony.Mms.Part.TEXT,244 Telephony.Mms.Part.CHARSET1012 Telephony.Mms.Part.CONTENT_TYPE + "=?", new String[]{ContentType.TEXT_PLAIN},1135 values.put(Telephony.Mms.Part.MSG_ID, dummyId);1136 values.put(Telephony.Mms.Part.SEQ, -1);1137 values.put(Telephony.Mms.Part.CONTENT_TYPE, ContentType.APP_SMIL);1138 values.put(Telephony.Mms.Part.NAME, "smil.xml");1139 values.put(Telephony.Mms.Part.CONTENT_ID, "<smil>");1140 values.put(Telephony.Mms.Part.CONTENT_LOCATION, "smil.xml");1141 values.put(Telephony.Mms.Part.TEXT, smil);[all …]
43 import android.provider.Telephony.Mms.Part;144 qb.appendWhere(Part.MSG_ID + "=" + uri.getPathSegments().get(0)); in query()148 qb.appendWhere(Part._ID + "=" + uri.getPathSegments().get(1)); in query()232 finalSortOrder = Part.SEQ; in query()279 TABLE_PART, new String[] { Part.CONTENT_TYPE }, in getType()280 Part._ID + " = ?", new String[] { uri.getLastPathSegment() }, in getType()432 boolean containsDataPath = values != null && values.containsKey(Part._DATA); in insert()436 finalValues.put(Part.MSG_ID, uri.getPathSegments().get(0)); in insert()472 path = values.getAsString(Part._DATA); in insert()509 finalValues.put(Part._DATA, path); in insert()[all …]
412 smilPart.put(Telephony.Mms.Part.SEQ, -1); in createBodyCursor()413 smilPart.put(Telephony.Mms.Part.CONTENT_TYPE, APP_SMIL); in createBodyCursor()414 smilPart.put(Telephony.Mms.Part.NAME, "smil.xml"); in createBodyCursor()415 smilPart.put(Telephony.Mms.Part.CONTENT_ID, "<smil>"); in createBodyCursor()416 smilPart.put(Telephony.Mms.Part.CONTENT_LOCATION, "smil.xml"); in createBodyCursor()417 smilPart.put(Telephony.Mms.Part.TEXT, smil); in createBodyCursor()422 bodyPart.put(Telephony.Mms.Part.SEQ, 0); in createBodyCursor()423 bodyPart.put(Telephony.Mms.Part.CONTENT_TYPE, TEXT_PLAIN); in createBodyCursor()424 bodyPart.put(Telephony.Mms.Part.NAME, srcName); in createBodyCursor()425 bodyPart.put(Telephony.Mms.Part.CONTENT_ID, "<"+srcName+">"); in createBodyCursor()[all …]
27 import com.android.voicemail.impl.mail.Part;571 expect(Part.class); in startMessage()574 ((Part) stack.peek()).setBody(m); in startMessage()590 expect(Part.class); in startHeader()595 expect(Part.class); in field()598 ((Part) stack.peek()).addHeader(tokens[0], tokens[1].trim()); in field()606 expect(Part.class); in endHeader()611 expect(Part.class); in startMultipart()613 final Part e = (Part) stack.peek(); in startMultipart()625 expect(Part.class); in body()[all …]
28 import com.android.voicemail.impl.mail.Part;216 public static String getTextFromPart(Part part) { in getTextFromPart()355 public static void collectParts(Part part, ArrayList<Part> viewables, ArrayList<Part> attachments) in collectParts()
31 import android.provider.Telephony.Mms.Part;171 Part._ID,172 Part.CHARSET,173 Part.CONTENT_DISPOSITION,174 Part.CONTENT_ID,175 Part.CONTENT_LOCATION,176 Part.CONTENT_TYPE,177 Part.FILENAME,178 Part.NAME,179 Part.TEXT[all …]
3011 values.put(Mms.Part.CONTENT_TYPE, "text/plain"); in pushMmsToFolder()3012 values.put(Mms.Part.CHARSET, 106); in pushMmsToFolder()3014 values.put(Mms.Part.FILENAME, part.mPartName); in pushMmsToFolder()3015 values.put(Mms.Part.NAME, part.mPartName); in pushMmsToFolder()3017 values.put(Mms.Part.FILENAME, "text_" + count + ".txt"); in pushMmsToFolder()3018 values.put(Mms.Part.NAME, "text_" + count + ".txt"); in pushMmsToFolder()3022 values.put(Mms.Part.CONTENT_ID, part.mContentId); in pushMmsToFolder()3025 values.put(Mms.Part.CONTENT_ID, "<" + part.mPartName + ">"); in pushMmsToFolder()3027 values.put(Mms.Part.CONTENT_ID, "<text_" + count + ">"); in pushMmsToFolder()3032 values.put(Mms.Part.CONTENT_LOCATION, part.mContentLocation); in pushMmsToFolder()[all …]
3814 String selection = new String(Mms.Part.MSG_ID + "=" + id); in extractMmsParts()3823 String contentType = c.getString(c.getColumnIndex(Mms.Part.CONTENT_TYPE)); in extractMmsParts()3824 String name = c.getString(c.getColumnIndex(Mms.Part.NAME)); in extractMmsParts()3825 String charset = c.getString(c.getColumnIndex(Mms.Part.CHARSET)); in extractMmsParts()3826 String filename = c.getString(c.getColumnIndex(Mms.Part.FILENAME)); in extractMmsParts()3827 String text = c.getString(c.getColumnIndex(Mms.Part.TEXT)); in extractMmsParts()3828 Integer fd = c.getInt(c.getColumnIndex(Mms.Part._DATA)); in extractMmsParts()3829 String cid = c.getString(c.getColumnIndex(Mms.Part.CONTENT_ID)); in extractMmsParts()3830 String cl = c.getString(c.getColumnIndex(Mms.Part.CONTENT_LOCATION)); in extractMmsParts()3831 String cdisp = c.getString(c.getColumnIndex(Mms.Part.CONTENT_DISPOSITION)); in extractMmsParts()
71 public Part getFirstPart() { in getFirstPart()73 if (o instanceof Part) { in getFirstPart()74 return (Part) o; in getFirstPart()
21 protected Part parent;55 public Part getParent() throws MessagingException { in getParent()59 public void setParent(Part parent) throws MessagingException { in setParent()
18 public abstract class BodyPart implements Part {
21 public interface Part extends Fetchable { interface
23 public abstract class Message implements Part, Body {
563 Mms.Part._ID,564 Mms.Part.MSG_ID,565 Mms.Part.CHARSET,566 Mms.Part.CONTENT_TYPE,567 Mms.Part.TEXT,
1234 Mms.Part.MSG_ID, in deleteMediaMessages()1235 getMediaTypeSelectionSql(Mms.Part.CONTENT_TYPE)); in deleteMediaMessages()1626 Mms.Part.CONTENT_TYPE, in loadMms()1628 Mms.Part.MSG_ID); in loadMms()
32 import com.android.voicemail.impl.mail.Part;288 final Part fetchPart = fp.getFirstPart(); in fetchInternal()484 private static void parseBodyStructure(ImapList bs, Part part, String id) in parseBodyStructure()
539 Mms.Part.CONTENT_TYPE, in loadMmsParts()541 Mms.Part.MSG_ID, in loadMmsParts()
1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ...
1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
1dictionary=main:lv,locale=lv,description=Latviešu,date=1393228136, ...