HomeSort by relevance Sort by last modified time
    Searched refs:meetingInfo (Results 1 - 4 of 4) sorted by null

  /packages/apps/Exchange/src/com/android/exchange/service/
EasMeetingResponder.java 11 import com.android.emailcommon.mail.MeetingInfo;
117 * @param meetingInfo The meeting info that was extracted from the invitation message.
120 private void sendMeetingResponseMail(final PackedString meetingInfo, final int response) {
123 final Address[] addrs = Address.parse(meetingInfo.get(MeetingInfo.MEETING_ORGANIZER_EMAIL));
128 final String dtStamp = meetingInfo.get(MeetingInfo.MEETING_DTSTAMP);
129 final String dtStart = meetingInfo.get(MeetingInfo.MEETING_DTSTART);
130 final String dtEnd = meetingInfo.get(MeetingInfo.MEETING_DTEND)
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/
EasSyncService.java 40 import com.android.emailcommon.mail.MeetingInfo;
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncParser.java 24 import com.android.emailcommon.mail.MeetingInfo;
226 String meetingInfo = msg.mMeetingInfo;
227 if (!TextUtils.isEmpty(meetingInfo)) {
228 PackedString ps = new PackedString(meetingInfo);
230 putFromMeeting(ps, MeetingInfo.MEETING_LOCATION, values,
232 String dtstart = ps.get(MeetingInfo.MEETING_DTSTART);
237 putFromMeeting(ps, MeetingInfo.MEETING_ALL_DAY, values,
256 * Set up the meetingInfo field in the message with various pieces of information gleaned
267 packedString.put(MeetingInfo.MEETING_DTSTAMP, getValue());
270 packedString.put(MeetingInfo.MEETING_DTSTART, getValue())
    [all...]
EmailSyncAdapter.java 42 import com.android.emailcommon.mail.MeetingInfo;
628 String meetingInfo = msg.mMeetingInfo;
629 if (!TextUtils.isEmpty(meetingInfo)) {
630 PackedString ps = new PackedString(meetingInfo);
632 putFromMeeting(ps, MeetingInfo.MEETING_LOCATION, values,
634 String dtstart = ps.get(MeetingInfo.MEETING_DTSTART);
639 putFromMeeting(ps, MeetingInfo.MEETING_ALL_DAY, values,
658 * Set up the meetingInfo field in the message with various pieces of information gleaned
669 packedString.put(MeetingInfo.MEETING_DTSTAMP, getValue());
672 packedString.put(MeetingInfo.MEETING_DTSTART, getValue())
    [all...]

Completed in 160 milliseconds