Home
last modified time | relevance | path

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

/packages/apps/Calendar/src/com/android/calendar/
DEvent.java141 public int selfAttendeeStatus; field in Event
173 e.selfAttendeeStatus = selfAttendeeStatus; in clone()
194 dest.selfAttendeeStatus = selfAttendeeStatus; in copyTo()
215 e.selfAttendeeStatus = Attendees.ATTENDEE_STATUS_NONE; in newInstance()
416 e.selfAttendeeStatus = cEvents.getInt(PROJECTION_SELF_ATTENDEE_STATUS_INDEX); in generateEventFromCursor()
DDayView.java2830 switch (event.selfAttendeeStatus) { in getEventLayout()
3452 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.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/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.java2138 long selfAttendeeStatus = cursor.getInt(selfColumn); in testAttendees() local
2139 assertEquals(CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED, selfAttendeeStatus); in testAttendees()
2161 selfAttendeeStatus = cursor.getInt(selfColumn); in testAttendees()
2162 assertEquals(CalendarContract.Attendees.ATTENDEE_STATUS_DECLINED, selfAttendeeStatus); in testAttendees()
2179 selfAttendeeStatus = cursor.getInt(selfColumn); in testAttendees()
2180 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()