Home
last modified time | relevance | path

Searched refs:addCleanup (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_discovery.py46 self.addCleanup(restore_listdir)
51 self.addCleanup(restore_isdir)
57 self.addCleanup(restore_isfile)
91 self.addCleanup(restore_listdir)
94 self.addCleanup(restore_isdir)
97 self.addCleanup(restore_isfile)
154 self.addCleanup(restore_isfile)
160 self.addCleanup(restore_path)
175 self.addCleanup(restore_isdir)
207 self.addCleanup(restore)
[all …]
H A Dtest_program.py29 self.addCleanup(restoreParseArgs)
34 self.addCleanup(removeTest)
233 self.addCleanup(restore)
H A Dtest_case.py68 test.addCleanup(cleanup1, 1, 2, 3, four='hello', five='goodbye')
69 test.addCleanup(cleanup2)
109 test.addCleanup(cleanup1)
110 test.addCleanup(cleanup2)
143 test.addCleanup(cleanup1)
144 test.addCleanup(cleanup2)
160 test.addCleanup(cleanup1)
171 self.addCleanup(cleanup1)
183 test.addCleanup(cleanup2)
H A Dtest_runner.py44 self.addCleanup(cleanup)
H A Dtest_suite.py346 self.addCleanup(sys.modules.pop, 'Module')
/llvm-project-15.0.7/llvm/utils/
H A Drevert_checker_test.py53 self.addCleanup(root.removeFilter, filt)
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineFunction.cpp758 addCleanup(LandingPad); in addLandingPad()
854 void MachineFunction::addCleanup(MachineBasicBlock *LandingPad) { in addCleanup() function in MachineFunction
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprAgg.cpp1639 auto addCleanup = [&](const EHScopeStack::stable_iterator &cleanup) { in VisitInitListExpr() local
1670 addCleanup(CGF.EHStack.stable_begin()); in VisitInitListExpr()
1749 addCleanup(CGF.EHStack.stable_begin()); in VisitInitListExpr()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineFunction.h1132 void addCleanup(MachineBasicBlock *LandingPad);
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py274 def addCleanup(self, function, *args, **kwargs): member in TestCase