Searched refs:categories (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/awt/javax/imageio/spi/
H A DServiceRegistry.java31 * service. Service providers can be associated with one or more categories.
40 * The categories.
42 CategoriesMap categories = new CategoriesMap(this); field in class:ServiceRegistry
45 * Instantiates a new ServiceRegistry with the specified categories.
48 * an Iterator of Class objects for defining of categories.
52 throw new IllegalArgumentException("categories iterator should not be NULL");
56 categories.addCategory(c);
88 * categories.
98 return categories.addProvider(provider, category);
109 categories
308 Map<Class<?>, ProvidersMap> categories = new HashMap<Class<?>, ProvidersMap>(); field in class:ServiceRegistry.CategoriesMap
[all...]
/frameworks/base/cmds/service/
H A Dservice.cpp158 char* categories[16]; local
192 else if (strcmp(key, "categories") == 0)
196 categories[categoryCount] = strtok_r(value, ",", &context2);
198 while (categories[categoryCount] != NULL)
201 categories[categoryCount] = strtok_r(NULL, ",", &context2);
219 writeString16(data, categories[i]);
269 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/content/
H A DIntentFilterTest.java33 Match(String[] actions, String[] categories, String[] mimeTypes, argument
40 if (categories != null) {
41 for (int i = 0; i < categories.length; i++) {
42 addCategory(categories[i]);
67 Match(String[] actions, String[] categories, String[] mimeTypes, argument
70 this(actions, categories, mimeTypes, schemes, authorities, ports);
84 public final String[] categories; field in class:IntentFilterTest.MatchCondition
92 categories = _categories;
100 HashSet<String> categories = null;
101 if (mc.categories !
[all...]
/frameworks/base/core/java/android/content/
H A DIntentFilter.java41 * match against actions, categories, and data (either via its type, scheme,
51 * <em>action</em>, <em>data</em>, and <em>categories</em>. For each of these
116 * <p><strong>Categories</strong> match if <em>all</em> of the categories in
117 * the Intent match categories given in the filter. Extra categories in the
119 * that unlike the action, an IntentFilter with no categories
120 * will only match an Intent that does not have any categories.
222 * The filter didn't match because it required one or more categories
962 * categories is the opposite of actions -- an Intent includes the
963 * categories tha
1020 matchCategories(Set<String> categories) argument
1098 match(String action, String type, String scheme, Uri data, Set<String> categories, String logTag) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java116 Set<String> categories = intent.getCategories();
117 if (categories != null) {
118 for (String cat : categories) {
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java442 Set<String> categories = intent.getCategories();
461 intent.getAction(), resolvedType, scheme, intent.getData(), categories, TAG);

Completed in 469 milliseconds