/system/extras/simpleperf/runtest/ |
runtest.py | 211 for test_item in test: 212 if test_item.tag == 'executable': 213 executable_name = test_item.attrib['name'] 214 elif test_item.tag == 'report': 215 report_options = test_item.attrib['option'].split() 216 elif (test_item.tag == 'symbol_overhead' or 217 test_item.tag == 'symbol_children_overhead'): 218 for symbol_item in test_item: 233 if test_item.tag == 'symbol_overhead': 248 elif test_item.tag == 'symbol_callgraph_relation' [all...] |
/external/autotest/server/ |
site_server_job.py | 131 ti = site_server_job_utils.test_item(*test_entry)
|
site_server_job_utils.py | 7 test_item: extends the basic test tuple to add include/exclude attributes and 11 verifies test are valid for a host using the test attributes from test_item 21 class test_item(object): class in inherits:object 34 """Creates an instance of test_item. 173 test_item, or None if no more tests exist for this machine.
|
site_gtest_runner.py | 40 site_server_job_utils.test_item class. 45 self._gtest = site_server_job_utils.test_item(*gtest_entry)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/ |
case.py | 58 def decorator(test_item): 59 if not isinstance(test_item, (type, types.ClassType)): 60 @functools.wraps(test_item) 63 test_item = skip_wrapper 65 test_item.__unittest_skip__ = True 66 test_item.__unittest_skip_why__ = reason 67 return test_item [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/ |
case.py | 58 def decorator(test_item): 59 if not isinstance(test_item, (type, types.ClassType)): 60 @functools.wraps(test_item) 63 test_item = skip_wrapper 65 test_item.__unittest_skip__ = True 66 test_item.__unittest_skip_why__ = reason 67 return test_item [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
case.py | 58 def decorator(test_item): 59 if not isinstance(test_item, (type, types.ClassType)): 60 @functools.wraps(test_item) 63 test_item = skip_wrapper 65 test_item.__unittest_skip__ = True 66 test_item.__unittest_skip_why__ = reason 67 return test_item [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
case.py | 58 def decorator(test_item): 59 if not isinstance(test_item, (type, types.ClassType)): 60 @functools.wraps(test_item) 63 test_item = skip_wrapper 65 test_item.__unittest_skip__ = True 66 test_item.__unittest_skip_why__ = reason 67 return test_item [all...] |
/external/autotest/client/common_lib/test_utils/ |
unittest.py | 146 def decorator(test_item): 147 if isinstance(test_item, type) and issubclass(test_item, TestCase): 148 test_item.__unittest_skip__ = True 149 test_item.__unittest_skip_why__ = reason 150 return test_item 151 @functools.wraps(test_item) [all...] |
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/ |
testing.py | 586 def decorator(test_item): 590 return test_item
|