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

/frameworks/base/cmds/statsd/src/matchers/
H A DSimpleLogMatchingTracker.h51 const SimpleAtomMatcher mMatcher; member in class:android::os::statsd::SimpleLogMatchingTracker
/frameworks/base/core/java/android/provider/
H A DSearchIndexablesProvider.java70 private UriMatcher mMatcher; field in class:SearchIndexablesProvider
84 mMatcher = new UriMatcher(UriMatcher.NO_MATCH);
85 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_XML_RES_PATH,
87 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_RAW_PATH,
89 mMatcher.addURI(mAuthority, SearchIndexablesContract.NON_INDEXABLES_KEYS_PATH,
91 mMatcher.addURI(mAuthority, SearchIndexablesContract.SITE_MAP_PAIRS_PATH,
111 switch (mMatcher.match(uri)) {
171 switch (mMatcher.match(uri)) {
H A DDocumentsProvider.java156 private UriMatcher mMatcher; field in class:DocumentsProvider
191 mMatcher = new UriMatcher(UriMatcher.NO_MATCH);
192 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
193 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
194 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
195 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
196 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
197 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
198 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
199 mMatcher
[all...]
/frameworks/base/cmds/statsd/src/
H A DFieldValue.h218 Matcher(const Field& matcher, int32_t mask) : mMatcher(matcher), mMask(mask){};
220 const Field mMatcher; member in struct:android::os::statsd::Matcher
224 return mMatcher;
240 return mMatcher.getDepth() == 2 && getRawMaskAtDepth(1) == 0x7f;
244 if (mMatcher.getDepth() == 2 && mMatcher.getRawPosAtDepth(1) == 0) {
245 (*prefix) = mMatcher.getPrefix(1);
252 return mMatcher != that.getMatcher() || mMask != that.getMask();
256 return mMatcher == that.mMatcher
[all...]

Completed in 1063 milliseconds