OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sURIMatcher
(Results
1 - 8
of
8
) sorted by null
/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));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java
57
private static final UriMatcher
sURIMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
59
sURIMatcher
.addURI(CallLog.AUTHORITY, "calls", CALLS);
60
sURIMatcher
.addURI(CallLog.AUTHORITY, "calls/#", CALLS_ID);
61
sURIMatcher
.addURI(CallLog.AUTHORITY, "calls/filter/*", CALLS_FILTER);
134
int match =
sURIMatcher
.match(uri);
168
int match =
sURIMatcher
.match(uri);
220
final int matchedUriId =
sURIMatcher
.match(uri);
243
final int matchedUriId =
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/apps/Exchange/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/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java
83
private static final UriMatcher
sURIMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
94
sURIMatcher
.addURI("com.android.bluetooth.opp", "btopp", SHARES);
95
sURIMatcher
.addURI("com.android.bluetooth.opp", "btopp/#", SHARES_ID);
96
sURIMatcher
.addURI("com.android.bluetooth.opp", "live_folders/received",
200
int match =
sURIMatcher
.match(uri);
233
if (
sURIMatcher
.match(uri) != SHARES) {
306
int match =
sURIMatcher
.match(uri);
393
int match =
sURIMatcher
.match(uri);
434
int match =
sURIMatcher
.match(uri);
/packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsProvider.java
79
private static final UriMatcher
sURIMatcher
= buildUriMatcher();
295
switch (
sURIMatcher
.match(uri)) {
326
switch (
sURIMatcher
.match(uri)) {
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java
72
private static final UriMatcher
sURIMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
89
sURIMatcher
.addURI("downloads", "my_downloads", MY_DOWNLOADS);
90
sURIMatcher
.addURI("downloads", "my_downloads/#", MY_DOWNLOADS_ID);
91
sURIMatcher
.addURI("downloads", "all_downloads", ALL_DOWNLOADS);
92
sURIMatcher
.addURI("downloads", "all_downloads/#", ALL_DOWNLOADS_ID);
93
sURIMatcher
.addURI("downloads",
96
sURIMatcher
.addURI("downloads",
100
sURIMatcher
.addURI("downloads", "download", MY_DOWNLOADS);
101
sURIMatcher
.addURI("downloads", "download/#", MY_DOWNLOADS_ID);
102
sURIMatcher
.addURI("downloads"
[
all
...]
/packages/apps/Email/src/com/android/email/provider/
EmailProvider.java
272
private static final UriMatcher
sURIMatcher
= new UriMatcher(UriMatcher.NO_MATCH);
332
UriMatcher matcher =
sURIMatcher
;
429
int match =
sURIMatcher
.match(uri);
[
all
...]
Completed in 862 milliseconds