OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sUriMatcher
(Results
1 - 11
of
11
) sorted by null
/cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1/
EphemeralProvider.java
32
private static final UriMatcher
sUriMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
34
sUriMatcher
.addURI("com.android.cts.ephemeralapp1.provider", "table", 1);
50
return (
sUriMatcher
.match(uri) != 1) ? null : sCursor;
/cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp2/src/com/android/cts/ephemeralapp2/
EphemeralProvider.java
32
private static final UriMatcher
sUriMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
34
sUriMatcher
.addURI("com.android.cts.ephemeralapp2.provider", "table", 1);
50
return (
sUriMatcher
.match(uri) != 1) ? null : sCursor;
/cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/NormalApp/src/com/android/cts/normalapp/
NormalProvider.java
32
private static final UriMatcher
sUriMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
34
sUriMatcher
.addURI("com.android.cts.normalapp.provider", "table", 1);
50
return (
sUriMatcher
.match(uri) != 1) ? null : sCursor;
ExposedProvider.java
36
private static final UriMatcher
sUriMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
38
sUriMatcher
.addURI("com.android.cts.normalapp.exposed.provider", "table", 1);
71
return (
sUriMatcher
.match(uri) != 1) ? null : sCursor;
/developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java
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)
[
all
...]
/developers/build/prebuilts/gradle/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageProvider.java
53
private static final UriMatcher
sUriMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
56
sUriMatcher
.addURI(ImageContract.AUTHORITY, "images", IMAGES);
57
sUriMatcher
.addURI(ImageContract.AUTHORITY, "images/#", IMAGE_ID);
89
int match =
sUriMatcher
.match(uri);
141
int match =
sUriMatcher
.match(uri);
/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java
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)
[
all
...]
/developers/samples/android/content/documentsUi/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageProvider.java
53
private static final UriMatcher
sUriMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
56
sUriMatcher
.addURI(ImageContract.AUTHORITY, "images", IMAGES);
57
sUriMatcher
.addURI(ImageContract.AUTHORITY, "images/#", IMAGE_ID);
89
int match =
sUriMatcher
.match(uri);
141
int match =
sUriMatcher
.match(uri);
/development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java
97
private static final UriMatcher
sUriMatcher
;
112
sUriMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
115
sUriMatcher
.addURI(NotePad.AUTHORITY, "notes", NOTES);
119
sUriMatcher
.addURI(NotePad.AUTHORITY, "notes/#", NOTE_ID);
236
switch (
sUriMatcher
.match(uri)) {
307
switch (
sUriMatcher
.match(uri)) {
346
switch (
sUriMatcher
.match(uri)) {
469
if (
sUriMatcher
.match(uri) != NOTES) {
559
switch (
sUriMatcher
.match(uri)) {
644
switch (
sUriMatcher
.match(uri))
[
all
...]
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java
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)
[
all
...]
/development/samples/training/threadsample/src/com/example/android/threadsample/
DataProvider.java
77
private static final UriMatcher
sUriMatcher
;
90
sUriMatcher
= new UriMatcher(0);
100
sUriMatcher
.addURI(
106
sUriMatcher
.addURI(
250
switch (
sUriMatcher
.match(uri)) {
295
return sMimeTypes.get(
sUriMatcher
.match(uri));
309
switch (
sUriMatcher
.match(uri)) {
355
switch (
sUriMatcher
.match(uri)) {
451
switch (
sUriMatcher
.match(uri)) {
Completed in 1222 milliseconds