Home
last modified time | relevance | path

Searched refs:logical_or (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_decimal.py1618 self.assertEqual(Decimal(10101).logical_or(1001),
1619 Decimal(10101).logical_or(Decimal(1001)))
1980 d = c.logical_or(Decimal(1), Decimal(1))
1981 self.assertEqual(c.logical_or(1, 1), d)
1982 self.assertEqual(c.logical_or(Decimal(1), 1), d)
1983 self.assertEqual(c.logical_or(1, Decimal(1)), d)
1984 self.assertRaises(TypeError, c.logical_or, '1', 1)
1985 self.assertRaises(TypeError, c.logical_or, 1, '1')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddecimal.py3272 def logical_or(self, other, context=None): member in Decimal
4580 def logical_or(self, a, b): member in Context
4605 return a.logical_or(b, context=self)