/aosp12/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | CalendarTracker.java | 26 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 D | CalendarController.java | 22 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 D | EventInfoActivity.java | 20 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS; 33 import android.provider.CalendarContract.Attendees; 83 Attendees.ATTENDEE_STATUS_NONE); in onCreate()
|
H A D | EventInfoFragment.java | 52 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 D | Event.java | 27 import android.provider.CalendarContract.Attendees; 215 e.selfAttendeeStatus = Attendees.ATTENDEE_STATUS_NONE; in newInstance() 256 + Attendees.ATTENDEE_STATUS_DECLINED; in loadEvents()
|
H A D | AllInOneActivity.java | 49 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 D | DayView.java | 41 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 D | CalendarContract.java | 975 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 D | CalendarProvider2Test.java | 2151 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 D | CalendarDatabaseHelper.java | 32 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 D | CalendarProvider2.java | 57 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 D | CalendarAppWidgetService.java | 32 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 D | EventsLiveData.java | 240 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 D | AlertReceiver.java | 32 import android.provider.CalendarContract.Attendees;
|
H A D | AlertService.java | 38 import android.provider.CalendarContract.Attendees;
|
/aosp12/packages/apps/Calendar/src/com/android/calendar/month/ |
H A D | MonthByWeekFragment.java | 32 import android.provider.CalendarContract.Attendees; 198 + Attendees.ATTENDEE_STATUS_DECLINED; in updateWhere()
|
H A D | MonthWeekEventsView.java | 37 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 D | CarCalendarUiTest.java | 91 CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED;
|
/aosp12/packages/apps/Car/Calendar/tests/unit/src/com/android/car/calendar/common/ |
H A D | EventsLiveDataTest.java | 88 CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED;
|
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 5906 android.provider.CalendarContract$Attendees
|
H A D | boot-image-profile.txt | 29291 Landroid/provider/CalendarContract$Attendees;
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 5904 android.provider.CalendarContract$Attendees
|
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 44921 Landroid/provider/CalendarContract$Attendees;-><init>()V 44922 Landroid/provider/CalendarContract$Attendees;->ATTENDEES_WHERE:Ljava/lang/String;
|
/aosp12/frameworks/base/core/api/ |
H A D | current.txt | 33411 …public static final class CalendarContract.Attendees implements android.provider.BaseColumns andro…
|