Lines Matching refs:sUriMatcher
39 // this ContentProvider is defined using sUriMatcher.addURI(), and associated with one of these
42 // When a incoming URI is run through sUriMatcher, it will be tested against the defined
57 private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
59 sUriMatcher.addURI(AUTHORITY, "entries", ROUTE_ENTRIES);
60 sUriMatcher.addURI(AUTHORITY, "entries/*", ROUTE_ENTRIES_ID);
74 final int match = sUriMatcher.match(uri);
96 int uriMatch = sUriMatcher.match(uri);
125 final int match = sUriMatcher.match(uri);
151 final int match = sUriMatcher.match(uri);
183 final int match = sUriMatcher.match(uri);