Home
last modified time | relevance | path

Searched refs:test_method (Results 1 – 12 of 12) sorted by relevance

/external/antlr/antlr-3.4/runtime/Python/unittests/
Dtestbase.py13 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.py194 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/
DBracketedMemberNames.smali10 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/
Dexceptions-seh-filter-captures.cpp36 void test_method(void);
39 void S::test_method() { in test_method() function in S
/external/autotest/server/cros/bluetooth/
Dbluetooth_adpater_tests.py237 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/
Dwarn-thread-safety-parsing.cpp123 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 …]
Dattr-no-sanitize-thread.cpp31 void test_method() NO_SANITIZE_THREAD;
Dattr-no-sanitize-memory.cpp31 void test_method() NO_SANITIZE_MEMORY;
Dattr-no-sanitize-address.cpp31 void test_method() NO_SANITIZE_ADDRESS;
/external/antlr/antlr-3.4/runtime/Python/tests/
Dtestbase.py45 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/
Dcheets_CTS_N.py95 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/
Dcheets_CTS.py98 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)