Home
last modified time | relevance | path

Searched refs:compare_total (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_decimal.py1612 self.assertEqual(Decimal(4).compare_total(3),
1613 Decimal(4).compare_total(Decimal(3)))
1803 d = c.compare_total(Decimal(1), Decimal(1))
1804 self.assertEqual(c.compare_total(1, 1), d)
1805 self.assertEqual(c.compare_total(Decimal(1), 1), d)
1806 self.assertEqual(c.compare_total(1, Decimal(1)), d)
1807 self.assertRaises(TypeError, c.compare_total, '1', 1)
1808 self.assertRaises(TypeError, c.compare_total, 1, '1')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddecimal.py2717 c = self.compare_total(other)
2751 c = self.compare_total(other)
2803 def compare_total(self, other): member in Decimal
2885 return s.compare_total(o)
3327 c = self.compare_total(other)
3357 c = self.compare_total(other)
4056 def compare_total(self, a, b): member in Context
4083 return a.compare_total(b)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/
Dextra.decTest174 -- Issue #6794: when comparing NaNs using compare_total, payloads