Home | History | Annotate | Download | only in calendar

Lines Matching refs:selection

284      * that match the given selection. This is a blocking function and
296 * @param selection Filter on the query as an SQL WHERE statement
297 * @param selectionArgs Args to replace any '?'s in the selection
299 * @return A Cursor of instances matching the selection
302 int startDay, int endDay, String selection, String[] selectionArgs, String orderBy) {
310 if (TextUtils.isEmpty(selection)) {
311 selection = WHERE_CALENDARS_SELECTED;
314 selection = "(" + selection + ") AND " + WHERE_CALENDARS_SELECTED;
322 return cr.query(builder.build(), projection, selection, selectionArgs,