Searched refs:test_method (Results 1 – 9 of 9) sorted by relevance
/llvm-project/clang/test/SemaCXX/ |
H A D | warn-thread-safety-parsing.cpp | 131 void test_method() NO_THREAD_SAFETY_ANALYSIS; 255 void test_method() LOCKABLE; // \ 295 void test_method() SCOPED_LOCKABLE; // \ 600 void test_method() EXCLUSIVE_LOCK_FUNCTION(); // \ in EXCLUSIVE_LOCK_FUNCTION() 682 void test_method() SHARED_LOCK_FUNCTION(); // \ 758 void test_method() EXCLUSIVE_TRYLOCK_FUNCTION(1); // \ 839 void test_method() SHARED_TRYLOCK_FUNCTION(1); // \ 910 void test_method() UNLOCK_FUNCTION(); // \ 993 void test_method() LOCK_RETURNED(mu1); 1061 void test_method() LOCKS_EXCLUDE [all...] |
H A D | attr-no-sanitize-address.cpp | 28 void test_method() NO_SANITIZE_ADDRESS;
|
H A D | attr-no-sanitize-memory.cpp | 31 void test_method() NO_SANITIZE_MEMORY;
|
H A D | attr-no-sanitize-thread.cpp | 31 void test_method() NO_SANITIZE_THREAD;
|
/llvm-project/clang/test/CodeGenCXX/ |
H A D | exceptions-seh-filter-captures.cpp | 33 void test_method(void); 36 void S::test_method() { in test_method() function in S 44 // CHECK-LABEL: define dso_local void @"?test_method@S@@QEAAXXZ"(ptr {{[^,]*}} %this) 50 // CHECK-LABEL: define internal noundef i32 @"?filt$0@0@test_method@S@@"(ptr noundef %exception_pointers, ptr noundef %frame_pointer) 51 // CHECK: %[[fp:[^ ]*]] = call ptr @llvm.eh.recoverfp(ptr @"?test_method@S@@QEAAXXZ", ptr %frame_pointer) 52 // CHECK: %[[l1_i8:[^ ]*]] = call ptr @llvm.localrecover(ptr @"?test_method@S@@QEAAXXZ", ptr %[[fp]], i32 0) 53 // CHECK: %[[this_i8:[^ ]*]] = call ptr @llvm.localrecover(ptr @"?test_method@S@@QEAAXXZ", ptr %[[fp]], i32 1)
|
/llvm-project/lldb/packages/Python/lldbsuite/test/ |
H A D | test_result.py | 153 test_method = getattr(test, test._testMethodName) 154 if test_method is not None: 155 test_categories.extend(getattr(test_method, "categories", []))
|
H A D | lldbtest.py | 1783 def test_method(self, attrvalue=attrvalue): 1787 test_method.__name__ = method_name 1788 test_method.debug_info = cat 1792 test_method = unittest.expectedFailure(test_method) 1796 test_method = unittest.skip(skip_reason)(test_method) 1798 newattrs[method_name] = test_method 1755 def test_method(self, attrvalue=attrvalue): global() function
|
/llvm-project/clang/test/Analysis/ |
H A D | this-pointer.cpp | 46 void test_method() { in test_method() function
|
/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-server/ |
H A D | gdbremote_testcase.py | 47 def test_method(self, attrvalue=attrvalue): function 51 test_method.__name__ = method_name 52 test_method.debug_server = cat 53 newattrs[method_name] = test_method
|