Searched defs:min_mag (Results 1 - 4 of 4) sorted by relevance

/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Ddecimal.py3364 def min_mag(self, other, context=None): member in class:Decimal
4733 def min_mag(self, a, b): member in class:Context
4736 >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2'))
4738 >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN'))
4740 >>> ExtendedContext.min_mag(1, -2)
4742 >>> ExtendedContext.min_mag(Decimal(1), -2)
4744 >>> ExtendedContext.min_mag(1, Decimal(-2))
4748 return a.min_mag(b, context=self)
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Ddecimal.py3364 def min_mag(self, other, context=None): member in class:Decimal
4733 def min_mag(self, a, b): member in class:Context
4736 >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2'))
4738 >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN'))
4740 >>> ExtendedContext.min_mag(1, -2)
4742 >>> ExtendedContext.min_mag(Decimal(1), -2)
4744 >>> ExtendedContext.min_mag(1, Decimal(-2))
4748 return a.min_mag(b, context=self)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Ddecimal.py3364 def min_mag(self, other, context=None): member in class:Decimal
4733 def min_mag(self, a, b): member in class:Context
4736 >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2'))
4738 >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN'))
4740 >>> ExtendedContext.min_mag(1, -2)
4742 >>> ExtendedContext.min_mag(Decimal(1), -2)
4744 >>> ExtendedContext.min_mag(1, Decimal(-2))
4748 return a.min_mag(b, context=self)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Ddecimal.py3364 def min_mag(self, other, context=None): member in class:Decimal
4733 def min_mag(self, a, b): member in class:Context
4736 >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2'))
4738 >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN'))
4740 >>> ExtendedContext.min_mag(1, -2)
4742 >>> ExtendedContext.min_mag(Decimal(1), -2)
4744 >>> ExtendedContext.min_mag(1, Decimal(-2))
4748 return a.min_mag(b, context=self)

Completed in 128 milliseconds