HomeSort by relevance Sort by last modified time
    Searched refs:suite (Results 176 - 200 of 1333) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
function_definition.py 37 def suite(self): member in class:Function
42 return self.suite.FindChild(snippet_type, **kwargs)
45 return self.suite.FindChildren(snippet_type)
48 self.suite.Cut(child)
51 self.suite.Paste(child)
  /external/selinux/libsepol/cil/test/unit/
AllTests.c 44 CuSuite* suite = CuSuiteNew(); local
49 CuSuiteAddSuite(suite, CilTreeGetSuite());
54 CuSuiteRun(suite);
55 CuSuiteDetails(suite, output);
56 CuSuiteSummary(suite, output);
  /external/testng/src/main/java/org/testng/reporters/jq/
IgnoredMethodsPanel.java 22 public String getHeader(ISuite suite) {
23 return pluralize(suite.getExcludedMethods().size(), "ignored method");
27 public String getContent(ISuite suite, XMLStringBuffer main) {
31 for (ITestNGMethod method : suite.getExcludedMethods()) {
50 public String getNavigatorLink(ISuite suite) {
ReporterPanel.java 26 public String getHeader(ISuite suite) {
27 return "Reporter output for " + suite.getName();
31 public String getContent(ISuite suite, XMLStringBuffer main) {
33 for (ITestResult tr : getModel().getAllTestResults(suite)) {
50 public String getNavigatorLink(ISuite suite) {
  /external/toolchain-utils/crosperf/
benchmark.py 42 Contains details of the benchmark suite, arguments to pass to the suite,
43 iterations to run the benchmark suite and so on. Note that the benchmark name
44 can be different to the test suite name. For example, you may want to have
56 suite='',
69 self.suite = suite
72 if self.suite == 'telemetry':
74 if run_local and self.suite != 'telemetry_Crosperf':
  /external/vogar/test/vogar/
ScriptBuilderEscapingTest.java 29 public static Test suite() { method in class:ScriptBuilderEscapingTest
30 TestSuite suite = new TestSuite(ScriptBuilderEscapingTest.class.getName()); local
33 suite.addTest(new SingleCharacterEscapeTest(c));
35 suite.addTest(new MixedCharacterEscapeTest());
36 return suite;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /external/junit/src/main/java/org/junit/internal/runners/
SuiteMethod.java 11 * (those that only implement a static <code>suite()</code>
16 * public static junit.framework.Test suite() {
29 Test suite = null; local
31 suiteMethod = klass.getMethod("suite");
33 throw new Exception(klass.getName() + ".suite() must be static");
35 suite = (Test) suiteMethod.invoke(null); // static method
39 return suite;
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/
AbstractDirectoryTestSuite.java 56 Test suite = buildAllTestsSuite(); local
57 addTest(suite);
74 * Return true if the specified class should be included in the test suite.
77 * @return true if the specified class should be included in the test suite
99 * @return the test suite as a Test
116 return builder.suite(getDirectory());
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
FallbackTestClientSocketFactory.java 34 * The cipher suite used during TLS connection fallback to indicate a fallback.
55 for (String suite : suites) {
56 if (!suite.equals(TLS_FALLBACK_SCSV)) {
57 enabledCipherSuites.add(suite);
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerTestRunner.java 42 TestSuite suite = new InstrumentationTestSuite(this); local
43 suite.addTestSuite(DownloadManagerTestApp.class);
44 return suite;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaFrameworkPerfTestRunner.java 43 TestSuite suite = new InstrumentationTestSuite(this); local
44 suite.addTestSuite(MediaPlayerPerformance.class);
45 return suite;
  /libcore/dom/src/test/java/tests/api/org/w3c/dom/
AllTests_Level1.java 35 public static final Test suite() { method in class:AllTests_Level1
48 throw new RuntimeException("problem creating dom test suite, "+e.getClass().getName()+", "+e.getMessage(), e);
50 TestSuite suite = new JUnitTestSuiteAdapter(domSuite); local
51 return suite;
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
NetworkConnectivityChecker.java 23 import com.android.tradefed.suite.checker.ISystemStatusChecker;
24 import com.android.tradefed.suite.checker.StatusCheckerResult;
25 import com.android.tradefed.suite.checker.StatusCheckerResult.CheckStatus;
  /external/autotest/site_utils/
suite_enumerator.py 7 """Tool for enumerating the tests in a given suite.
9 Given an autotest root directory and a suite name (e.g., bvt, regression), this
10 tool will print out the name of each test in that suite, one per line.
19 dynamic suite infrastructure in server/cros/dynamic_suite.py.
31 import autotest_lib.server.cros.dynamic_suite.suite as suite_lib
35 """Parse command line for arguments including autotest directory, suite
54 """Entry point to run the suite enumerator command."""
67 for suite in suite_lib.list_all_suites('', devserver, fs_getter):
68 print suite
71 suite = suite_lib.Suite.create_from_name(args[0], {}, '', devserver
    [all...]
  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
SmokeTestRunner.java 38 private static final String SUITE_NAME = "Smoke Test Suite";
45 final TestSuite suite = new TestSuite(SUITE_NAME); local
57 suite.addTest(setupTest);
66 suite.addTest(postBootTest);
85 suite.addTest(appTest);
95 suite.addTest(asyncErrorTest);
97 return suite;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_lib2to3.py 8 def suite(): function
17 run_unittest(suite())
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/
ClassAdapterTest.class 
ClassWriterTest.class 

Completed in 1743 milliseconds

1 2 3 4 5 6 78 91011>>