/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_adpater_tests.py | 237 def retry(test_method, instance, *args, **kwargs): argument 249 if _is_successful(_run_method(test_method, test_method.__name__, 254 logging.error('%s failed at the 1st time.', test_method.__name__) 258 logging.info('%s: retry the 2nd time.', test_method.__name__) 261 return _is_successful(_run_method(test_method, test_method.__name__, 269 logging.info('%s: retry the 2nd time.', test_method.__name__) 270 return _is_successful(_run_method(test_method, test_method.__name__, 295 def decorator(test_method): argument 303 @functools.wraps(test_method) 314 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-thread.cpp | 31 void test_method() NO_SANITIZE_THREAD;
|
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;
|
/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_N/ |
D | cheets_CTS_N.py | 95 test_method=None): argument 130 if test_method is not None: 131 cmd += ['-m', test_method] 314 test_method=target_method,
|
/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)
|