Home | History | Annotate | Download | only in provider

Lines Matching defs:SELECTION

625      * {@link ContentUris#withAppendedId}) or as the first selection item--the
626 * selection should start with "_id=?" and the first selectionArg should be
627 * the _id of the calendar. Calendars may also be updated using a selection
633 * on the Uri or using any standard selection. Deleting a calendar should
639 * matches the query selection, or at most a single row if the {@link #_ID}
875 return cr.query(CONTENT_URI, projection, ATTENDEES_WHERE, attArgs /* selection args */,
1547 * {@link ContentUris#withAppendedId}) or as the first selection item--the
1548 * selection should start with "_id=?" and the first selectionArg should be
1549 * the _id of the event. Updates may also be done using a selection and no
1555 * id on the Uri or using any standard selection. If an appended id is used
1556 * a selection is not allowed. There are two versions of delete: as an app
1563 * will be one row returned for each event that matches the query selection,
2009 private static final String SELECTION = "selected=1";
2039 return cr.query(builder.build(), projection, SELECTION,
2040 null /* selection args */, STARTDAY);
2116 return cr.query(CONTENT_URI, projection, REMINDERS_WHERE, remArgs /*selection args*/,
2292 String selection = ALARM_TIME + ">=" + millis;