Home
last modified time | relevance | path

Searched refs:test_method (Results 1 – 19 of 19) 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_adapter_tests.py249 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/
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-memory.cpp31 void test_method() NO_SANITIZE_MEMORY;
Dattr-no-sanitize-address.cpp31 void test_method() NO_SANITIZE_ADDRESS;
Dattr-no-sanitize-thread.cpp31 void test_method() NO_SANITIZE_THREAD;
/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/
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)
/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]
331 test_method=target_method,
/external/python/cpython2/Lib/test/
Dtest_docxmlrpc.py35 def test_method(self, arg): member in make_server.TestClass
Dtest_tokenize.py472 def test_method(self): member in TokenizeTest
Dtest_repr.py297 def test_method(self): member in LongReprTest
Dtest_gc.py117 def test_method(self): member in GCTests
Dtest_socket.py133 test_method = getattr(self, '_' + methodname)
135 self.clientRun, (test_method,))
Dtest_urllib2.py1329 def test_method(self): member in RequestTests
/external/python/cpython2/Doc/library/
Dunittest.rst196 python -m unittest test_module.TestClass.test_method