Home
last modified time | relevance | path

Searched refs:getMatchingRoots (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
DRootsCacheTest.java19 import static com.android.documentsui.RootsCache.getMatchingRoots;
66 getMatchingRoots(mRoots, mState)); in testMatchingRoots_Everything()
80 getMatchingRoots(mRoots, mState)); in testMatchingRoots_DirectoryCopy()
87 getMatchingRoots(mRoots, mState)); in testMatchingRoots_PngOrWild()
94 getMatchingRoots(mRoots, mState)); in testMatchingRoots_AudioWild()
101 getMatchingRoots(mRoots, mState)); in testMatchingRoots_AudioWildOrImageWild()
108 getMatchingRoots(mRoots, mState)); in testMatchingRoots_AudioSpecific()
115 getMatchingRoots(mRoots, mState)); in testMatchingRoots_Document()
122 getMatchingRoots(mRoots, mState)); in testMatchingRoots_Application()
129 getMatchingRoots(mRoots, mState)); in testMatchingRoots_FlacOrPng()
[all …]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DRootsCache.java419 return getMatchingRoots(mRoots.values(), state); in getMatchingRootsBlocking()
440 for (RootInfo root : getMatchingRoots(getRootsBlocking(), state)) { in getDefaultRootBlocking()
449 static List<RootInfo> getMatchingRoots(Collection<RootInfo> roots, State state) { in getMatchingRoots() method in RootsCache