Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/provider/
DDocumentsProvider.java131 private UriMatcher mMatcher; field in DocumentsProvider
140 mMatcher = new UriMatcher(UriMatcher.NO_MATCH); in attachInfo()
141 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS); in attachInfo()
142 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT); in attachInfo()
143 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT); in attachInfo()
144 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH); in attachInfo()
145 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT); in attachInfo()
146 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN); in attachInfo()
414 switch (mMatcher.match(uri)) { in query()
448 switch (mMatcher.match(uri)) { in getType()