OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sMatcher
(Results
1 - 2
of
2
) sorted by null
/cts/tests/src/android/content/cts/
DummyProvider.java
44
private static UriMatcher
sMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
61
sMatcher
.addURI(AUTHORITY, null, MATCH_NAME_VALUE);
62
sMatcher
.addURI(AUTHORITY, MOCK_OPERATION, MATCH_MOCK_OPERATION);
131
switch (
sMatcher
.match(uri)) {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsProvider.java
56
private static final UriMatcher
sMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
66
sMatcher
.addURI(AUTHORITY, "recent", URI_RECENT);
68
sMatcher
.addURI(AUTHORITY, "state/*/*/*", URI_STATE);
70
sMatcher
.addURI(AUTHORITY, "resume/*", URI_RESUME);
175
switch (
sMatcher
.match(uri)) {
205
switch (
sMatcher
.match(uri)) {
Completed in 79 milliseconds