Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_decimal.py1616 self.assertEqual(Decimal(10101).logical_and(1001),
1617 Decimal(10101).logical_and(Decimal(1001)))
1965 d = c.logical_and(Decimal(1), Decimal(1))
1966 self.assertEqual(c.logical_and(1, 1), d)
1967 self.assertEqual(c.logical_and(Decimal(1), 1), d)
1968 self.assertEqual(c.logical_and(1, Decimal(1)), d)
1969 self.assertRaises(TypeError, c.logical_and, '1', 1)
1970 self.assertRaises(TypeError, c.logical_and, 1, '1')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddecimal.py3248 def logical_and(self, other, context=None): member in Decimal
4534 def logical_and(self, a, b): member in Context
4559 return a.logical_and(b, context=self)