Searched refs:selfAttendeeStatus (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java82 int selfAttendeeStatus; field in class:CalendarAppWidgetModel.EventInfo
115 builder.append(", selfAttendeeStatus=");
116 builder.append(selfAttendeeStatus);
136 result = prime * result + selfAttendeeStatus;
183 if (selfAttendeeStatus != other.selfAttendeeStatus) {
387 eventInfo.selfAttendeeStatus = selfStatus;
H A DCalendarAppWidgetService.java267 int selfAttendeeStatus = eventInfo.selfAttendeeStatus;
269 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
278 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) {
285 } else if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) {
300 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
/packages/apps/Calendar/src/com/android/calendar/
H A DEvent.java141 public int selfAttendeeStatus; field in class:Event
173 e.selfAttendeeStatus = selfAttendeeStatus;
194 dest.selfAttendeeStatus = selfAttendeeStatus;
215 e.selfAttendeeStatus = Attendees.ATTENDEE_STATUS_NONE;
416 e.selfAttendeeStatus = cEvents.getInt(PROJECTION_SELF_ATTENDEE_STATUS_INDEX);
H A DDayView.java2830 switch (event.selfAttendeeStatus) {
3452 switch (event.selfAttendeeStatus) {
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaAdapter.java134 int selfAttendeeStatus = cursor.getInt(AgendaWindowAdapter.INDEX_SELF_ATTENDEE_STATUS);
135 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) {
144 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthWeekEventsView.java869 boolean isDeclined = event.selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED;
900 if (event.selfAttendeeStatus != Attendees.ATTENDEE_STATUS_INVITED) {
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java2138 long selfAttendeeStatus = cursor.getInt(selfColumn);
2139 assertEquals(CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED, selfAttendeeStatus);
2161 selfAttendeeStatus = cursor.getInt(selfColumn);
2162 assertEquals(CalendarContract.Attendees.ATTENDEE_STATUS_DECLINED, selfAttendeeStatus);
2179 selfAttendeeStatus = cursor.getInt(selfColumn);
2180 assertEquals(CalendarContract.Attendees.ATTENDEE_STATUS_DECLINED, selfAttendeeStatus);
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java1506 * Get a selfAttendeeStatus from a busy status
1511 * @return the corresponding value for selfAttendeeStatus
1531 * Get a selfAttendeeStatus from a response type (EAS 14+)
1534 * @return the corresponding value for selfAttendeeStatus
1557 /** Get a busy status from a selfAttendeeStatus
1559 * @param selfAttendeeStatus from CalendarProvider2
1562 static public int busyStatusFromAttendeeStatus(int selfAttendeeStatus) { argument
1564 switch (selfAttendeeStatus) {

Completed in 228 milliseconds