/external/python/cpython2/Lib/test/ |
D | test_complex.py | 83 q = z.__truediv__(x) 90 q = z.__truediv__(y) 115 self.assertAlmostEqual(complex.__truediv__(2+0j, 1+1j), 1-1j) 116 self.assertRaises(ZeroDivisionError, complex.__truediv__, 1+1j, 0+0j) 416 __truediv__ = __div__ variable in ComplexTest.test_subclass.xcomplex
|
D | test_binop.py | 133 def __truediv__(self, other): member in Rat 143 __div__ = __truediv__
|
D | test_augassign.py | 168 def __truediv__(self, val): member in AugAssignTest.testCustomMethods2.testall
|
D | test_coercion.py | 63 def __truediv__(self,other): member in MethodNumber
|
/external/python/cpython3/Lib/test/ |
D | test_statistics.py | 949 def __truediv__(self, other): member in ConvertTest.test_fraction.MyFraction 950 return self.__class__(super().__truediv__(other)) 959 def __truediv__(self, other): member in ConvertTest.test_float.MyFloat 960 return self.__class__(super().__truediv__(other)) 969 def __truediv__(self, other): member in ConvertTest.test_decimal.MyDecimal 970 return self.__class__(super().__truediv__(other)) 1101 def __truediv__(self, other): member in UnivariateCommonMixin.test_type_of_data_element.MyFloat 1102 return type(self)(super().__truediv__(other)) 1128 def __truediv__(self, other): member in UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat 1129 return type(self)(super().__truediv__(other))
|
D | test_complex.py | 77 q = z.__truediv__(x) 82 q = z.__truediv__(y) 102 self.assertRaises(ZeroDivisionError, complex.__truediv__, 1+1j, 0+0j) 106 self.assertAlmostEqual(complex.__truediv__(2+0j, 1+1j), 1-1j) 107 self.assertRaises(ZeroDivisionError, complex.__truediv__, 1+1j, 0+0j)
|
D | test_augassign.py | 164 def __truediv__(self, val): member in AugAssignTest.testCustomMethods2.testall
|
D | test_binop.py | 128 def __truediv__(self, other): member in Rat
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_operators.py | 67 ragged_tensor.RaggedTensor.__truediv__ = math_ops.truediv
|
/external/python/cpython3/Lib/ |
D | numbers.py | 110 def __truediv__(self, other): member in Complex
|
D | operator.py | 444 __truediv__ = truediv variable
|
D | fractions.py | 428 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv) variable in Fraction
|
/external/python/cpython2/Lib/ |
D | numbers.py | 124 def __truediv__(self, other): member in Complex
|
D | fractions.py | 414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv) variable in Fraction
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testmagicmethods.py | 136 mock.__truediv__ = truediv 140 del mock.__truediv__
|
/external/python/dateutil/dateutil/test/ |
D | _common.py | 223 __truediv__ = __rtruediv__ = _op variable in NotAValueClass
|
/external/python/mock/mock/tests/ |
D | testmagicmethods.py | 164 mock.__truediv__ = truediv 168 del mock.__truediv__
|
/external/clang/utils/ABITest/ |
D | Enumeration.py | 36 __truediv__ = __floordiv__ variable in Aleph0
|
/external/fonttools/Lib/fontTools/misc/ |
D | arrayTools.py | 180 def __truediv__(self, other): member in Vector
|
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/ |
D | core.py | 425 def __truediv__(self, other): member in LabeledTensor 428 __div__ = __truediv__
|
/external/tensorflow/tensorflow/python/distribute/ |
D | values.py | 326 def __truediv__(self, o): return self.get() / o member in DistributedDelegate 844 def __truediv__(self, o): return self.read_value() / o member in TPUMirroredVariable 1543 def __truediv__(self, o): return self._v / o member in AggregatingVariable
|
/external/tensorflow/tensorflow/python/framework/ |
D | tensor_shape.py | 487 def __truediv__(self, other): member in Dimension
|
/external/libchrome/third_party/jinja2/ |
D | runtime.py | 644 __truediv__ = __rtruediv__ = __floordiv__ = __rfloordiv__ = \
|
/external/python/dateutil/dateutil/ |
D | relativedelta.py | 564 __truediv__ = __div__ variable in relativedelta
|
/external/python/cpython2/Modules/ |
D | operator.c | 393 spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b when __future__.division is in effect.")
|