/external/antlr/antlr-3.4/runtime/Python/unittests/ |
D | testbase.py | 13 def wrapper(test_method): argument 16 test_method(*args, **kwargs) 20 raise BrokenTest(test_method.__name__, reason) 21 replacement.__doc__ = test_method.__doc__ 22 replacement.__name__ = 'XXX_' + test_method.__name__
|
/external/protobuf/python/google/protobuf/internal/ |
D | _parameterized.py | 194 def __init__(self, test_method, testcases, naming_type): argument 208 self._test_method = test_method 219 test_method = self._test_method 223 @functools.wraps(test_method) 226 test_method(self, **testcase_params) 228 test_method(self, *testcase_params) 230 test_method(self, testcase_params) 250 if test_method.__doc__: 251 BoundParamTest.__doc__ += '\n%s' % (test_method.__doc__,)
|
/external/smali/examples/BracketedMemberNames/ |
D | BracketedMemberNames.smali | 10 invoke-static {}, LBracketedMemberNames;->test_method()V 15 .method public static test_method()V 27 .method public static <test_method>()V 37 invoke-static {}, LBracketedMemberNames;-><test_method>()V
|
/external/clang/test/CodeGenCXX/ |
D | exceptions-seh-filter-captures.cpp | 36 void test_method(void); 39 void S::test_method() { in test_method() function in S
|
/external/autotest/server/cros/bluetooth/ |
D | bluetooth_adapter_tests.py | 249 def retry(test_method, instance, *args, **kwargs): argument 261 if _is_successful(_run_method(test_method, test_method.__name__, 266 logging.error('%s failed at the 1st time.', test_method.__name__) 270 logging.info('%s: retry the 2nd time.', test_method.__name__) 273 return _is_successful(_run_method(test_method, test_method.__name__, 281 logging.info('%s: retry the 2nd time.', test_method.__name__) 282 return _is_successful(_run_method(test_method, test_method.__name__, 307 def decorator(test_method): argument 315 @functools.wraps(test_method) 326 test_result = retry(test_method, instance, *args, **kwargs) [all …]
|
/external/clang/test/SemaCXX/ |
D | warn-thread-safety-parsing.cpp | 123 void test_method() NO_THREAD_SAFETY_ANALYSIS; 247 void test_method() LOCKABLE; // \ 287 void test_method() SCOPED_LOCKABLE; // \ 591 void test_method() EXCLUSIVE_LOCK_FUNCTION(); 666 void test_method() SHARED_LOCK_FUNCTION(); 739 void test_method() EXCLUSIVE_TRYLOCK_FUNCTION(1); 816 void test_method() SHARED_TRYLOCK_FUNCTION(1); 882 void test_method() UNLOCK_FUNCTION(); 961 void test_method() LOCK_RETURNED(mu1); 1028 void test_method() LOCKS_EXCLUDED(mu1); [all …]
|
D | attr-no-sanitize-memory.cpp | 31 void test_method() NO_SANITIZE_MEMORY;
|
D | attr-no-sanitize-address.cpp | 31 void test_method() NO_SANITIZE_ADDRESS;
|
D | attr-no-sanitize-thread.cpp | 31 void test_method() NO_SANITIZE_THREAD;
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | testbase.py | 45 def wrapper(test_method): argument 48 test_method(*args, **kwargs) 52 raise BrokenTest(test_method.__name__, reason) 53 replacement.__doc__ = test_method.__doc__ 54 replacement.__name__ = 'XXX_' + test_method.__name__
|
/external/autotest/server/site_tests/cheets_CTS/ |
D | cheets_CTS.py | 98 test_method=None): argument 130 if test_method is not None: 131 cmd += ['-m', test_method] 312 test_class=target_class, test_method=target_method)
|
/external/autotest/server/site_tests/cheets_CTS_N/ |
D | cheets_CTS_N.py | 95 test_method=None): argument 130 if test_method is not None: 131 cmd += ['-m', test_method] 331 test_method=target_method,
|
/external/python/cpython2/Lib/test/ |
D | test_docxmlrpc.py | 35 def test_method(self, arg): member in make_server.TestClass
|
D | test_tokenize.py | 472 def test_method(self): member in TokenizeTest
|
D | test_repr.py | 297 def test_method(self): member in LongReprTest
|
D | test_gc.py | 117 def test_method(self): member in GCTests
|
D | test_socket.py | 133 test_method = getattr(self, '_' + methodname) 135 self.clientRun, (test_method,))
|
D | test_urllib2.py | 1329 def test_method(self): member in RequestTests
|
/external/python/cpython2/Doc/library/ |
D | unittest.rst | 196 python -m unittest test_module.TestClass.test_method
|