Lines Matching refs:projection

439      * @param projection list of {@link Root} columns to put into the cursor. If
442 public abstract Cursor queryRoots(String[] projection) throws FileNotFoundException;
453 * @param projection list of {@link Document} columns to put into the
459 public Cursor queryRecentDocuments(String rootId, String[] projection)
469 * @param projection list of {@link Document} columns to put into the
476 public abstract Cursor queryDocument(String documentId, String[] projection)
504 * @param projection list of {@link Document} columns to put into the
521 String parentDocumentId, String[] projection, String sortOrder)
545 * @param projection list of {@link Document} columns to put into the
563 String parentDocumentId, @Nullable String[] projection, @Nullable Bundle queryArgs)
567 parentDocumentId, projection, getSortClause(queryArgs));
573 String parentDocumentId, @Nullable String[] projection, @Nullable String sortOrder)
602 * @param projection list of {@link Document} columns to put into the
614 public Cursor querySearchDocuments(String rootId, String query, String[] projection)
741 public final Cursor query(Uri uri, String[] projection, String selection,
759 public Cursor query(Uri uri, String[] projection, String selection,
777 Uri uri, String[] projection, Bundle queryArgs, CancellationSignal cancellationSignal) {
781 return queryRoots(projection);
783 return queryRecentDocuments(getRootId(uri), projection);
786 getRootId(uri), getSearchDocumentsQuery(uri), projection);
790 return queryDocument(getDocumentId(uri), projection);
798 projection,
801 return queryChildDocuments(getDocumentId(uri), projection, queryArgs);