HomeSort by relevance Sort by last modified time
    Searched full:categories (Results 1 - 25 of 2772) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/experimental/categories/
ExcludeCategories.java 1 package org.junit.experimental.categories;
7 import org.junit.experimental.categories.Categories.CategoryFilter;
11 * {@link org.junit.runner.FilterFactory} to exclude categories.
14 * given categories.
18 * --filter=org.junit.experimental.categories.ExcludeCategories=pkg.of.Cat1,pkg.of.Cat2
29 * not categorized with any of the specified categories.
31 * @param categories Category classes.
34 protected Filter createFilter(List<Class<?>> categories) {
35 return new ExcludesAny(categories);
    [all...]
IncludeCategories.java 1 package org.junit.experimental.categories;
7 import org.junit.experimental.categories.Categories.CategoryFilter;
11 * {@link org.junit.runner.FilterFactory} to include categories.
14 * given categories.
18 * --filter=org.junit.experimental.categories.IncludeCategories=pkg.of.Cat1,pkg.of.Cat2
29 * categorized with any of the specified categories.
31 * @param categories Category classes.
34 protected Filter createFilter(List<Class<?>> categories) {
35 return new IncludesAny(categories);
    [all...]
CategoryFilterFactory.java 1 package org.junit.experimental.categories;
16 * Creates a {@link org.junit.experimental.categories.Categories.CategoryFilter} given a
30 * Creates a {@link org.junit.experimental.categories.Categories.CategoryFilter} given an array of classes.
32 * @param categories Category classes.
34 protected abstract Filter createFilter(List<Class<?>> categories);
36 private List<Class<?>> parseCategories(String categories) throws ClassNotFoundException {
39 for (String category : categories.split(",")) {
Categories.java 1 package org.junit.experimental.categories;
22 * Categories must be annotated on the direct method or class.
59 * &#064;RunWith(Categories.class)
62 * // Note that Categories is a kind of Suite
68 * Example to run multiple categories:
70 * &#064;RunWith(Categories.class)
79 * @see <a href="https://github.com/junit-team/junit/wiki/Categories">Categories at JUnit wiki</a>
81 public class Categories extends Suite {
86 * Determines the tests to run that are annotated with categories specified i
265 private static Set<Class<?>> categories(Description description) { method in class:Categories.CategoryFilter
266 Set<Class<?>> categories= new HashSet<Class<?>>(); local
    [all...]
Category.java 1 package org.junit.experimental.categories;
10 * Marks a test class or test method as belonging to one or more categories of tests.
13 * This annotation is only interpreted by the Categories runner (at present).
41 * For more usage, see code example on {@link Categories}.
  /dalvik/dx/tests/107-verify-stack-ops/
info.txt 2 arguments are actually of the appropriate categories.
  /system/sepolicy/prebuilts/api/26.0/private/
mls_decl 5 # Generate the desired number of sensitivities and categories.
  /system/sepolicy/prebuilts/api/27.0/private/
mls_decl 5 # Generate the desired number of sensitivities and categories.
  /system/sepolicy/prebuilts/api/28.0/private/
mls_decl 5 # Generate the desired number of sensitivities and categories.
  /system/sepolicy/private/
mls_decl 5 # Generate the desired number of sensitivities and categories.
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/model/
SuggestionCategoryRegistry.java 37 public static final List<SuggestionCategory> CATEGORIES;
43 CATEGORIES = new ArrayList<>();
44 CATEGORIES.add(buildCategory(CATEGORY_KEY_DEFERRED_SETUP,
46 CATEGORIES.add(buildCategory(CATEGORY_KEY_HIGH_PRIORITY,
48 CATEGORIES.add(buildCategory(CATEGORY_KEY_FIRST_IMPRESSION,
50 CATEGORIES.add(buildCategory("com.android.settings.suggested.category.LOCK_SCREEN",
52 CATEGORIES.add(buildCategory("com.android.settings.suggested.category.TRUST_AGENT",
54 CATEGORIES.add(buildCategory("com.android.settings.suggested.category.EMAIL",
56 CATEGORIES.add(buildCategory("com.android.settings.suggested.category.PARTNER_ACCOUNT",
58 CATEGORIES.add(buildCategory("com.android.settings.suggested.category.GESTURE"
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpa_gui.desktop 10 Categories=Qt;Network;
  /frameworks/base/core/res/res/raw/
fallback_categories.csv 1 # Default app categories used if neither the package nor installer sets anything
  /tools/loganalysis/tests/src/com/android/loganalysis/item/
MonkeyLogItemTest.java 42 assertTrue(output.has(MonkeyLogItem.CATEGORIES));
43 assertTrue(output.get(MonkeyLogItem.CATEGORIES) instanceof JSONArray);
45 JSONArray categories = output.getJSONArray(MonkeyLogItem.CATEGORIES); local
47 assertEquals(2, categories.length());
48 assertTrue(in("category1", categories));
49 assertTrue(in("category2", categories));
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
NewsSource.java 29 final String[] CATEGORIES = { "Top Stories", "US", "Politics", "Economy" };
44 mCategory = new NewsCategory[CATEGORIES.length];
45 for (i = 0; i < CATEGORIES.length; i++) {
50 /** Returns the list of news categories. */
52 return CATEGORIES;
  /frameworks/base/core/java/android/webkit/
TracingConfig.java 45 * Indicates that there are no predefined categories.
50 * Predefined set of categories, includes all categories enabled by default in chromium.
56 * Predefined set of categories typically useful for analyzing WebViews.
57 * Typically includes "android_webview" and "Java" categories.
62 * Predefined set of categories typically useful for web developers.
63 * Typically includes "blink", "compositor", "renderer.scheduler" and "v8" categories.
68 * Predefined set of categories for analyzing input latency issues.
69 * Typically includes "input", "renderer.scheduler" categories.
74 * Predefined set of categories for analyzing rendering issues
    [all...]
  /external/chromium-trace/catapult/systrace/profile_chrome/
chrome_tracing_agent_unittest.py 23 categories = \
27 self.assertEquals(len(categories), 2)
28 self.assertTrue(categories[0])
29 self.assertTrue(categories[1])
41 categories = '*'
46 agent.StartAgentTracing(chrome_tracing_agent.ChromeConfig(categories, None,
chrome_tracing_agent.py 68 start_extras = {'categories': ','.join(self._categories)}
160 chrome_opts.add_option('-c', '--categories', help='Select Chrome tracing '
161 'categories with comma-delimited wildcards, '
163 'Chrome\'s default categories. Chrome tracing can be '
164 'disabled with "--categories=\'\'". Use "list" to '
165 'see the available categories.',
171 help='Enable enough trace categories for '
174 help='Enable enough trace categories for '
176 chrome_opts.add_option('--trace-gpu', help='Enable extra trace categories '
178 chrome_opts.add_option('--trace-flow', help='Enable extra trace categories '
    [all...]
  /frameworks/base/services/tests/servicestests/res/xml/
shortcut_1.xml 15 <categories android:name="android.shortcut.conversation" />
16 <categories android:name="android.shortcut.media" />
shortcut_5.xml 30 <categories android:name="android.shortcut.conversation" />
31 <categories android:name="android.shortcut.media" />
45 <categories android:name="android.shortcut.conversation" />
64 <categories />
65 <categories android:name="" />
66 <categories android:name="cat" />
79 <categories android:name="cat1" />
80 <categories android:name="cat2" />
shortcut_5_altalt.xml 30 <categories android:name="android.shortcut.conversation" />
31 <categories android:name="android.shortcut.media" />
45 <categories android:name="android.shortcut.conversation" />
67 <categories />
68 <categories android:name="" />
69 <categories android:name="cat" />
82 <categories android:name="cat1" />
83 <categories android:name="cat2" />
  /developers/build/prebuilts/gradle/ActivityInstrumentation/.google/
packaging.yaml 9 categories: [Testing]
  /developers/build/prebuilts/gradle/BasicMediaRouter/.google/
packaging.yaml 9 categories: [Media]
  /developers/build/prebuilts/gradle/BeamLargeFiles/.google/
packaging.yaml 9 categories: [Connectivity]
  /developers/build/prebuilts/gradle/CardEmulation/.google/
packaging.yaml 9 categories: [Connectivity]

Completed in 496 milliseconds

1 2 3 4 5 6 7 8 91011>>