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

/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DBmsgTokenizer.java29 private final Matcher mMatcher; field in class:BmsgTokenizer
69 mMatcher = Pattern.compile("(([^:]*):(.*))?\r\n").matcher(str);
70 mPos = mMatcher.regionStart();
77 mMatcher.region(mPos, mMatcher.regionEnd());
79 if (!mMatcher.lookingAt()) {
87 mPos = mMatcher.end();
89 if (mMatcher.group(1) != null) {
94 return new Property(mMatcher.group(2), mMatcher
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DBmsgTokenizer.java29 private final Matcher mMatcher; field in class:BmsgTokenizer
69 mMatcher = Pattern.compile("(([^:]*):(.*))?\r\n").matcher(str);
70 mPos = mMatcher.regionStart();
77 mMatcher.region(mPos, mMatcher.regionEnd());
79 if (!mMatcher.lookingAt()) {
87 mPos = mMatcher.end();
89 if (mMatcher.group(1) != null) {
94 return new Property(mMatcher.group(2), mMatcher
[all...]
/frameworks/base/core/java/android/provider/
H A DSearchIndexablesProvider.java68 private UriMatcher mMatcher; field in class:SearchIndexablesProvider
81 mMatcher = new UriMatcher(UriMatcher.NO_MATCH);
82 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_XML_RES_PATH,
84 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_RAW_PATH,
86 mMatcher.addURI(mAuthority, SearchIndexablesContract.NON_INDEXABLES_KEYS_PATH,
106 switch (mMatcher.match(uri)) {
153 switch (mMatcher.match(uri)) {
H A DDocumentsProvider.java140 private UriMatcher mMatcher; field in class:DocumentsProvider
149 mMatcher = new UriMatcher(UriMatcher.NO_MATCH);
150 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
151 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
152 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
153 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
154 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
155 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
156 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
157 mMatcher
[all...]

Completed in 94 milliseconds