/frameworks/base/core/java/android/content/ |
D | UriMatcher.java | 121 public class UriMatcher class 129 public UriMatcher(int code) in UriMatcher() method in UriMatcher 133 mChildren = new ArrayList<UriMatcher>(); in UriMatcher() 137 private UriMatcher() in UriMatcher() method in UriMatcher 141 mChildren = new ArrayList<UriMatcher>(); in UriMatcher() 177 UriMatcher node = this; in addURI() 180 ArrayList<UriMatcher> children = node.mChildren; in addURI() 182 UriMatcher child; in addURI() 193 child = new UriMatcher(); in addURI() 222 UriMatcher node = this; [all …]
|
D | SearchRecentSuggestionsProvider.java | 115 private UriMatcher mUriMatcher; 187 mUriMatcher = new UriMatcher(UriMatcher.NO_MATCH); in setupSuggestions()
|
/frameworks/base/core/tests/coretests/src/android/net/ |
D | UriMatcherTest.java | 19 import android.content.UriMatcher; 45 UriMatcher matcher = new UriMatcher(ROOT); in testContentUris() 66 UriMatcher matcher = new UriMatcher(ROOT); in testContentUrisWithLeadingSlash() 87 UriMatcher matcher = new UriMatcher(ROOT); in testContentUrisWithLeadingSlashAndOnlySlash() 106 private void checkAll(UriMatcher matcher) { in checkAll() 107 check("content://asdf", UriMatcher.NO_MATCH, matcher); in checkAll() 111 check("content://people/asdf", UriMatcher.NO_MATCH, matcher); in checkAll() 114 check("content://people/2/phones/asdf", UriMatcher.NO_MATCH, matcher); in checkAll() 117 check("content://people/2/addresses/asdf", UriMatcher.NO_MATCH, matcher); in checkAll() 120 check("content://people/2/contact-methods/asdf", UriMatcher.NO_MATCH, matcher); in checkAll() [all …]
|
/frameworks/base/core/java/android/provider/ |
D | ContactsInternal.java | 23 import android.content.UriMatcher; 42 private static final UriMatcher sContactsUriMatcher = new UriMatcher(UriMatcher.NO_MATCH); 49 final UriMatcher matcher = sContactsUriMatcher;
|
D | SearchIndexablesProvider.java | 23 import android.content.UriMatcher; 70 private UriMatcher mMatcher; 84 mMatcher = new UriMatcher(UriMatcher.NO_MATCH); in attachInfo()
|
D | DocumentsProvider.java | 50 import android.content.UriMatcher; 156 private UriMatcher mMatcher; 191 mMatcher = new UriMatcher(UriMatcher.NO_MATCH); in registerAuthority()
|
/frameworks/base/core/tests/coretests/src/android/app/ |
D | SuggestionProvider.java | 23 import android.content.UriMatcher; 37 private static final UriMatcher sURLMatcher = new UriMatcher( 38 UriMatcher.NO_MATCH);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | FakeSmsContentProvider.java | 22 import android.content.UriMatcher; 34 private static final UriMatcher sURLMatcher = 35 new UriMatcher(UriMatcher.NO_MATCH);
|
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/ |
D | SampleProvider.java | 5 import android.content.UriMatcher; 25 private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | LocalProvider.java | 19 import android.content.UriMatcher; 49 private static final UriMatcher sURLMatcher = new UriMatcher( 50 UriMatcher.NO_MATCH);
|
/frameworks/base/core/tests/coretests/src/android/content/ |
D | MemoryFileProvider.java | 53 private static final UriMatcher sURLMatcher = new UriMatcher( 54 UriMatcher.NO_MATCH);
|
/frameworks/opt/telephony/src/java/com/google/android/mms/util/ |
D | PduCache.java | 21 import android.content.UriMatcher; 47 private static final UriMatcher URI_MATCHER; 53 URI_MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
|
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/ |
D | LoaderThrottleSupport.java | 26 import android.content.UriMatcher; 174 private final UriMatcher mUriMatcher; 189 mUriMatcher = new UriMatcher(UriMatcher.NO_MATCH); in SimpleProvider()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | IccProvider.java | 20 import android.content.UriMatcher; 67 private static final UriMatcher URL_MATCHER = 68 new UriMatcher(UriMatcher.NO_MATCH);
|
/frameworks/base/config/ |
D | preloaded-classes | 778 android.content.UriMatcher
|
D | hiddenapi-light-greylist.txt | 2011 Landroid/content/UriMatcher;->mChildren:Ljava/util/ArrayList; 2012 Landroid/content/UriMatcher;->mText:Ljava/lang/String;
|
D | hiddenapi-public-dex.txt | 9389 Landroid/content/UriMatcher; 9390 Landroid/content/UriMatcher;-><init>(I)V 9391 Landroid/content/UriMatcher;->addURI(Ljava/lang/String;Ljava/lang/String;I)V 9392 Landroid/content/UriMatcher;->match(Landroid/net/Uri;)I 9393 Landroid/content/UriMatcher;->NO_MATCH:I
|
D | boot-image-profile.txt | 17733 HSPLandroid/content/UriMatcher;-><init>(I)V 17734 HSPLandroid/content/UriMatcher;->addURI(Ljava/lang/String;Ljava/lang/String;I)V 17735 HSPLandroid/content/UriMatcher;->match(Landroid/net/Uri;)I 54575 Landroid/content/UriMatcher;
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 8254 public class UriMatcher { 8255 ctor public UriMatcher(int);
|
/frameworks/base/api/ |
D | current.txt | 10589 public class UriMatcher { 10590 ctor public UriMatcher(int);
|