Home
last modified time | relevance | path

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

/external/lldb/test/unittest2/test/
Dtest_discovery.py43 self.addCleanup(restore_listdir)
48 self.addCleanup(restore_isdir)
54 self.addCleanup(restore_isfile)
85 self.addCleanup(restore_listdir)
88 self.addCleanup(restore_isdir)
91 self.addCleanup(restore_isfile)
143 self.addCleanup(restore_isfile)
148 self.addCleanup(restore_path)
163 self.addCleanup(restore_isdir)
193 self.addCleanup(restore)
[all …]
Dtest_program.py26 self.addCleanup(restoreParseArgs)
31 self.addCleanup(removeTest)
222 self.addCleanup(restore)
Dtest_case.py64 test.addCleanup(cleanup1, 1, 2, 3, four='hello', five='goodbye')
65 test.addCleanup(cleanup2)
98 test.addCleanup(cleanup1)
99 test.addCleanup(cleanup2)
129 test.addCleanup(cleanup1)
130 test.addCleanup(cleanup2)
146 test.addCleanup(cleanup1)
156 self.addCleanup(cleanup1)
168 test.addCleanup(cleanup2)
Dtest_runner.py42 self.addCleanup(cleanup)
Dtest_suite.py324 self.addCleanup(sys.modules.pop, 'Module')
/external/llvm/include/llvm/CodeGen/
DMachineModuleInfo.h352 void addCleanup(MachineBasicBlock *LandingPad);
/external/llvm/lib/CodeGen/
DMachineModuleInfo.cpp459 void MachineModuleInfo::addCleanup(MachineBasicBlock *LandingPad) { in addCleanup() function in MachineModuleInfo
/external/llvm/lib/CodeGen/SelectionDAG/
DFunctionLoweringInfo.cpp673 MMI.addCleanup(MBB); in AddLandingPadInfo()
/external/lldb/test/unittest2/
Dcase.py254 def addCleanup(self, function, *args, **kwargs): member in TestCase