Searched defs:categories (Results 1 - 8 of 8) sorted by relevance

/frameworks/native/cmds/service/
H A Dservice.cpp196 char* categories[16]; local
230 else if (strcmp(key, "categories") == 0)
234 categories[categoryCount] = strtok_r(value, ",", &context2);
236 while (categories[categoryCount] != NULL)
239 categories[categoryCount] = strtok_r(NULL, ",", &context2);
257 writeString16(data, categories[i]);
310 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteSelector.java63 * Gets the list of {@link MediaControlIntent media control categories} in the selector.
65 * @return The list of categories.
259 * Adds a list of {@link MediaControlIntent media control categories} to the builder.
261 * @param categories The list categories to add to the set of desired capabilities,
266 public Builder addControlCategories(@NonNull Collection<String> categories) { argument
267 if (categories == null) {
268 throw new IllegalArgumentException("categories must not be null");
271 if (!categories.isEmpty()) {
272 for (String category : categories) {
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DCarNavigationBarController.java45 private static final String EXTRA_FACET_CATEGORIES = "categories";
50 // Each facet of the navigation bar maps to a set of package names or categories defined in
58 // Set of categories each facet will filter on.
92 // Check if the package matches any of the categories for the facets
103 // No need to check categories because we've already refreshed the cache.
163 private void initFacetFilterMaps(int id, String[] packageNames, String[] categories) { argument
164 mFacetCategories.add(categories);
165 for (int i = 0; i < categories.length; i++) {
166 mFacetCategoryMap.put(categories[i], id);
178 // For each facet, check if the given package name matches one of its categories
[all...]
/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java426 * Sets categories for a shortcut. Launcher applications may use this information to
432 public Builder setCategories(Set<String> categories) { argument
433 mCategories = categories;
540 * Return the categories.
845 sb.append(", categories=");
885 Icon icon, String title, String text, Set<String> categories, Intent intent,
896 mCategories = clone(categories);
883 ShortcutInfo( @serIdInt int userId, String id, String packageName, ComponentName activityComponent, Icon icon, String title, String text, Set<String> categories, Intent intent, PersistableBundle intentPersistableExtras, int weight, PersistableBundle extras, long lastChangedTimestamp, int flags, int iconResId, String bitmapPath) argument
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java360 FastImmutableArraySet<String> categories = getFastIntentCategories(intent);
364 buildResolveList(intent, categories, debug, defaultOnly,
443 FastImmutableArraySet<String> categories = getFastIntentCategories(intent);
445 buildResolveList(intent, categories, debug, defaultOnly,
449 buildResolveList(intent, categories, debug, defaultOnly,
453 buildResolveList(intent, categories, debug, defaultOnly,
457 buildResolveList(intent, categories, debug, defaultOnly,
681 final Set<String> categories = intent.getCategories();
682 if (categories == null) {
685 return new FastImmutableArraySet<String>(categories
688 buildResolveList(Intent intent, FastImmutableArraySet<String> categories, boolean debug, boolean defaultOnly, String resolvedType, String scheme, F[] src, List<R> dest, int userId) argument
[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
134 * <p><strong>Categories</strong> match if <em>all</em> of the categories in
135 * the Intent match categories given in the filter. Extra categories in the
137 * that unlike the action, an IntentFilter with no categories
138 * will only match an Intent that does not have any categories.
247 * The filter didn't match because it required one or more categories
1349 * categories is the opposite of actions -- an Intent includes the
1350 * categories tha
1409 matchCategories(Set<String> categories) argument
1483 match(String action, String type, String scheme, Uri data, Set<String> categories, String logTag) argument
[all...]
/frameworks/base/tools/aapt/
H A DCommand.cpp414 Vector<String8> categories; local
458 categories.add(category);
464 return categories;
1872 Vector<String8> categories = getNfcAidCategories(assets, xmlPath, local
1880 const size_t catLen = categories.size();
1882 bool paymentCategory = (categories[i] == "payment");
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 412 milliseconds