Home
last modified time | relevance | path

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

/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
DBmsgTokenizer.java29 private final Matcher mMatcher; field in BmsgTokenizer
69 mMatcher = Pattern.compile("(([^:]*):(.*))?\r\n").matcher(str); in BmsgTokenizer()
70 mPos = mMatcher.regionStart(); in BmsgTokenizer()
77 mMatcher.region(mPos, mMatcher.regionEnd()); in next()
79 if (!mMatcher.lookingAt()) { in next()
87 mPos = mMatcher.end(); in next()
89 if (mMatcher.group(1) != null) { in next()
94 return new Property(mMatcher.group(2), mMatcher.group(3)); in next()
/frameworks/base/core/java/android/provider/
DSearchIndexablesProvider.java70 private UriMatcher mMatcher; field in SearchIndexablesProvider
83 mMatcher = new UriMatcher(UriMatcher.NO_MATCH); in attachInfo()
84 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_XML_RES_PATH, in attachInfo()
86 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_RAW_PATH, in attachInfo()
88 mMatcher.addURI(mAuthority, SearchIndexablesContract.NON_INDEXABLES_KEYS_PATH, in attachInfo()
108 switch (mMatcher.match(uri)) { in query()
155 switch (mMatcher.match(uri)) { in getType()
DDocumentsProvider.java157 private UriMatcher mMatcher; field in DocumentsProvider
192 mMatcher = new UriMatcher(UriMatcher.NO_MATCH); in registerAuthority()
193 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS); in registerAuthority()
194 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT); in registerAuthority()
195 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT); in registerAuthority()
196 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH); in registerAuthority()
197 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT); in registerAuthority()
198 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN); in registerAuthority()
199 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE); in registerAuthority()
200 mMatcher.addURI(mAuthority, "tree/*/document/*/children", MATCH_CHILDREN_TREE); in registerAuthority()
[all …]