/packages/apps/Contacts/src/com/android/contacts/interactions/ |
CalendarInteraction.java | 12 import android.provider.CalendarContract.Attendees; 21 * {@link android.provider.CalendarContract.Attendees}. 98 return mValues.getAsString(Attendees.ATTENDEE_EMAIL); 102 return mValues.getAsString(Attendees.ATTENDEE_IDENTITY); 106 return mValues.getAsString(Attendees.ATTENDEE_ID_NAMESPACE); 110 return mValues.getAsString(Attendees.ATTENDEE_NAME); 114 return mValues.getAsInteger(Attendees.ATTENDEE_RELATIONSHIP); 118 return mValues.getAsInteger(Attendees.ATTENDEE_STATUS); 122 return mValues.getAsInteger(Attendees.ATTENDEE_TYPE); 126 return mValues.getAsInteger(Attendees.EVENT_ID) [all...] |
CalendarInteractionsLoader.java | 105 = CalendarContract.Attendees.LAST_SYNCED + " = 0"; 107 String orderBy = CalendarContract.Attendees.DTSTART + (isFuture ? " ASC " : " DESC "); 109 + " AND " + CalendarContract.Attendees.CALENDAR_ID 111 + " AND " + CalendarContract.Attendees.DTSTART + timeOperator + " ? " 112 + " AND " + CalendarContract.Attendees.DTSTART + " > ? " 113 + " AND " + CalendarContract.Attendees.DTSTART + " < ? " 116 return getContext().getContentResolver().query(CalendarContract.Attendees.CONTENT_URI, 137 = " REPLACE(" + CalendarContract.Attendees.ATTENDEE_EMAIL
|
/packages/apps/Calendar/src/com/android/calendar/ |
GoogleCalendarUriIntentFilter.java | 31 import android.provider.CalendarContract.Attendees; 201 int attendeeStatus = Attendees.ATTENDEE_STATUS_NONE; 206 attendeeStatus = Attendees.ATTENDEE_STATUS_ACCEPTED; 209 attendeeStatus = Attendees.ATTENDEE_STATUS_DECLINED; 212 attendeeStatus = Attendees.ATTENDEE_STATUS_TENTATIVE; 227 if (attendeeStatus == Attendees.ATTENDEE_STATUS_NONE) { 261 intent.putExtra(Attendees.ATTENDEE_STATUS, status); 267 case Attendees.ATTENDEE_STATUS_ACCEPTED: 270 case Attendees.ATTENDEE_STATUS_DECLINED: 273 case Attendees.ATTENDEE_STATUS_TENTATIVE [all...] |
EventInfoFragment.java | 52 import android.provider.CalendarContract.Attendees; 232 Attendees._ID, // 0 233 Attendees.ATTENDEE_NAME, // 1 234 Attendees.ATTENDEE_EMAIL, // 2 235 Attendees.ATTENDEE_RELATIONSHIP, // 3 236 Attendees.ATTENDEE_STATUS, // 4 237 Attendees.ATTENDEE_IDENTITY, // 5 238 Attendees.ATTENDEE_ID_NAMESPACE // 6 253 ATTENDEES_PROJECTION[ATTENDEES_INDEX_IDENTITY] = Attendees._ID; // dummy value 254 ATTENDEES_PROJECTION[ATTENDEES_INDEX_ID_NAMESPACE] = Attendees._ID; // dummy valu [all...] |
EventInfoActivity.java | 20 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS; 33 import android.provider.CalendarContract.Attendees; 91 Attendees.ATTENDEE_STATUS_NONE);
|
CalendarController.java | 22 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS; 36 import android.provider.CalendarContract.Attendees; 176 * Set to Attendees.ATTENDEE_STATUS_NONE, Attendees.ATTENDEE_STATUS_ACCEPTED, 177 * Attendees.ATTENDEE_STATUS_DECLINED, or Attendees.ATTENDEE_STATUS_TENTATIVE. 206 return Attendees.ATTENDEE_STATUS_NONE; 212 return Attendees.ATTENDEE_STATUS_NONE; 214 return Attendees.ATTENDEE_STATUS_ACCEPTED; 216 return Attendees.ATTENDEE_STATUS_DECLINED [all...] |
Event.java | 27 import android.provider.CalendarContract.Attendees; 215 e.selfAttendeeStatus = Attendees.ATTENDEE_STATUS_NONE; 256 + Attendees.ATTENDEE_STATUS_DECLINED;
|
/frameworks/base/services/core/java/com/android/server/notification/ |
CalendarTracker.java | 26 import android.provider.CalendarContract.Attendees; 60 Attendees.EVENT_ID, 61 Attendees.ATTENDEE_EMAIL, 62 Attendees.ATTENDEE_STATUS, 65 private static final String ATTENDEE_SELECTION = Attendees.EVENT_ID + " = ? AND " 66 + Attendees.ATTENDEE_EMAIL + " = ?"; 180 final Cursor cursor = mUserContext.getContentResolver().query(Attendees.CONTENT_URI, 184 if (DEBUG) Log.d(TAG, "No attendees found"); 228 case Attendees.ATTENDEE_STATUS_NONE: return "ATTENDEE_STATUS_NONE"; 229 case Attendees.ATTENDEE_STATUS_ACCEPTED: return "ATTENDEE_STATUS_ACCEPTED" [all...] |
/packages/apps/Calendar/tests/src/com/android/calendar/event/ |
EditEventHelperTest.java | 27 import android.provider.CalendarContract.Attendees; 243 b = ContentProviderOperation.newInsert(Attendees.CONTENT_URI).withValues(mExpectedValues); 250 mExpectedValues.put(Attendees.EVENT_ID, TEST_EVENT_ID); 252 b = ContentProviderOperation.newInsert(Attendees.CONTENT_URI).withValues(mExpectedValues); 267 ContentProviderOperation.newDelete(Attendees.CONTENT_URI); 273 mExpectedValues.put(Attendees.ATTENDEE_NAME, "different@email.bit"); 274 mExpectedValues.put(Attendees.ATTENDEE_EMAIL, "different@email.bit"); 275 mExpectedValues.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ATTENDEE); 276 mExpectedValues.put(Attendees.ATTENDEE_TYPE, Attendees.TYPE_REQUIRED) [all...] |
/packages/apps/Calendar/src/com/android/calendar/event/ |
EditEventHelper.java | 26 import android.provider.CalendarContract.Attendees; 131 static final String ATTENDEES_DELETE_PREFIX = Attendees.EVENT_ID + "=? AND " 132 + Attendees.ATTENDEE_EMAIL + " IN ("; 158 Attendees.ATTENDEE_STATUS_NONE, 159 Attendees.ATTENDEE_STATUS_ACCEPTED, 160 Attendees.ATTENDEE_STATUS_TENTATIVE, 161 Attendees.ATTENDEE_STATUS_DECLINED, 223 Attendees._ID, // 0 224 Attendees.ATTENDEE_NAME, // 1 225 Attendees.ATTENDEE_EMAIL, // 483 String attendees = model.getAttendeesString(); local [all...] |
AttendeesView.java | 37 import android.provider.CalendarContract.Attendees; 78 // TextView shown at the top of each type of attendees 93 // Number of attendees responding or not responding. 114 // Create dividers between groups of attendees (accepted, declined, etc...) 121 // Create a filter to convert photos of declined attendees to grayscale. 155 // Add the number of attendees in the specific status (corresponding to the divider) in 218 if (item.mAttendee.mStatus == Attendees.ATTENDEE_STATUS_NONE) { 223 if (item.mAttendee.mStatus == Attendees.ATTENDEE_STATUS_DECLINED) { 289 case Attendees.ATTENDEE_STATUS_ACCEPTED: { 300 case Attendees.ATTENDEE_STATUS_DECLINED: [all...] |
EditEventFragment.java | 37 import android.provider.CalendarContract.Attendees; 206 Uri attUri = Attendees.CONTENT_URI; 264 if (relationship == Attendees.RELATIONSHIP_ORGANIZER) { 528 mModel.mSelfAttendeeStatus = Attendees.ATTENDEE_STATUS_ACCEPTED; [all...] |
/frameworks/base/core/java/android/provider/ |
CalendarContract.java | 59 * one-time or can recur multiple times. Attendees, reminders, and extended 67 * <li>The {@link Attendees} table holds the event attendee or guest 466 * in the format "#,#,#". Valid types are {@link Attendees#TYPE_NONE}, 467 * {@link Attendees#TYPE_OPTIONAL}, {@link Attendees#TYPE_REQUIRED}, 468 * {@link Attendees#TYPE_RESOURCE}. Setting this field to only 469 * {@link Attendees#TYPE_NONE} should be used to indicate that changing 750 * Columns from the Attendees table that other tables join into themselves. [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
CalendarTest.java | 34 import android.provider.CalendarContract.Attendees; 124 * Calendars.OWNER_ACCOUNT, Events.OWNER_ACCOUNT, and for Attendees.ATTENDEE_EMAIL 593 * Helper class for manipulating entries in the Attendees table. 597 Attendees._ID, 598 Attendees.EVENT_ID, 599 Attendees.ATTENDEE_NAME, 600 Attendees.ATTENDEE_EMAIL, 601 Attendees.ATTENDEE_STATUS, 602 Attendees.ATTENDEE_RELATIONSHIP, 603 Attendees.ATTENDEE_TYP [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
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; 146 public static final String ATTENDEES = "Attendees"; [all...] |
CalendarProvider2.java | 45 import android.provider.CalendarContract.Attendees; 146 private static final String GENERIC_ID = Attendees._ID; 147 private static final String GENERIC_EVENT_ID = Attendees.EVENT_ID; 218 Tables.EVENTS + "." + Events._ID + "=" + Tables.ATTENDEES + "." + Attendees.EVENT_ID 223 Tables.ATTENDEES + "." + Attendees._ID + "=? AND " + SQL_WHERE_ATTENDEE_BASE; 279 CalendarDatabaseHelper.Tables.ATTENDEES + 280 " ON (" + CalendarDatabaseHelper.Tables.ATTENDEES + "." 281 + CalendarContract.Attendees.EVENT_ID + "=" [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2Test.java | [all...] |
/packages/apps/Calendar/src/com/android/calendar/widget/ |
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) { 300 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
|
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaAdapter.java | 22 import android.provider.CalendarContract.Attendees; 135 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_DECLINED) { 144 if (selfAttendeeStatus == Attendees.ATTENDEE_STATUS_INVITED) {
|
AgendaFragment.java | 26 import android.provider.CalendarContract.Attendees; 429 Attendees.ATTENDEE_STATUS_NONE, false,
|
AgendaListView.java | 31 import android.provider.CalendarContract.Attendees; 203 Attendees.ATTENDEE_STATUS_NONE, item.allDay), holderStartTime);
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlertReceiver.java | 32 import android.provider.CalendarContract.Attendees; 308 // Create email intent for emailing attendees. 587 Attendees.ATTENDEE_EMAIL, // 0 588 Attendees.ATTENDEE_STATUS, // 1 592 private static final String ATTENDEES_WHERE = Attendees.EVENT_ID + "=?"; 593 private static final String ATTENDEES_SORT_ORDER = Attendees.ATTENDEE_NAME + " ASC, " 594 + Attendees.ATTENDEE_EMAIL + " ASC"; 614 return context.getContentResolver().query(Attendees.CONTENT_URI, 644 // Query attendees to see if there are any to email. 670 * Creates an Intent for emailing the attendees of the event. Returns null if ther [all...] |
AlertService.java | 38 import android.provider.CalendarContract.Attendees; 605 final boolean declined = status == Attendees.ATTENDEE_STATUS_DECLINED; 606 final boolean responded = status != Attendees.ATTENDEE_STATUS_NONE 607 && status != Attendees.ATTENDEE_STATUS_INVITED; [all...] |
/frameworks/base/docs/html/reference/android/support/wearable/ |
navtree_data.js | 12 , null ], [ "android.support.wearable.provider", "reference/android/support/wearable/provider/package-summary.html", [ [ "Classes", null, [ [ "WearableCalendarContract", "reference/android/support/wearable/provider/WearableCalendarContract.html", null, null ], [ "WearableCalendarContract.Attendees", "reference/android/support/wearable/provider/WearableCalendarContract.Attendees.html", null, null ], [ "WearableCalendarContract.Instances", "reference/android/support/wearable/provider/WearableCalendarContract.Instances.html", null, null ], [ "WearableCalendarContract.Reminders", "reference/android/support/wearable/provider/WearableCalendarContract.Reminders.html", null, null ] ]
|
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/ |
AlertServiceTest.java | 26 import android.provider.CalendarContract.Attendees; 171 public static final int ACCEPTED = Attendees.ATTENDEE_STATUS_ACCEPTED; 172 public static final int DECLINED = Attendees.ATTENDEE_STATUS_DECLINED; 173 public static final int INVITED = Attendees.ATTENDEE_STATUS_INVITED; 174 public static final int TENTATIVE = Attendees.ATTENDEE_STATUS_TENTATIVE; [all...] |