HomeSort by relevance Sort by last modified time
    Searched refs:UriMatcher (Results 1 - 25 of 64) sorted by null

1 2 3

  /frameworks/base/core/java/android/content/
UriMatcher.java 28 <p>To use this class, build up a tree of <code>UriMatcher</code> objects.
51 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
122 public class UriMatcher
130 public UriMatcher(int code)
134 mChildren = new ArrayList<UriMatcher>();
138 private UriMatcher()
142 mChildren = new ArrayList<UriMatcher>();
178 UriMatcher node = this
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
UriMatcherTest.java 19 import android.content.UriMatcher;
45 UriMatcher matcher = new UriMatcher(ROOT);
66 UriMatcher matcher = new UriMatcher(ROOT);
85 private void checkAll(UriMatcher matcher) {
86 check("content://asdf", UriMatcher.NO_MATCH, matcher);
89 check("content://people/asdf", UriMatcher.NO_MATCH, matcher);
92 check("content://people/2/phones/asdf", UriMatcher.NO_MATCH, matcher);
95 check("content://people/2/addresses/asdf", UriMatcher.NO_MATCH, matcher)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
TypedUriMatcherImpl.java 18 import android.content.UriMatcher;
30 private final UriMatcher mUriMatcher;
35 mUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
55 if (match == UriMatcher.NO_MATCH) {
  /cts/tests/tests/content/src/android/content/cts/
UriMatcherTest.java 19 import android.content.UriMatcher;
24 UriMatcher mUriMatcher;
45 mUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
49 new UriMatcher(UriMatcher.NO_MATCH);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSuggestionProvider.java 29 import android.content.UriMatcher;
42 // UriMatcher constants
46 private UriMatcher mUriMatcher;
118 private UriMatcher buildUriMatcher(Context context) {
120 UriMatcher matcher = new UriMatcher(UriMatcher.NO_MATCH);
  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 23 import android.content.UriMatcher;
37 private static final UriMatcher sURLMatcher = new UriMatcher(
38 UriMatcher.NO_MATCH);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 23 import android.content.UriMatcher;
45 // UriMatcher stuff
50 private static final UriMatcher sURIMatcher = buildUriMatcher();
53 * Builds up a UriMatcher for search suggestion and shortcut refresh queries.
55 private static UriMatcher buildUriMatcher() {
56 UriMatcher matcher = new UriMatcher(UriMatcher.NO_MATCH);
92 // Use the UriMatcher to see what kind of query we have and format the db query accordingly
  /cts/tests/src/android/content/cts/
DummyProvider.java 24 import android.content.UriMatcher;
44 private static UriMatcher sMatcher = new UriMatcher(UriMatcher.NO_MATCH);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 21 import android.content.UriMatcher;
48 private static final UriMatcher URI_MATCHER;
50 URI_MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
119 // Our UriMatcher will parse the URI to decide whether the
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 19 import android.content.UriMatcher;
36 private static final UriMatcher sURLMatcher = new UriMatcher(
37 UriMatcher.NO_MATCH);
  /frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
SampleProvider.java 5 import android.content.UriMatcher;
24 // Creates a UriMatcher object.
25 private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmProvider.java 22 import android.content.UriMatcher;
35 private static final UriMatcher sURLMatcher = new UriMatcher(
36 UriMatcher.NO_MATCH);
  /packages/apps/Mms/src/com/android/mms/
TempFileProvider.java 12 import android.content.UriMatcher;
31 private static final UriMatcher sURLMatcher = new UriMatcher(UriMatcher.NO_MATCH);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutsProvider.java 24 import android.content.UriMatcher;
44 private UriMatcher mUriMatcher;
52 private UriMatcher buildUriMatcher() {
54 UriMatcher matcher = new UriMatcher(UriMatcher.NO_MATCH);
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/
MockProvider.java 22 import android.content.UriMatcher;
66 /*package*/ static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
126 if (match == UriMatcher.NO_MATCH) {
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 22 import android.content.UriMatcher;
66 /*package*/ static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
126 if (match == UriMatcher.NO_MATCH) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowUriMatcher.java 7 import android.content.UriMatcher;
13 @Implements(UriMatcher.class)
17 public int code = UriMatcher.NO_MATCH;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
UriMatcherTest.java 3 import android.content.UriMatcher;
22 UriMatcher matcher;
28 matcher = new UriMatcher(NO_MATCH);
  /frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProvider.java 53 private static final UriMatcher sURLMatcher = new UriMatcher(
54 UriMatcher.NO_MATCH);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileAwareUriMatcher.java 19 import android.content.UriMatcher;
33 public class ProfileAwareUriMatcher extends UriMatcher {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 24 import android.content.UriMatcher;
59 private static final UriMatcher URI_MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapter/src/main/java/com/example/android/network/sync/basicsyncadapter/provider/
FeedProvider.java 22 import android.content.UriMatcher;
55 * UriMatcher, used to decode incoming URIs.
57 private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
  /frameworks/opt/mms/src/java/com/google/android/mms/util/
PduCache.java 21 import android.content.UriMatcher;
47 private static final UriMatcher URI_MATCHER;
53 URI_MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
  /packages/apps/Browser/src/com/android/browser/provider/
SnapshotProvider.java 22 import android.content.UriMatcher;
60 static final UriMatcher URI_MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastContentProvider.java 23 import android.content.UriMatcher;
42 private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);

Completed in 1409 milliseconds

1 2 3