Home | History | Annotate | Download | only in documentsui

Lines Matching refs:DocumentInfo

22 import static com.android.documentsui.model.DocumentInfo.getCursorString;
43 import com.android.documentsui.model.DocumentInfo;
155 List<DocumentInfo> children = listChildren(parentUri);
160 List<DocumentInfo> children = listChildren(parentId);
169 List<DocumentInfo> children = listChildren(parentUri);
170 for (DocumentInfo child : children) {
188 List<DocumentInfo> children = listChildren(parentUri);
189 for (DocumentInfo child : children) {
207 List<DocumentInfo> children = listChildren(parentUri);
208 for (DocumentInfo child : children) {
224 public @Nullable DocumentInfo findFile(String parentId, String name)
226 List<DocumentInfo> children = listChildren(parentId);
227 for (DocumentInfo child : children) {
235 public DocumentInfo findDocument(String parentId, String name) throws Exception {
236 List<DocumentInfo> children = listChildren(parentId);
237 for (DocumentInfo child : children) {
245 public DocumentInfo findDocument(Uri parentUri, String name) throws Exception {
246 List<DocumentInfo> children = listChildren(parentUri);
247 for (DocumentInfo child : children) {
255 public List<DocumentInfo> listChildren(Uri parentUri) throws Exception {
260 public List<DocumentInfo> listChildren(String documentId) throws Exception {
262 List<DocumentInfo> children = new ArrayList<>();
266 children.add(DocumentInfo.fromDirectoryCursor(wrapper));
280 DocumentInfo file = findFile(parentId, fileName);