Home
last modified time | relevance | path

Searched refs:shouldStop (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Lib/unittest/test/
Dtest_result.py27 self.assertEqual(result.shouldStop, False)
40 self.assertEqual(result.shouldStop, True)
59 self.assertEqual(result.shouldStop, False)
80 self.assertEqual(result.shouldStop, False)
89 self.assertEqual(result.shouldStop, False)
133 self.assertEqual(result.shouldStop, False)
176 self.assertEqual(result.shouldStop, False)
224 self.assertEqual(result.shouldStop, False)
277 self.assertTrue(result.shouldStop)
283 self.assertTrue(result.shouldStop)
[all …]
Dtest_break.py70 self.assertTrue(result.shouldStop)
92 self.assertTrue(result.shouldStop)
127 self.assertTrue(result.shouldStop)
128 self.assertTrue(result2.shouldStop)
129 self.assertFalse(result3.shouldStop)
192 self.assertFalse(result.shouldStop)
Dsupport.py101 self.shouldStop = False
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DInterruptionUtil.java46 private volatile boolean shouldStop = false; field in InterruptionUtil.Interruptenator
61 if (shouldStop) { in run()
69 shouldStop = true; in stopInterrupting()
/external/python/cpython2/Lib/unittest/
Dsuite.py64 if result.shouldStop:
94 if result.shouldStop:
303 shouldStop = False variable in _DebugResult
Dresult.py48 self.shouldStop = False
150 self.shouldStop = True
/external/junit/src/main/java/junit/extensions/
DRepeatedTest.java28 if (result.shouldStop()) { in run()
/external/clang/lib/Analysis/
DFormatStringParsing.h68 bool shouldStop() const { return Stop; } in shouldStop() function
DPrintfFormatString.cpp342 if (FSR.shouldStop()) in ParsePrintfString()
372 if (FSR.shouldStop()) in ParseFormatStringHasSArg()
DScanfFormatString.cpp544 if (FSR.shouldStop()) in ParseScanfString()
/external/junit/src/main/java/junit/framework/
DTestResult.java155 public synchronized boolean shouldStop() { in shouldStop() method in TestResult
DTestSuite.java244 if (result.shouldStop()) {
/external/autotest/tko/parsers/test/
Dunittest_hotfix.py19 self.shouldStop = 0
/external/python/cpython2/Doc/library/
Dunittest.rst1623 .. attribute:: shouldStop
1660 be aborted by setting the :attr:`shouldStop` attribute to ``True``.