Home | History | Annotate | Download | only in provider

Lines Matching refs:SELECTION

222          * @param selection the rows to delete
225 public static int delete(ContentResolver cr, String selection, String[] selectionArgs)
227 return cr.delete(CONTENT_URI, selection, selectionArgs);
279 * Should the calendar be hidden in the calendar selection panel?
973 * If updating a property, this must be provided as the selection. All
1076 public static final String SELECTION = "selected=1";
1095 return cr.query(builder.build(), PROJECTION, SELECTION,
1096 null /* selection args */, STARTDAY);
1252 String selection, String[] selectionArgs, String sortOrder) {
1253 return cr.query(CONTENT_URI, projection, selection, selectionArgs,
1267 String selection = ALARM_TIME + ">=" + millis;