Home | History | Annotate | Download | only in cts

Lines Matching defs:IntentFilter

39 import android.content.IntentFilter;
40 import android.content.IntentFilter.AuthorityEntry;
41 import android.content.IntentFilter.MalformedMimeTypeException;
58 private IntentFilter mIntentFilter;
72 mIntentFilter = new IntentFilter();
77 IntentFilter filter = new IntentFilter();
80 filter = new IntentFilter(ACTION);
83 final IntentFilter actionTypeFilter = new IntentFilter(ACTION, DATA_TYPE);
86 filter = new IntentFilter(actionTypeFilter);
91 new IntentFilter(ACTION, dataType);
103 private void verifyContent(IntentFilter filter, String action, String dataType) {
134 IntentFilter filter = new Match(null, new String[] { "category1" }, null, null, null, null);
136 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, null, null, null, null),
137 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, null,
139 new MatchCondition(IntentFilter.NO_MATCH_CATEGORY, null,
141 new MatchCondition(IntentFilter.NO_MATCH_CATEGORY, null, new String[] {
146 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, null, null, null, null),
147 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, null,
149 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, null,
151 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, null, new String[] {
153 new MatchCondition(IntentFilter.NO_MATCH_CATEGORY, null,
155 new MatchCondition(IntentFilter.NO_MATCH_CATEGORY, null, new String[] {
160 IntentFilter filter = new Match(null, null, new String[] { "which1/what1" }, null, null,
163 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, null, null),
164 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/what1",
166 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/*", null),
167 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "*/*", null),
168 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, "which2/what2", null),
169 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, "which2/*", null),
170 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, "which1/what2", null),
176 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, null, null),
177 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/what1",
179 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/*", null),
180 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "*/*", null),
181 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which2/what2",
183 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which2/*", null),
184 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, "which1/what2", null),
185 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, "which3/what3", null),
190 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, null, null),
191 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/what1",
193 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/*", null),
194 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "*/*", null),
195 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, "which2/what2", null),
196 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, "which2/*", null),
197 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/what2",
199 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, "which3/what3", null),
204 new MatchCondition(IntentFilter.NO_MATCH_TYPE, null, null, null, null),
205 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/what1",
207 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/*", null),
208 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "*/*", null),
209 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which2/what2",
211 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which2/*", null),
212 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which1/what2",
214 new MatchCondition(IntentFilter.MATCH_CATEGORY_TYPE, null, null, "which3/what3",
240 IntentFilter filter = new Match(null, null, null, new String[] { "scheme1" }, null, null);
242 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
243 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME, null, null, null,
245 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, "scheme2:foo"), });
249 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
250 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME, null, null, null,
252 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME, null, null, null,
254 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, "scheme3:foo"), });
258 IntentFilter filter = IntentFilter.create(ACTION, DATA_TYPE);
265 IntentFilter filter = new Match(null, null, null, new String[]{"scheme"},
269 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
270 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
272 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
274 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
276 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
282 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
283 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
285 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
287 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
289 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
295 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
296 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
298 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
300 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
306 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
307 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
309 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
311 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
317 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
318 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
320 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
322 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
324 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
326 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
328 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
334 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
335 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
337 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
339 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
341 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
343 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
345 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
351 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
352 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
354 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
356 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
358 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
360 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
362 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
368 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
369 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
371 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
373 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
375 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
377 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
379 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
385 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
386 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
388 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
390 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
392 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
394 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
396 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
402 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
403 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
405 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
407 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
409 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
411 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
413 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
419 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
420 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
422 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
424 new MatchCondition(IntentFilter.MATCH_CATEGORY_SCHEME_SPECIFIC_PART, null, null, null,
426 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
452 IntentFilter filter = new Match(null, null, null, new String[] { "scheme1" },
455 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
456 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, "scheme1:foo"),
457 new MatchCondition(IntentFilter.MATCH_CATEGORY_HOST, null, null, null,
459 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
461 new MatchCondition(IntentFilter.MATCH_CATEGORY_HOST, null, null, null,
467 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
468 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, "scheme1:foo"),
469 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
471 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
473 new MatchCondition(IntentFilter.MATCH_CATEGORY_PORT, null, null, null,
475 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
481 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
482 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, "scheme1:foo"),
483 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
485 new MatchCondition(IntentFilter.MATCH_CATEGORY_HOST, null, null, null,
487 new MatchCondition(IntentFilter.MATCH_CATEGORY_PORT, null, null, null,
489 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
512 int expected = IntentFilter.MATCH_CATEGORY_EMPTY + IntentFilter.MATCH_ADJUSTMENT_NORMAL;
516 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.matchData(null, DATA_SCHEME, URI));
517 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.matchData(DATA_TYPE, DATA_SCHEME,
521 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.matchData(DATA_TYPE,
523 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.matchData(DATA_TYPE, "", URI));
525 expected = IntentFilter.MATCH_CATEGORY_SCHEME + IntentFilter.MATCH_ADJUSTMENT_NORMAL;
527 assertEquals(IntentFilter.NO_MATCH_TYPE, mIntentFilter.matchData(DATA_TYPE, DATA_SCHEME,
531 assertEquals(IntentFilter.MATCH_CATEGORY_TYPE + IntentFilter.MATCH_ADJUSTMENT_NORMAL,
535 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.matchData(null, DATA_SCHEME, URI));
539 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.matchData(null, DATA_SCHEME, uri));
560 IntentFilter filter = new Match(new String[] { "action1" }, null, null, null, null, null);
562 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, null, null, null, null),
563 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, "action1", null, null, null),
564 new MatchCondition(IntentFilter.NO_MATCH_ACTION, "action2", null, null, null), });
568 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, null, null, null, null),
569 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, "action1", null, null, null),
570 new MatchCondition(IntentFilter.MATCH_CATEGORY_EMPTY, "action2", null, null, null),
571 new MatchCondition(IntentFilter.NO_MATCH_ACTION, "action3", null, null, null), });
593 final IntentFilter intentFilter = new IntentFilter();
594 intentFilter.readFromXml(parser);
595 assertEquals(ACTION, intentFilter.getAction(0));
596 assertEquals(CATEGORY, intentFilter.getCategory(0));
597 assertEquals(DATA_TYPE, intentFilter.getDataType(0));
598 assertEquals(DATA_SCHEME, intentFilter.getDataScheme(0));
599 intentFilter.getDataPath(0).getPath());
600 assertEquals(HOST, intentFilter.getDataAuthority(0).getHost());
601 assertEquals(PORT, intentFilter.getDataAuthority(0).getPort());
623 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.matchDataAuthority(null));
626 assertEquals(IntentFilter.MATCH_CATEGORY_PORT, mIntentFilter.matchDataAuthority(uri));
688 mIntentFilter = new IntentFilter();
707 mIntentFilter = new IntentFilter();
728 IntentFilter filter = new Match(null, null, null, new String[] { "scheme1" },
731 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
732 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, "scheme1:foo"),
733 new MatchCondition(IntentFilter.MATCH_CATEGORY_HOST, null, null, null,
735 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
737 new MatchCondition(IntentFilter.MATCH_CATEGORY_HOST, null, null, null,
743 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
744 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, "scheme1:foo"),
745 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
747 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
749 new MatchCondition(IntentFilter.MATCH_CATEGORY_PORT, null, null, null,
751 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
757 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
758 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, "scheme1:foo"),
759 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
761 new MatchCondition(IntentFilter.MATCH_CATEGORY_HOST, null, null, null,
763 new MatchCondition(IntentFilter.MATCH_CATEGORY_PORT, null, null, null,
765 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
773 assertEquals(IntentFilter.NO_MATCH_ACTION, mIntentFilter.match(resolver, intent, true,
776 assertEquals(IntentFilter.MATCH_CATEGORY_EMPTY + IntentFilter.MATCH_ADJUSTMENT_NORMAL,
781 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(resolver, intent, true, null));
783 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(resolver, intent, true, null));
785 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(resolver, intent, true, null));
789 assertEquals(IntentFilter.MATCH_CATEGORY_TYPE + IntentFilter.MATCH_ADJUSTMENT_NORMAL,
791 assertEquals(IntentFilter.MATCH_CATEGORY_TYPE + IntentFilter.MATCH_ADJUSTMENT_NORMAL,
794 assertEquals(IntentFilter.NO_MATCH_CATEGORY, mIntentFilter.match(resolver, intent, true,
797 assertEquals(IntentFilter.MATCH_CATEGORY_TYPE + IntentFilter.MATCH_ADJUSTMENT_NORMAL,
801 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(resolver, intent, true, null));
807 assertEquals(IntentFilter.NO_MATCH_ACTION, mIntentFilter.match(ACTION, null, null, null,
811 assertEquals(IntentFilter.MATCH_CATEGORY_EMPTY + IntentFilter.MATCH_ADJUSTMENT_NORMAL,
813 assertEquals(IntentFilter.MATCH_CATEGORY_EMPTY + IntentFilter.MATCH_ADJUSTMENT_NORMAL,
816 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.matchData(null, DATA_SCHEME, URI));
818 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, DATA_TYPE,
822 assertEquals(IntentFilter.NO_MATCH_TYPE, mIntentFilter.match(ACTION, DATA_TYPE,
824 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, DATA_TYPE, "", URI,
828 assertEquals(IntentFilter.MATCH_CATEGORY_TYPE + IntentFilter.MATCH_ADJUSTMENT_NORMAL,
831 assertEquals(IntentFilter.NO_MATCH_TYPE, mIntentFilter.match(ACTION, null, DATA_SCHEME,
834 assertEquals(IntentFilter.NO_MATCH_TYPE, mIntentFilter.match(ACTION, null, DATA_SCHEME,
838 assertEquals(IntentFilter.NO_MATCH_CATEGORY, mIntentFilter.match(ACTION, DATA_TYPE,
842 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, null, DATA_SCHEME,
844 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, DATA_TYPE,
849 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, DATA_TYPE,
851 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, DATA_TYPE,
854 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, DATA_TYPE,
857 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, DATA_TYPE,
860 assertEquals(IntentFilter.NO_MATCH_DATA, mIntentFilter.match(ACTION, DATA_TYPE,
874 IntentFilter target = IntentFilter.CREATOR.createFromParcel(parcel);
897 private static class Match extends IntentFilter {
914 } catch (IntentFilter.MalformedMimeTypeException e) {
970 private static void checkMatches(IntentFilter filter, MatchCondition[] results) {
984 if ((result & IntentFilter.MATCH_CATEGORY_MASK) !=
985 (mc.result & IntentFilter.MATCH_CATEGORY_MASK)) {
987 msg.append("Error matching against IntentFilter:\n");
1013 IntentFilter filter = new Match(null, null, null,
1018 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1019 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1021 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1023 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1025 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1031 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1032 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1034 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1036 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1038 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1044 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1045 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1047 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1049 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1055 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1056 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1058 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1060 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1066 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1067 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1069 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1071 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1073 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1075 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1077 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1083 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1084 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1086 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1088 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1090 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1092 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1094 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1100 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1101 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1103 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1105 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1107 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1109 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1111 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1117 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1118 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1120 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1122 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1124 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1126 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1128 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1134 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1135 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1137 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1139 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1141 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1143 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1145 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1151 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1152 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1154 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1156 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1158 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1160 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1162 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1168 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null, null),
1169 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1171 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1173 new MatchCondition(IntentFilter.MATCH_CATEGORY_PATH, null, null, null,
1175 new MatchCondition(IntentFilter.NO_MATCH_DATA, null, null, null,
1182 IntentFilter filter = new IntentFilter(ACTION, DATA_TYPE);