Home
last modified time | relevance | path

Searched refs:test_method (Results 1 – 3 of 3) 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/clang/test/SemaCXX/
Dwarn-thread-safety-parsing.cpp113 void test_method() __attribute__((no_thread_safety_analysis));
237 void test_method() __attribute__((lockable)); // \
277 void test_method() __attribute__((scoped_lockable)); // \
579 void test_method() __attribute__((exclusive_lock_function));
654 void test_method() __attribute__((shared_lock_function));
727 void test_method() __attribute__((exclusive_trylock_function(1)));
804 void test_method() __attribute__((shared_trylock_function(1)));
870 void test_method() __attribute__((unlock_function));
949 void test_method() __attribute__((lock_returned(mu1)));
1016 void test_method() __attribute__((locks_excluded(mu1)));
[all …]
/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__