/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
|
/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...] |
/frameworks/base/docs/html/reference/android/support/wearable/provider/ |
package-summary.html | 180 <td class="jd-linkcol"><a href="/reference/android/support/wearable/provider/WearableCalendarContract.Attendees.html">WearableCalendarContract.Attendees</a></td> 238 <li class="api apilevel-"><a href="/reference/android/support/wearable/provider/WearableCalendarContract.Attendees.html">WearableCalendarContract.Attendees</a></li>
|
WearableCalendarContract.Attendees.html | 145 <title>WearableCalendarContract.Attendees</title> 206 <h1 class="api-title">WearableCalendarContract.Attendees</h1> 214 WearableCalendarContract.Attendees 247 <td colspan="1" class="jd-inheritance-class-cell">android.support.wearable.provider.WearableCalendarContract.Attendees 264 <ul class="nolist"><li><code><a href="/reference/android/provider/CalendarContract.Attendees.html">CalendarContract.Attendees</a></code></li> 303 <code><a href="/reference/android/support/wearable/provider/WearableCalendarContract.Attendees.html#CONTENT_URI">CONTENT_URI</a></code> 685 <li class="selected api apilevel-"><a href="/reference/android/support/wearable/provider/WearableCalendarContract.Attendees.html">WearableCalendarContract.Attendees</a></li>
|
/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...] |
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...] |
EventInfoActivity.java | 20 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS; 33 import android.provider.CalendarContract.Attendees; 91 Attendees.ATTENDEE_STATUS_NONE);
|
/packages/apps/Calendar/src/com/android/calendar/event/ |
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...] |
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...] |
/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/res/values/ |
integers.xml | 21 <!-- The alpha level of photos of attendees that didn't respond --> 23 <!-- The default alpha level of photos of attendees -->
|
/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...] |
/frameworks/base/docs/html-intl/intl/ja/guide/topics/providers/ |
calendar-provider.jd | 24 <li><a href="#attendees">Attendees ????</a> 26 <li><a href="#add-attendees">??????</a></li> 53 <li>{@link android.provider.CalendarContract.Attendees}</li> 143 <td>{@link android.provider.CalendarContract.Attendees}</td> 631 <h2 id="attendees">Attendees ????</h2> 633 <p>{@link android.provider.CalendarContract.Attendees} ???????????????? 1 ????????????????? 698 <h3 id="add-attendees">??????</h3> 709 values.put(Attendees.ATTENDEE_NAME, "Trevor") [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2Test.java | [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...] |
/frameworks/base/docs/html-intl/intl/ko/guide/topics/providers/ |
calendar-provider.jd | 24 <li><a href="#attendees">??? ???</a> 26 <li><a href="#add-attendees">??? ??</a></li> 53 <li>{@link android.provider.CalendarContract.Attendees}</li> 143 <td>{@link android.provider.CalendarContract.Attendees}</td> 631 <h2 id="attendees">??? ???</h2> 633 <p>{@link android.provider.CalendarContract.Attendees} ???? ? ?? 698 <h3 id="add-attendees">??? ??</h3> 709 values.put(Attendees.ATTENDEE_NAME, "Trevor"); 710 values.put(Attendees.ATTENDEE_EMAIL, "trevor@example.com"); 711 values.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ATTENDEE) [all...] |
/frameworks/base/docs/html-intl/intl/ru/guide/topics/providers/ |
calendar-provider.jd | 24 <li><a href="#attendees">??????? ??????????</a> 26 <li><a href="#add-attendees">?????????? ??????????</a></li> 53 <li>{@link android.provider.CalendarContract.Attendees}</li> 143 <td>{@link android.provider.CalendarContract.Attendees}</td> 631 <h2 id="attendees">??????? ??????????</h2> 633 <p>? ?????? ?????? ??????? {@link android.provider.CalendarContract.Attendees} 698 <h3 id="add-attendees">?????????? ??????????</h3> [all...] |
/frameworks/base/docs/html-intl/intl/zh-cn/guide/topics/providers/ |
calendar-provider.jd | 24 <li><a href="#attendees">????</a> 26 <li><a href="#add-attendees">?????</a></li> 53 <li>{@link android.provider.CalendarContract.Attendees}</li> 143 <td>{@link android.provider.CalendarContract.Attendees}</td> 631 <h2 id="attendees">????</h2> 633 <p>{@link android.provider.CalendarContract.Attendees} 698 <h3 id="add-attendees">?????</h3> 709 values.put(Attendees.ATTENDEE_NAME, "Trevor"); 710 values.put(Attendees.ATTENDEE_EMAIL, "trevor@example.com"); 711 values.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ATTENDEE) [all...] |
/frameworks/base/docs/html-intl/intl/zh-tw/guide/topics/providers/ |
calendar-provider.jd | 24 <li><a href="#attendees">?????</a> 26 <li><a href="#add-attendees">?????</a></li> 53 <li>{@link android.provider.CalendarContract.Attendees}</li> 143 <td>{@link android.provider.CalendarContract.Attendees}</td> 631 <h2 id="attendees">?????</h2> 633 <p>{@link android.provider.CalendarContract.Attendees} ??????????????????????? 698 <h3 id="add-attendees">?????</h3> 709 values.put(Attendees.ATTENDEE_NAME, "Trevor"); 710 values.put(Attendees.ATTENDEE_EMAIL, "trevor@example.com"); 711 values.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ATTENDEE) [all...] |
/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...] |
/frameworks/base/docs/html/guide/topics/providers/ |
calendar-provider.jd | 24 <li><a href="#attendees">Attendees table</a> 26 <li><a href="#add-attendees">Adding Attendees</a></li> 53 <li>{@link android.provider.CalendarContract.Attendees}</li> 61 operations on calendars, events, attendees, reminders, and so on.</p> 127 time, and so on. The event can occur one-time or can recur multiple times. Attendees, 143 <td>{@link android.provider.CalendarContract.Attendees}</td> 494 <td>Whether guests can see the list of attendees.</td> 578 attendees or reminders to an event.</p [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...] |