Home
last modified time | relevance | path

Searched refs:UriMatcher (Results 1 – 20 of 20) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/net/
DUriMatcherTest.java19 import android.content.UriMatcher;
45 UriMatcher matcher = new UriMatcher(ROOT); in testContentUris()
66 UriMatcher matcher = new UriMatcher(ROOT); in testContentUrisWithLeadingSlash()
85 private void checkAll(UriMatcher matcher) { in checkAll()
86 check("content://asdf", UriMatcher.NO_MATCH, matcher); in checkAll()
89 check("content://people/asdf", UriMatcher.NO_MATCH, matcher); in checkAll()
92 check("content://people/2/phones/asdf", UriMatcher.NO_MATCH, matcher); in checkAll()
95 check("content://people/2/addresses/asdf", UriMatcher.NO_MATCH, matcher); in checkAll()
98 check("content://people/2/contact-methods/asdf", UriMatcher.NO_MATCH, matcher); in checkAll()
101 check("content://calls/asdf", UriMatcher.NO_MATCH, matcher); in checkAll()
[all …]
/frameworks/base/core/java/android/content/
DUriMatcher.java122 public class UriMatcher class
130 public UriMatcher(int code) in UriMatcher() method in UriMatcher
134 mChildren = new ArrayList<UriMatcher>(); in UriMatcher()
138 private UriMatcher() in UriMatcher() method in UriMatcher
142 mChildren = new ArrayList<UriMatcher>(); in UriMatcher()
178 UriMatcher node = this; in addURI()
181 ArrayList<UriMatcher> children = node.mChildren; in addURI()
183 UriMatcher child; in addURI()
194 child = new UriMatcher(); in addURI()
225 UriMatcher node = this;
[all …]
DSearchRecentSuggestionsProvider.java115 private UriMatcher mUriMatcher;
187 mUriMatcher = new UriMatcher(UriMatcher.NO_MATCH); in setupSuggestions()
/frameworks/base/core/tests/coretests/src/android/app/
DSuggestionProvider.java23 import android.content.UriMatcher;
37 private static final UriMatcher sURLMatcher = new UriMatcher(
38 UriMatcher.NO_MATCH);
/frameworks/base/core/java/android/provider/
DSearchIndexablesProvider.java22 import android.content.UriMatcher;
68 private UriMatcher mMatcher;
81 mMatcher = new UriMatcher(UriMatcher.NO_MATCH); in attachInfo()
DDocumentsProvider.java36 import android.content.UriMatcher;
140 private UriMatcher mMatcher;
149 mMatcher = new UriMatcher(UriMatcher.NO_MATCH); in attachInfo()
/frameworks/base/core/tests/coretests/src/android/app/activity/
DLocalProvider.java19 import android.content.UriMatcher;
36 private static final UriMatcher sURLMatcher = new UriMatcher(
37 UriMatcher.NO_MATCH);
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
DSampleProvider.java5 import android.content.UriMatcher;
25 private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
DBrowserService.java23 import android.content.UriMatcher;
84 private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
/frameworks/base/core/tests/coretests/src/android/content/
DMemoryFileProvider.java53 private static final UriMatcher sURLMatcher = new UriMatcher(
54 UriMatcher.NO_MATCH);
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
DPduCache.java21 import android.content.UriMatcher;
47 private static final UriMatcher URI_MATCHER;
53 URI_MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DRecentsProvider.java26 import android.content.UriMatcher;
56 private static final UriMatcher sMatcher = new UriMatcher(UriMatcher.NO_MATCH);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DIccProvider.java20 import android.content.UriMatcher;
68 private static final UriMatcher URL_MATCHER =
69 new UriMatcher(UriMatcher.NO_MATCH);
/frameworks/base/docs/html/guide/topics/providers/
Dcontent-provider-creating.jd329 the convenience class {@link android.content.UriMatcher}, which maps content URI "patterns" to
396 The following code snippet shows how the methods in {@link android.content.UriMatcher} work.
403 The method {@link android.content.UriMatcher#addURI(String, String, int) addURI()} maps an
404 authority and path to an integer value. The method {@link android.content.UriMatcher#match(Uri)
411 // Creates a UriMatcher object.
412 private static final UriMatcher sUriMatcher;
/frameworks/base/docs/html/guide/topics/text/
Dcopy-paste.jd878 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
/frameworks/base/docs/html/training/tv/discovery/
Dsearchable.jd198 // Use the UriMatcher to see what kind of query we have and format the db query accordingly
/frameworks/base/
Dpreloaded-classes484 android.content.UriMatcher
/frameworks/base/docs/html/
Dsitemap.txt1642 http://developer.android.com/reference/android/content/UriMatcher.html
/frameworks/base/api/
Dsystem-current.txt8502 public class UriMatcher {
8503 ctor public UriMatcher(int);
Dcurrent.txt8256 public class UriMatcher {
8257 ctor public UriMatcher(int);