Home
last modified time | relevance | path

Searched refs:Attendees (Results 1 – 25 of 27) sorted by relevance

12

/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DCalendarTracker.java26 import android.provider.CalendarContract.Attendees;
61 Attendees.EVENT_ID,
62 Attendees.ATTENDEE_EMAIL,
63 Attendees.ATTENDEE_STATUS,
66 private static final String ATTENDEE_SELECTION = Attendees.EVENT_ID + " = ? AND "
67 + Attendees.ATTENDEE_EMAIL + " = ?";
244 case Attendees.ATTENDEE_STATUS_NONE: return "ATTENDEE_STATUS_NONE";
265 return attendeeStatus == Attendees.ATTENDEE_STATUS_ACCEPTED;
267 return attendeeStatus == Attendees.ATTENDEE_STATUS_ACCEPTED
268 || attendeeStatus == Attendees.ATTENDEE_STATUS_TENTATIVE;
[all …]
/aosp12/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarController.java22 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS;
34 import android.provider.CalendarContract.Attendees;
186 return Attendees.ATTENDEE_STATUS_NONE; in getResponse()
192 return Attendees.ATTENDEE_STATUS_NONE; in getResponse()
194 return Attendees.ATTENDEE_STATUS_ACCEPTED; in getResponse()
196 return Attendees.ATTENDEE_STATUS_DECLINED; in getResponse()
198 return Attendees.ATTENDEE_STATUS_TENTATIVE; in getResponse()
210 case Attendees.ATTENDEE_STATUS_NONE: in buildViewExtraLong()
213 case Attendees.ATTENDEE_STATUS_ACCEPTED: in buildViewExtraLong()
216 case Attendees.ATTENDEE_STATUS_DECLINED: in buildViewExtraLong()
[all …]
H A DEventInfoActivity.java20 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS;
33 import android.provider.CalendarContract.Attendees;
83 Attendees.ATTENDEE_STATUS_NONE); in onCreate()
H A DEventInfoFragment.java52 import android.provider.CalendarContract.Attendees;
267 private int mAttendeeResponseFromIntent = Attendees.ATTENDEE_STATUS_NONE;
268 private int mUserSetResponse = Attendees.ATTENDEE_STATUS_NONE;
272 private int mTentativeUserSetResponse = Attendees.ATTENDEE_STATUS_NONE;
619 return Attendees.ATTENDEE_STATUS_NONE; in getResponseFromButtonId()
836 if (mTentativeUserSetResponse != Attendees.ATTENDEE_STATUS_NONE) { in onResume()
H A DEvent.java27 import android.provider.CalendarContract.Attendees;
215 e.selfAttendeeStatus = Attendees.ATTENDEE_STATUS_NONE; in newInstance()
256 + Attendees.ATTENDEE_STATUS_DECLINED; in loadEvents()
H A DAllInOneActivity.java49 import android.provider.CalendarContract.Attendees;
77 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS;
133 private int mIntentAttendeeResponse = Attendees.ATTENDEE_STATUS_NONE;
408 ATTENDEE_STATUS, Attendees.ATTENDEE_STATUS_NONE); in parseViewAction()
H A DDayView.java41 import android.provider.CalendarContract.Attendees;
2462 case Attendees.ATTENDEE_STATUS_INVITED: in getEventLayout()
2465 case Attendees.ATTENDEE_STATUS_DECLINED: in getEventLayout()
2469 case Attendees.ATTENDEE_STATUS_NONE: // Your own events in getEventLayout()
2470 case Attendees.ATTENDEE_STATUS_ACCEPTED: in getEventLayout()
2471 case Attendees.ATTENDEE_STATUS_TENTATIVE: in getEventLayout()
2786 case Attendees.ATTENDEE_STATUS_INVITED: in drawEventRect()
2791 case Attendees.ATTENDEE_STATUS_DECLINED: in drawEventRect()
2795 case Attendees.ATTENDEE_STATUS_NONE: // Your own events in drawEventRect()
2796 case Attendees.ATTENDEE_STATUS_ACCEPTED: in drawEventRect()
[all …]
/aosp12/frameworks/base/core/java/android/provider/
H A DCalendarContract.java975 private Attendees() {} in Attendees() method in CalendarContract.Attendees
1434 Attendees.ATTENDEE_NAME,
1435 Attendees.ATTENDEE_EMAIL,
1436 Attendees.ATTENDEE_RELATIONSHIP,
1437 Attendees.ATTENDEE_TYPE,
1438 Attendees.ATTENDEE_STATUS,
1439 Attendees.ATTENDEE_IDENTITY,
1440 Attendees.ATTENDEE_ID_NAMESPACE
1582 attendeeValues.put(Attendees.ATTENDEE_NAME, in getEntityAndIncrementCursor()
1584 attendeeValues.put(Attendees.ATTENDEE_EMAIL, in getEntityAndIncrementCursor()
[all …]
/aosp12/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java2151 reminder.put(CalendarContract.Attendees.EVENT_ID, 1); in testInsertReminderToNonExistentEvent()
2162 attendee.put(CalendarContract.Attendees.ATTENDEE_TYPE, in testInsertAttendeeToNonExistentEvent()
2163 CalendarContract.Attendees.TYPE_REQUIRED); in testInsertAttendeeToNonExistentEvent()
2165 CalendarContract.Attendees.RELATIONSHIP_ORGANIZER); in testInsertAttendeeToNonExistentEvent()
2166 attendee.put(CalendarContract.Attendees.EVENT_ID, 1); in testInsertAttendeeToNonExistentEvent()
2238 attendee.put(CalendarContract.Attendees.ATTENDEE_TYPE, in testAttendees()
2239 CalendarContract.Attendees.TYPE_REQUIRED); in testAttendees()
2271 attendee.put(CalendarContract.Attendees.ATTENDEE_STATUS, in testAttendees()
2291 attendee.put(CalendarContract.Attendees.ATTENDEE_STATUS, in testAttendees()
2410 attendee.put(CalendarContract.Attendees.ATTENDEE_TYPE, in internalTestDirty()
[all …]
/aosp12/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarDatabaseHelper.java32 import android.provider.CalendarContract.Attendees;
128 Attendees.ATTENDEE_NAME + "," +
129 Attendees.ATTENDEE_EMAIL + "," +
130 Attendees.ATTENDEE_STATUS + "," +
131 Attendees.ATTENDEE_RELATIONSHIP + "," +
132 Attendees.ATTENDEE_TYPE + "," +
133 Attendees.ATTENDEE_IDENTITY + "," +
134 Attendees.ATTENDEE_ID_NAMESPACE;
235 Attendees.EVENT_ID + " IN (SELECT " + Attendees.EVENT_ID + " FROM " +
445 CalendarContract.Attendees.EVENT_ID + in bootstrapDB()
[all …]
H A DCalendarProvider2.java57 import android.provider.CalendarContract.Attendees;
162 private static final String GENERIC_ID = Attendees._ID;
300 + CalendarContract.Attendees.EVENT_ID + "=" +
2205 Attendees.EVENT_ID + "=? AND " + Attendees.ATTENDEE_EMAIL + "=?", in handleInsertException()
3018 values.put(Attendees.EVENT_ID, eventId); in createAttendeeEntry()
3019 values.put(Attendees.ATTENDEE_STATUS, status); in createAttendeeEntry()
3020 values.put(Attendees.ATTENDEE_TYPE, Attendees.TYPE_NONE); in createAttendeeEntry()
3023 values.put(Attendees.ATTENDEE_RELATIONSHIP, in createAttendeeEntry()
3024 Attendees.RELATIONSHIP_ATTENDEE); in createAttendeeEntry()
3112 int status = Attendees.ATTENDEE_STATUS_NONE; in updateEventAttendeeStatus()
[all …]
/aosp12/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetService.java32 import android.provider.CalendarContract.Attendees;
67 + Instances.SELF_ATTENDEE_STATUS + "!=" + Attendees.ATTENDEE_STATUS_DECLINED;
269 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
278 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) {
285 } else if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) {
298 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
/aosp12/packages/apps/Car/Calendar/src/com/android/car/calendar/common/
H A DEventsLiveData.java240 case CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED: in createEventsForRow()
243 case CalendarContract.Attendees.ATTENDEE_STATUS_DECLINED: in createEventsForRow()
/aosp12/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertReceiver.java32 import android.provider.CalendarContract.Attendees;
H A DAlertService.java38 import android.provider.CalendarContract.Attendees;
/aosp12/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthByWeekFragment.java32 import android.provider.CalendarContract.Attendees;
198 + Attendees.ATTENDEE_STATUS_DECLINED; in updateWhere()
H A DMonthWeekEventsView.java37 import android.provider.CalendarContract.Attendees;
869 boolean isDeclined = event.selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED; in drawEvent()
900 if (event.selfAttendeeStatus != Attendees.ATTENDEE_STATUS_INVITED) { in drawEvent()
/aosp12/packages/apps/Car/Calendar/tests/ui/src/com/android/car/calendar/
H A DCarCalendarUiTest.java91 CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED;
/aosp12/packages/apps/Car/Calendar/tests/unit/src/com/android/car/calendar/common/
H A DEventsLiveDataTest.java88 CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED;
/aosp12/frameworks/base/boot/
H A Dpreloaded-classes5906 android.provider.CalendarContract$Attendees
H A Dboot-image-profile.txt29291 Landroid/provider/CalendarContract$Attendees;
/aosp12/frameworks/base/config/
H A Dpreloaded-classes5904 android.provider.CalendarContract$Attendees
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt44921 Landroid/provider/CalendarContract$Attendees;-><init>()V
44922 Landroid/provider/CalendarContract$Attendees;->ATTENDEES_WHERE:Ljava/lang/String;
/aosp12/frameworks/base/core/api/
H A Dcurrent.txt33411 …public static final class CalendarContract.Attendees implements android.provider.BaseColumns andro…

12