Searched refs:treeUri (Results 1 – 4 of 4) sorted by relevance
/frameworks/support/tests/java/android/support/v4/provider/ |
D | DocumentFileTest.java | 40 private Uri treeUri; field in DocumentFileTest 66 treeUri = perms.get(0).getUri(); in setUp() 127 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri)); in testSimple() local 159 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri)); in testTraverse() local 190 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri)); in testReadAndWrite() local 215 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri)); in testMimes() local 259 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri)); in testCreate() local 289 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri)); in testDelete() local 334 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri)); in testRename() local
|
/frameworks/support/v4/api21/android/support/v4/provider/ |
D | DocumentsContractApi21.java | 41 public static Uri prepareTreeUri(Uri treeUri) { in prepareTreeUri() argument 42 return DocumentsContract.buildDocumentUriUsingTree(treeUri, in prepareTreeUri() 43 DocumentsContract.getTreeDocumentId(treeUri)); in prepareTreeUri()
|
/frameworks/support/v4/java/android/support/v4/provider/ |
D | DocumentFile.java | 127 public static DocumentFile fromTreeUri(Context context, Uri treeUri) { in fromTreeUri() argument 131 DocumentsContractApi21.prepareTreeUri(treeUri)); in fromTreeUri()
|
/frameworks/base/core/java/android/provider/ |
D | DocumentsContract.java | 756 public static Uri buildDocumentUriUsingTree(Uri treeUri, String documentId) { in buildDocumentUriUsingTree() argument 758 .authority(treeUri.getAuthority()).appendPath(PATH_TREE) in buildDocumentUriUsingTree() 759 .appendPath(getTreeDocumentId(treeUri)).appendPath(PATH_DOCUMENT) in buildDocumentUriUsingTree() 813 public static Uri buildChildDocumentsUriUsingTree(Uri treeUri, String parentDocumentId) { in buildChildDocumentsUriUsingTree() argument 815 .authority(treeUri.getAuthority()).appendPath(PATH_TREE) in buildChildDocumentsUriUsingTree() 816 .appendPath(getTreeDocumentId(treeUri)).appendPath(PATH_DOCUMENT) in buildChildDocumentsUriUsingTree()
|