Searched refs:DivisionByZero (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/ |
D | deoptimize-reason.h | 18 V(DivisionByZero, "division by zero") \
|
/external/python/cpython2/Doc/library/ |
D | decimal.rst | 100 :const:`DivisionByZero`, :const:`Inexact`, :const:`Rounded`, :const:`Subnormal`, 129 capitals=1, flags=[], traps=[Overflow, DivisionByZero, 263 DivisionByZero: x / 0 290 >>> getcontext().traps[DivisionByZero] = 1 295 DivisionByZero: x / 0 671 ``Decimal('-Infinity')`` is returned and the :const:`DivisionByZero` flag 1025 for Overflow, InvalidOperation, and DivisionByZero. 1491 Python exception to be raised. For example, if the :class:`DivisionByZero` trap 1492 is set, then a :exc:`DivisionByZero` exception is raised upon encountering the 1510 .. class:: DivisionByZero [all …]
|
/external/python/cpython2/Lib/ |
D | decimal.py | 234 class DivisionByZero(DecimalException, ZeroDivisionError): class 375 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, 1321 return context._raise_error(DivisionByZero, 'x / 0', sign) 1422 return (context._raise_error(DivisionByZero, 'x // 0', sign), 1566 return context._raise_error(DivisionByZero, 'x // 0', 3239 return context._raise_error(DivisionByZero, 'logb(0)', 1) 5881 traps=[DivisionByZero, Overflow, InvalidOperation], 5895 traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow],
|
/external/python/cpython2/Lib/test/ |
D | test_decimal.py | 50 Underflow, Overflow, DivisionByZero, InvalidOperation) 124 'division_by_zero' : DivisionByZero,
|
/external/v8/src/compiler/ |
D | common-operator.cc | 422 V(Eager, DivisionByZero) \
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.4.rst | 667 decimal.DivisionByZero: x / 0 668 >>> decimal.getcontext().traps[decimal.DivisionByZero] = False
|
/external/llvm/docs/ |
D | LangRef.rst | 76 prefix. For example, ``%foo``, ``@DivisionByZero``,
|