Searched refs:truediv (Results 1 - 15 of 15) sorted by relevance
/third_party/python/Lib/unittest/test/testmock/ |
H A D | testmagicmethods.py | 135 def truediv(self, other): function 138 mock.__truediv__ = truediv 146 mock.__itruediv__ = truediv 152 mock.__rtruediv__ = truediv
|
/third_party/python/Lib/ |
H A D | operator.py | 20 'setitem', 'sub', 'truediv', 'truth', 'xor'] 136 def truediv(a, b): function 447 __truediv__ = truediv
|
H A D | fractions.py | 518 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
|
/third_party/jinja2/ |
H A D | sandbox.py | 207 "/": operator.truediv,
|
H A D | nodes.py | 22 "/": operator.truediv,
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | sandbox.py | 279 "/": operator.truediv,
|
H A D | nodes.py | 18 "/": operator.truediv,
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | sandbox.py | 254 '/': operator.truediv,
|
H A D | nodes.py | 29 '/': operator.truediv,
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | sandbox.py | 279 "/": operator.truediv,
|
H A D | nodes.py | 18 "/": operator.truediv,
|
/third_party/python/Lib/test/ |
H A D | test_operator.py | 190 self.assertRaises(TypeError, operator.truediv, 5) 191 self.assertRaises(TypeError, operator.truediv, None, None) 192 self.assertEqual(operator.truediv(5, 2), 2.5)
|
H A D | test_long.py | 85 def truediv(a, b): function 809 expected = repr(truediv(a, b))
|
H A D | datetimetester.py | 21 from operator import lt, le, gt, ge, eq, ne, truediv, floordiv, mod namespace 950 self.assertRaises(ZeroDivisionError, truediv, t, zerotd) 953 # self.assertRaises(TypeError, truediv, t, 2)
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | test_util.py | 763 return NonStandardInteger(operator.truediv(self.val, y)) 805 return NonStandardInteger(operator.truediv(y, self.val))
|
Completed in 25 milliseconds