/external/chromium-trace/catapult/telemetry/examples/browser_tests/ |
failed_tests.py | 44 def load_tests(loader, tests, pattern): function
|
simple_sharding_test.py | 32 def load_tests(loader, tests, pattern): function
|
process_tests.py | 50 def load_tests(loader, tests, pattern): function
|
simple_numeric_test.py | 79 def load_tests(loader, tests, pattern): function
|
simple_browser_test.py | 72 def load_tests(loader, tests, pattern): function
|
/external/clang/tools/scan-build-py/tests/unit/ |
__init__.py | 17 def load_tests(loader, suite, _): function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None)
69 if use_load_tests and load_tests is not None:
71 return load_tests(self, tests, None)
154 pattern then the package will be checked for a 'load_tests' function. If
157 If load_tests exists then discovery does *not* recurse into the package,
158 load_tests is responsible for loading all tests in the package.
162 load_tests does not need to pass this argument in to loader.discover().
166 # make top_level_dir optional if called from load_tests in a package
271 load_tests = None [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None) 69 if use_load_tests and load_tests is not None: 71 return load_tests(self, tests, None) 154 pattern then the package will be checked for a 'load_tests' function. If 157 If load_tests exists then discovery does *not* recurse into the package, 158 load_tests is responsible for loading all tests in the package. 162 load_tests does not need to pass this argument in to loader.discover(). 166 # make top_level_dir optional if called from load_tests in a package 271 load_tests = Non [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None) 69 if use_load_tests and load_tests is not None: 71 return load_tests(self, tests, None) 154 pattern then the package will be checked for a 'load_tests' function. If 157 If load_tests exists then discovery does *not* recurse into the package, 158 load_tests is responsible for loading all tests in the package. 162 load_tests does not need to pass this argument in to loader.discover(). 166 # make top_level_dir optional if called from load_tests in a package 271 load_tests = Non [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None) 69 if use_load_tests and load_tests is not None: 71 return load_tests(self, tests, None) 154 pattern then the package will be checked for a 'load_tests' function. If 157 If load_tests exists then discovery does *not* recurse into the package, 158 load_tests is responsible for loading all tests in the package. 162 load_tests does not need to pass this argument in to loader.discover(). 166 # make top_level_dir optional if called from load_tests in a package 271 load_tests = Non [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
loader.py | 67 load_tests = getattr(module, 'load_tests', None) 69 if use_load_tests and load_tests is not None: 71 return load_tests(self, tests, None) 154 pattern then the package will be checked for a 'load_tests' function. If 157 If load_tests exists then discovery does *not* recurse into the package, 158 load_tests is responsible for loading all tests in the package. 162 load_tests does not need to pass this argument in to loader.discover(). 166 # make top_level_dir optional if called from load_tests in a package 271 load_tests = Non [all...] |
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
example_test.py | 35 def load_tests(loader, tests, ignore): function
|
/external/clang/tools/scan-build-py/tests/functional/cases/ |
__init__.py | 12 def load_tests(loader, suite, pattern): function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern):
function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests'
103 self.load_tests = load_tests
123 # We should have loaded tests from the test_directory package by calling load_tests
126 ['load_tests', 'test_directory2' + ' module tests'])
129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function.
161 def load_tests(loader, tests, pattern):
function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests
179 def load_tests(loader, tests, pattern):
function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests
[all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests' 103 self.load_tests = load_tests 123 # We should have loaded tests from the test_directory package by calling load_tests 126 ['load_tests', 'test_directory2' + ' module tests']) 129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function. 161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests 179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests' 103 self.load_tests = load_tests 123 # We should have loaded tests from the test_directory package by calling load_tests 126 ['load_tests', 'test_directory2' + ' module tests']) 129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function. 161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests 179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests' 103 self.load_tests = load_tests 123 # We should have loaded tests from the test_directory package by calling load_tests 126 ['load_tests', 'test_directory2' + ' module tests']) 129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function. 161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests 179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_discovery.py | 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__ 102 return 'load_tests' 103 self.load_tests = load_tests 123 # We should have loaded tests from the test_directory package by calling load_tests 126 ['load_tests', 'test_directory2' + ' module tests']) 129 # load_tests should have been called once with loader, tests and pattern
|
test_loader.py | 152 # with a load_tests function. 161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests 165 m.load_tests = load_tests 179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests 181 m.load_tests = load_tests [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
pybench.py | 473 def load_tests(self, setupmod, limitnames=None):
member in class:Benchmark 925 bench.load_tests(Setup, limitnames=limitnames)
[all...] |