HomeSort by relevance Sort by last modified time
    Searched refs:sURIMatcher (Results 1 - 11 of 11) sorted by null

  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/
MockProvider.java 66 /*package*/ static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
125 int match = sURIMatcher.match(uri);
127 sURIMatcher.addURI(AUTHORITY, table, TABLE);
128 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD);
144 final int match = sURIMatcher.match(uri(uri));
182 final int match = sURIMatcher.match(uri(uri));
MockProviderTests.java 114 assertEquals(MockProvider.TABLE, MockProvider.sURIMatcher.match(MockProvider.uri(uri)));
116 MockProvider.sURIMatcher.match(MockProvider.uri(results[0].uri)));
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 66 /*package*/ static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
125 int match = sURIMatcher.match(uri);
127 sURIMatcher.addURI(AUTHORITY, table, TABLE);
128 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD);
144 final int match = sURIMatcher.match(uri(uri));
182 final int match = sURIMatcher.match(uri(uri));
MockProviderTests.java 114 assertEquals(MockProvider.TABLE, MockProvider.sURIMatcher.match(MockProvider.uri(uri)));
116 MockProvider.sURIMatcher.match(MockProvider.uri(results[0].uri)));
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 85 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
96 sURIMatcher.addURI("com.android.bluetooth.opp", "btopp", SHARES);
97 sURIMatcher.addURI("com.android.bluetooth.opp", "btopp/#", SHARES_ID);
98 sURIMatcher.addURI("com.android.bluetooth.opp", "live_folders/received",
202 int match = sURIMatcher.match(uri);
235 if (sURIMatcher.match(uri) != SHARES) {
309 int match = sURIMatcher.match(uri);
396 int match = sURIMatcher.match(uri);
437 int match = sURIMatcher.match(uri);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 50 private static final UriMatcher sURIMatcher = buildUriMatcher();
93 switch (sURIMatcher.match(uri)) {
172 switch (sURIMatcher.match(uri)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 58 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
60 sURIMatcher.addURI(CallLog.AUTHORITY, "calls", CALLS);
61 sURIMatcher.addURI(CallLog.AUTHORITY, "calls/#", CALLS_ID);
62 sURIMatcher.addURI(CallLog.AUTHORITY, "calls/filter/*", CALLS_FILTER);
136 final int match = sURIMatcher.match(uri);
202 int match = sURIMatcher.match(uri);
254 final int matchedUriId = sURIMatcher.match(uri);
277 final int matchedUriId = sURIMatcher.match(uri);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 73 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
77 sURIMatcher.addURI(EXCHANGE_GAL_AUTHORITY, "directories", GAL_DIRECTORIES);
78 sURIMatcher.addURI(EXCHANGE_GAL_AUTHORITY, "contacts/filter/*", GAL_FILTER);
79 sURIMatcher.addURI(EXCHANGE_GAL_AUTHORITY, "contacts/lookup/*/entities", GAL_CONTACT);
80 sURIMatcher.addURI(EXCHANGE_GAL_AUTHORITY, "contacts/lookup/*/#/entities",
82 sURIMatcher.addURI(EXCHANGE_GAL_AUTHORITY, "data/emails/filter/*", GAL_EMAIL_FILTER);
201 int match = sURIMatcher.match(uri);
419 int match = sURIMatcher.match(uri);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 82 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
99 sURIMatcher.addURI("downloads", "my_downloads", MY_DOWNLOADS);
100 sURIMatcher.addURI("downloads", "my_downloads/#", MY_DOWNLOADS_ID);
101 sURIMatcher.addURI("downloads", "all_downloads", ALL_DOWNLOADS);
102 sURIMatcher.addURI("downloads", "all_downloads/#", ALL_DOWNLOADS_ID);
103 sURIMatcher.addURI("downloads",
106 sURIMatcher.addURI("downloads",
110 sURIMatcher.addURI("downloads", "download", MY_DOWNLOADS);
111 sURIMatcher.addURI("downloads", "download/#", MY_DOWNLOADS_ID);
112 sURIMatcher.addURI("downloads"
    [all...]
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsProvider.java 80 private static final UriMatcher sURIMatcher = buildUriMatcher();
295 switch (sURIMatcher.match(uri)) {
332 switch (sURIMatcher.match(uri)) {
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 267 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
304 UriMatcher matcher = sURIMatcher;
426 int match = sURIMatcher.match(uri);
    [all...]

Completed in 125 milliseconds