OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
;
243
String
meetingInfo
= msg.mMeetingInfo;
244
if (!TextUtils.isEmpty(
meetingInfo
)) {
245
PackedString ps = new PackedString(
meetingInfo
);
247
putFromMeeting(ps,
MeetingInfo
.MEETING_LOCATION, values,
249
String dtstart = ps.get(
MeetingInfo
.MEETING_DTSTART);
254
putFromMeeting(ps,
MeetingInfo
.MEETING_ALL_DAY, values,
273
* Set up the
meetingInfo
field in the message with various pieces of information gleaned
284
packedString.put(
MeetingInfo
.MEETING_DTSTAMP, getValue());
287
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 230 milliseconds