HomeSort by relevance Sort by last modified time
    Searched refs:Attendees (Results 1 - 25 of 40) sorted by null

1 2

  /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...]
  /packages/apps/Calendar/src/com/android/calendar/
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...]
GoogleCalendarUriIntentFilter.java 20 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS;
21 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS_ACCEPTED;
22 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS_DECLINED;
23 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS_NONE;
24 import static android.provider.CalendarContract.Attendees.ATTENDEE_STATUS_TENTATIVE;
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;
175 * Set to Attendees.ATTENDEE_STATUS_NONE, Attendees.ATTENDEE_STATUS_ACCEPTED,
176 * Attendees.ATTENDEE_STATUS_DECLINED, or Attendees.ATTENDEE_STATUS_TENTATIVE.
205 return Attendees.ATTENDEE_STATUS_NONE;
211 return Attendees.ATTENDEE_STATUS_NONE;
213 return Attendees.ATTENDEE_STATUS_ACCEPTED;
215 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;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 34 import android.provider.CalendarContract.Attendees;
97 private static final String ATTENDEES_EXCEPT_ORGANIZER = Attendees.EVENT_ID + "=? AND " +
98 Attendees.ATTENDEE_RELATIONSHIP + "!=" + Attendees.RELATIONSHIP_ORGANIZER;
107 Attendees.EVENT_ID + "=? AND "+ Attendees.ATTENDEE_EMAIL + " LIKE ?";
110 new String[] {Attendees.ATTENDEE_STATUS};
124 private static final String EXTENDED_PROPERTY_ATTENDEES = "attendees";
142 // Maximum number of allowed attendees; above this number, we mark the Event with the
149 // Maximum number of CPO's before we start redacting attendees in exception
    [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...]
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 22 import android.provider.CalendarContract.Attendees;
258 attendeeValues.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ATTENDEE);
259 attendeeValues.put(Attendees.ATTENDEE_EMAIL, attendee);
260 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
264 organizerValues.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ORGANIZER);
265 organizerValues.put(Attendees.ATTENDEE_EMAIL, organizer);
266 entity.addSubValue(Attendees.CONTENT_URI, organizerValues);
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 22 import android.provider.CalendarContract.Attendees;
268 attendeeValues.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ATTENDEE);
269 attendeeValues.put(Attendees.ATTENDEE_EMAIL, attendee);
270 entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
274 organizerValues.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ORGANIZER);
275 organizerValues.put(Attendees.ATTENDEE_EMAIL, organizer);
276 entity.addSubValue(Attendees.CONTENT_URI, organizerValues);
    [all...]
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/adapter/
CalendarSyncAdapterTests.java 31 import android.provider.CalendarContract.Attendees;
53 private static final String[] ATTENDEE_PROJECTION = new String[] {Attendees.ATTENDEE_EMAIL,
54 Attendees.ATTENDEE_NAME, Attendees.ATTENDEE_STATUS};
359 // Two attendees (organizer and 10 attendees)
360 assertEquals(11, countInsertOperationsForTable(p.mOps, "attendees"));
361 // dtstamp, meeting status, attendees, attendees redacted, and upsync prohibited
383 assertEquals(0, countInsertOperationsForTable(p.mOps, "attendees"));
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
CalendarSyncAdapterTests.java 31 import android.provider.CalendarContract.Attendees;
53 private static final String[] ATTENDEE_PROJECTION = new String[] {Attendees.ATTENDEE_EMAIL,
54 Attendees.ATTENDEE_NAME, Attendees.ATTENDEE_STATUS};
359 // Two attendees (organizer and 10 attendees)
360 assertEquals(11, countInsertOperationsForTable(p.mOps, "attendees"));
361 // dtstamp, meeting status, attendees, attendees redacted, and upsync prohibited
383 assertEquals(0, countInsertOperationsForTable(p.mOps, "attendees"));
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 34 import android.provider.CalendarContract.Attendees;
125 * 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 31 import android.provider.CalendarContract.Attendees;
127 Attendees.ATTENDEE_NAME + "," +
128 Attendees.ATTENDEE_EMAIL + "," +
129 Attendees.ATTENDEE_STATUS + "," +
130 Attendees.ATTENDEE_RELATIONSHIP + "," +
131 Attendees.ATTENDEE_TYPE + "," +
132 Attendees.ATTENDEE_IDENTITY + "," +
133 Attendees.ATTENDEE_ID_NAMESPACE;
145 public static final String ATTENDEES = "Attendees";
    [all...]
CalendarProvider2.java 45 import android.provider.CalendarContract.Attendees;
145 private static final String GENERIC_ID = Attendees._ID;
146 private static final String GENERIC_EVENT_ID = Attendees.EVENT_ID;
225 Tables.EVENTS + "." + Events._ID + "=" + Tables.ATTENDEES + "." + Attendees.EVENT_ID
230 Tables.ATTENDEES + "." + Attendees._ID + "=? AND " + SQL_WHERE_ATTENDEE_BASE;
286 CalendarDatabaseHelper.Tables.ATTENDEES +
287 " ON (" + CalendarDatabaseHelper.Tables.ATTENDEES + "."
288 + CalendarContract.Attendees.EVENT_ID + "="
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
CalendarUtilities.java 29 import android.provider.CalendarContract.Attendees;
    [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,
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 32 import android.provider.CalendarContract.Attendees;
317 // Create email intent for emailing attendees.
598 Attendees.ATTENDEE_EMAIL, // 0
599 Attendees.ATTENDEE_STATUS, // 1
603 private static final String ATTENDEES_WHERE = Attendees.EVENT_ID + "=?";
604 private static final String ATTENDEES_SORT_ORDER = Attendees.ATTENDEE_NAME + " ASC, "
605 + Attendees.ATTENDEE_EMAIL + " ASC";
625 return context.getContentResolver().query(Attendees.CONTENT_URI,
655 // Query attendees to see if there are any to email.
681 * Creates an Intent for emailing the attendees of the event. Returns null if ther
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasSyncService.java 31 import android.provider.CalendarContract.Attendees;
    [all...]

Completed in 403 milliseconds

1 2