Home | History | Annotate | Download | only in adapter

Lines Matching refs:meetingInfo

40 import com.android.emailcommon.mail.MeetingInfo;
624 String meetingInfo = msg.mMeetingInfo;
625 if (!TextUtils.isEmpty(meetingInfo)) {
626 PackedString ps = new PackedString(meetingInfo);
628 putFromMeeting(ps, MeetingInfo.MEETING_LOCATION, values,
630 String dtstart = ps.get(MeetingInfo.MEETING_DTSTART);
635 putFromMeeting(ps, MeetingInfo.MEETING_ALL_DAY, values,
654 * Set up the meetingInfo field in the message with various pieces of information gleaned
665 packedString.put(MeetingInfo.MEETING_DTSTAMP, getValue());
668 packedString.put(MeetingInfo.MEETING_DTSTART, getValue());
671 packedString.put(MeetingInfo.MEETING_DTEND, getValue());
674 packedString.put(MeetingInfo.MEETING_ORGANIZER_EMAIL, getValue());
677 packedString.put(MeetingInfo.MEETING_LOCATION, getValue());
680 packedString.put(MeetingInfo.MEETING_UID,
690 packedString.put(MeetingInfo.MEETING_RESPONSE_REQUESTED, getValue());
694 packedString.put(MeetingInfo.MEETING_ALL_DAY, "1");
702 packedString.put(MeetingInfo.MEETING_TITLE, msg.mSubject);