Home | History | Annotate | Download | only in documentsui

Lines Matching defs:doc

195     public void refreshDocument(DocumentInfo doc, BooleanConsumer callback) {
199 doc,
204 task.executeOnExecutor(mExecutors.lookup(doc == null ? null : doc.authority));
230 public boolean openItem(ItemDetails doc, @ViewType int type, @ViewType int fallback) {
235 public void showInspector(DocumentInfo doc) {
240 public void springOpenDirectory(DocumentInfo doc) {
316 public void showChooserForDoc(DocumentInfo doc) {
317 throw new UnsupportedOperationException("Show chooser for doc not supported!");
333 public void openContainerDocument(DocumentInfo doc) {
334 assert(doc.isContainer());
338 doc.derivedUri,
339 (@Nullable DocumentStack stack) -> openFolderInSearchResult(stack, doc));
341 openChildContainer(doc);
345 private void openFolderInSearchResult(@Nullable DocumentStack stack, DocumentInfo doc) {
354 mState.stack.push(doc);
385 private void openChildContainer(DocumentInfo doc) {
388 if (doc.isDirectory()) {
390 currentDoc = doc;
391 } else if (doc.isArchive()) {
393 currentDoc = mDocs.getArchiveDocument(doc.derivedUri);
619 void onDocumentPicked(DocumentInfo doc);