Searched refs:is_not (Results 1 – 16 of 16) sorted by relevance
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | logical.py | 113 is_not = operator.is_not variable
|
D | __init__.py | 57 from tensorflow.python.autograph.operators.logical import is_not
|
/external/python/cpython2/Lib/test/ |
D | test_operator.py | 363 self.assertRaises(TypeError, operator.is_not) 364 self.assertFalse(operator.is_not(a, b)) 365 self.assertTrue(operator.is_not(a,c))
|
D | test_bool.py | 298 self.assertIs(operator.is_not(True, True), False) 299 self.assertIs(operator.is_not(True, False), True)
|
/external/python/cpython3/Lib/test/ |
D | test_bool.py | 273 self.assertIs(operator.is_not(True, True), False) 274 self.assertIs(operator.is_not(True, False), True)
|
D | test_operator.py | 309 self.assertRaises(TypeError, operator.is_not) 310 self.assertFalse(operator.is_not(a, b)) 311 self.assertTrue(operator.is_not(a,c))
|
/external/python/cpython2/Modules/ |
D | operator.c | 176 is_not(PyObject *s, PyObject *a) in is_not() function 386 spam1(is_not, "is_not(a, b) -- Same as a is not b.")
|
/external/python/cpython3/Lib/ |
D | operator.py | 65 def is_not(a, b): function
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 78 .. function:: is_not(a, b) 392 | Identity | ``a is not b`` | ``is_not(a, b)`` |
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 78 .. function:: is_not(a, b) 644 | Identity | ``a is not b`` | ``is_not(a, b)`` |
|
/external/llvm/lib/Target/Lanai/ |
D | LanaiInstrFormats.td | 77 // For arithmetic instructions, `C' is set/cleared if there is/is_not
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/ |
D | LanaiInstrFormats.td | 77 // For arithmetic instructions, `C' is set/cleared if there is/is_not
|
/external/python/cpython3/Doc/howto/ |
D | functional.rst | 1093 * Object identity: ``is_()``, ``is_not()``.
|
/external/python/cpython2/Doc/howto/ |
D | functional.rst | 1113 * Object identity: ``is_()``, ``is_not()``.
|
/external/python/cpython2/Misc/ |
D | HISTORY | 5284 operator.is_not(a,b) which is equivalent to: a is not b.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 22668 operator.is_not(a,b) which is equivalent to: a is not b.
|