/external/antlr/antlr-3.4/runtime/Python/unittests/ |
testbase.py | 13 def wrapper(test_method): 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/CodeGenCXX/ |
exceptions-seh-filter-captures.cpp | 36 void test_method(void); 39 void S::test_method() { function in class:S 48 // CHECK-LABEL: define void @"\01?test_method@S@@QEAAXXZ"(%struct.S* %this) 53 // CHECK-LABEL: define internal i32 @"\01?filt$0@0@test_method@S@@"(i8* %exception_pointers, i8* %frame_pointer) 54 // CHECK: %[[fp:[^ ]*]] = call i8* @llvm.x86.seh.recoverfp(i8* bitcast (void (%struct.S*)* @"\01?test_method@S@@QEAAXXZ" to i8*), i8* %frame_pointer) 55 // CHECK: %[[l1_i8:[^ ]*]] = call i8* @llvm.localrecover(i8* bitcast (void (%struct.S*)* @"\01?test_method@S@@QEAAXXZ" to i8*), i8* %[[fp]], i32 0)
|
/external/clang/test/SemaCXX/ |
attr-no-sanitize-address.cpp | 31 void test_method() NO_SANITIZE_ADDRESS;
|
attr-no-sanitize-memory.cpp | 31 void test_method() NO_SANITIZE_MEMORY;
|
attr-no-sanitize-thread.cpp | 31 void test_method() NO_SANITIZE_THREAD;
|
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); [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
unit_test_suite.hpp | 91 struct test_name : public F { void test_method(); }; \ 96 t.test_method(); \ 107 void test_name::test_method() \ 125 { void test_method(); }; \ 132 t.test_method(); \ 142 void test_name<type_name>::test_method() \
|
unit_test_suite_impl.hpp | 239 user_tc_method_invoker( shared_ptr<InstanceType> inst, TestMethod test_method ) 240 : m_inst( inst ), m_test_method( test_method ) {} 262 make_test_case( void (UserTestCase::* test_method )(), 267 ut_detail::user_tc_method_invoker<InstanceType,UserTestCase>( user_test_case, test_method ) );
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
testbase.py | 45 def wrapper(test_method): 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__
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_docxmlrpc.py | 42 def test_method(self, arg): member in class:server.TestClass
|
test_repr.py | 289 def test_method(self): function
|
test_gc.py | 117 def test_method(self): member in class:GCTests
|
test_socket.py | 130 test_method = getattr(self, '_' + methodname) 132 self.clientRun, (test_method,)) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_docxmlrpc.py | 42 def test_method(self, arg): member in class:server.TestClass
|
test_repr.py | 289 def test_method(self): function
|
test_gc.py | 117 def test_method(self): member in class:GCTests
|
test_socket.py | 130 test_method = getattr(self, '_' + methodname) 132 self.clientRun, (test_method,)) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_docxmlrpc.py | 42 def test_method(self, arg): member in class:server.TestClass
|
test_repr.py | 289 def test_method(self): function
|
test_gc.py | 117 def test_method(self): member in class:GCTests
|
test_socket.py | 130 test_method = getattr(self, '_' + methodname) 132 self.clientRun, (test_method,)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_docxmlrpc.py | 42 def test_method(self, arg): member in class:server.TestClass
|
test_repr.py | 289 def test_method(self): function
|
test_gc.py | 117 def test_method(self): member in class:GCTests
|
/development/testrunner/test_defs/ |
instrumentation_test.py | 109 if options.test_method is not None: 110 test_class = "%s#%s" % (test_class, options.test_method)
|