HomeSort by relevance Sort by last modified time
    Searched refs:all_tests (Results 1 - 25 of 39) sorted by null

1 2

  /external/v8/build/android/pylib/linker/
setup.py 44 all_tests = legacy_linker_tests + modern_linker_tests
46 all_tests = legacy_linker_tests
51 all_test_names = [test.qualified_name for test in all_tests]
54 all_tests = [t for t in all_tests \
60 return (TestRunnerFactory, all_tests)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
__init__.py 2 have tests.all_tests be a TestSuite representing all test cases
13 all_tests = unittest.TestSuite() variable
24 all_tests.addTests(loader.loadTestsFromModule(mod))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
__init__.py 2 have tests.all_tests be a TestSuite representing all test cases
13 all_tests = unittest.TestSuite() variable
24 all_tests.addTests(loader.loadTestsFromModule(mod))
  /toolchain/binutils/binutils-2.25/gold/testsuite/
test.cc 86 Register_test* Register_test::all_tests; member in class:gold_testsuite::Register_test
91 : name_(name), pfn_(pfn), next_(Register_test::all_tests)
93 Register_test::all_tests = this; member in class:gold_testsuite::Register_test
101 for (Register_test* p = Register_test::all_tests;
test.h 116 static Register_test* all_tests; member in class:gold_testsuite::Register_test
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/
run_tests.py 15 all_tests = [f[:-3] for f in os.listdir(tests_path) variable
40 tests = all_tests
  /external/v8/tools/gyp/test/small/
gyptest-small.py 48 all_tests = unittest.TestSuite(suites) variable
51 result = unittest.TextTestRunner(verbosity=2).run(all_tests)
  /external/v8/build/android/pylib/results/
json_results.py 21 # "all_tests": [
85 all_tests = set()
98 all_tests = all_tests.union(set(iteration_data.iterkeys()))
103 'all_tests': sorted(list(all_tests)),
  /external/chromium-trace/catapult/third_party/webapp2/
run_tests.py 27 all_tests = [f[:-8] for f in os.listdir(tests_path) if f.endswith('_test.py')] variable
51 tests = all_tests
  /external/v8/build/util/lib/common/
unittest_util.py 103 def FilterTests(all_tests, gtest_filter):
107 all_tests: List of tests (unittest.TestSuite)
113 test_names = [GetTestName(test) for test in all_tests]
115 return [test for test in all_tests if GetTestName(test) in filtered_names]
118 def FilterTestNames(all_tests, gtest_filter):
125 all_tests: List of test names.
143 test for test in all_tests
  /external/valgrind/none/tests/ppc32/
ldst_multiple.c 172 static test_table_t all_tests[] = { variable
189 while ((func = all_tests[i].func)) {
test_dfp1.c 476 all_tests[] = variable
495 while ((func = all_tests[i].test_category)) {
496 aTest = all_tests[i];
test_dfp2.c 642 all_tests[] = variable
666 while ((func = all_tests[i].test_category)) {
667 aTest = all_tests[i];
test_dfp4.c 617 all_tests[] = variable
634 while ((func = all_tests[i].test_category)) {
635 aTest = all_tests[i];
test_dfp5.c 584 all_tests[] = variable
603 while ((func = all_tests[i].test_category)) {
604 aTest = all_tests[i];
  /external/autotest/frontend/health/
complete_failures_unittest.py 63 all_tests = set(failures)
66 complete_failures.email_about_test_failure(failures, all_tests)
85 all_tests = set(failures)
88 complete_failures.email_about_test_failure(failures, all_tests)
105 all_tests = set(failures) | {'not_failure'}
108 complete_failures.email_about_test_failure(failures, all_tests)
complete_failures.py 107 def email_about_test_failure(failed_tests, all_tests):
113 @param all_tests: All the names of tests that have been recently ran.
124 % (len(failed_tests), len(all_tests),
  /art/test/701-easy-div-rem/
genMain.py 20 all_tests = [ variable
49 for default_vars, tests in all_tests:
  /art/test/961-default-iface-resolution-generated/util-src/
generate_java.py 79 all_tests = sorted(self.tests)
80 return filter_blanks("\n".join(a.get_expected() for a in all_tests))
98 all_tests = sorted(self.tests)
101 for t in all_tests:
103 for t in all_tests:
  /external/autotest/client/bin/
setup_job.py 109 all_tests = []
116 all_tests.append(client_test)
119 return all_tests, broken_tests
  /art/test/964-default-iface-init-generated/util-src/
generate_java.py 82 all_tests = sorted(self.tests)
83 return filter_blanks("\n".join(a.get_expected() for a in all_tests))
95 all_tests = sorted(self.tests)
98 for t in all_tests:
100 for t in all_tests:
  /art/test/968-default-partial-compile-generated/util-src/
generate_smali.py 97 all_tests = sorted(self.tests)
98 return filter_blanks("\n".join(a.get_expected() for a in all_tests))
116 all_tests = sorted(self.tests)
119 for t in all_tests:
121 for t in all_tests:
  /art/test/970-iface-super-resolution-generated/util-src/
generate_smali.py 102 all_tests = sorted(self.tests)
103 return filter_blanks("\n".join(a.get_expected() for a in all_tests))
118 all_tests = sorted(self.tests)
121 for t in all_tests:
123 for t in all_tests:
  /art/test/utils/python/
generate_java_main.py 93 all_tests = sorted(self.tests)
96 for t in all_tests:
98 for t in sorted(all_tests):
  /art/test/971-iface-super/util-src/
generate_smali.py 97 all_tests = sorted(self.tests)
98 return filter_blanks("\n".join(a.get_expected() for a in all_tests))
116 all_tests = sorted(self.tests)
119 for t in all_tests:
121 for t in all_tests:

Completed in 390 milliseconds

1 2