Home
last modified time | relevance | path

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

/packages/apps/Calendar/src/com/android/calendar/
DEvent.java135 public int selfAttendeeStatus; field in Event
167 e.selfAttendeeStatus = selfAttendeeStatus; in clone()
188 dest.selfAttendeeStatus = selfAttendeeStatus; in copyTo()
209 e.selfAttendeeStatus = Attendees.ATTENDEE_STATUS_NONE; in newInstance()
410 e.selfAttendeeStatus = cEvents.getInt(PROJECTION_SELF_ATTENDEE_STATUS_INDEX); in generateEventFromCursor()
DDayView.java2826 switch (event.selfAttendeeStatus) { in getEventLayout()
3448 switch (event.selfAttendeeStatus) { in drawEventRect()
/packages/apps/Calendar/src/com/android/calendar/widget/
DCalendarAppWidgetModel.java82 int selfAttendeeStatus; field in CalendarAppWidgetModel.EventInfo
116 builder.append(selfAttendeeStatus); in toString()
136 result = prime * result + selfAttendeeStatus; in hashCode()
183 if (selfAttendeeStatus != other.selfAttendeeStatus) { in equals()
387 eventInfo.selfAttendeeStatus = selfStatus; in populateEventInfo()
DCalendarAppWidgetService.java261 int selfAttendeeStatus = eventInfo.selfAttendeeStatus;
263 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
272 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) {
279 } else if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) {
294 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
/packages/apps/Calendar/src/com/android/calendar/agenda/
DAgendaAdapter.java134 int selfAttendeeStatus = cursor.getInt(AgendaWindowAdapter.INDEX_SELF_ATTENDEE_STATUS); in bindView() local
135 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) { in bindView()
144 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) { in bindView()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java1947 long selfAttendeeStatus = cursor.getInt(selfColumn); in testAttendees() local
1948 assertEquals(CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED, selfAttendeeStatus); in testAttendees()
1970 selfAttendeeStatus = cursor.getInt(selfColumn); in testAttendees()
1971 assertEquals(CalendarContract.Attendees.ATTENDEE_STATUS_DECLINED, selfAttendeeStatus); in testAttendees()
1988 selfAttendeeStatus = cursor.getInt(selfColumn); in testAttendees()
1989 assertEquals(CalendarContract.Attendees.ATTENDEE_STATUS_DECLINED, selfAttendeeStatus); in testAttendees()
/packages/apps/Calendar/src/com/android/calendar/month/
DMonthWeekEventsView.java869 boolean isDeclined = event.selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED; in drawEvent()
900 if (event.selfAttendeeStatus != Attendees.ATTENDEE_STATUS_INVITED) { in drawEvent()
/packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
DCalendarUtilities.java1491 static public int busyStatusFromAttendeeStatus(int selfAttendeeStatus) { in busyStatusFromAttendeeStatus() argument
1493 switch (selfAttendeeStatus) { in busyStatusFromAttendeeStatus()