Home
last modified time | relevance | path

Searched refs:is_not (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/python/autograph/operators/
Dlogical.py113 is_not = operator.is_not variable
D__init__.py57 from tensorflow.python.autograph.operators.logical import is_not
/external/python/cpython2/Lib/test/
Dtest_operator.py363 self.assertRaises(TypeError, operator.is_not)
364 self.assertFalse(operator.is_not(a, b))
365 self.assertTrue(operator.is_not(a,c))
Dtest_bool.py298 self.assertIs(operator.is_not(True, True), False)
299 self.assertIs(operator.is_not(True, False), True)
/external/python/cpython3/Lib/test/
Dtest_bool.py273 self.assertIs(operator.is_not(True, True), False)
274 self.assertIs(operator.is_not(True, False), True)
Dtest_operator.py309 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/
Doperator.c176 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/
Doperator.py65 def is_not(a, b): function
/external/python/cpython3/Doc/library/
Doperator.rst78 .. function:: is_not(a, b)
392 | Identity | ``a is not b`` | ``is_not(a, b)`` |
/external/python/cpython2/Doc/library/
Doperator.rst78 .. function:: is_not(a, b)
644 | Identity | ``a is not b`` | ``is_not(a, b)`` |
/external/llvm/lib/Target/Lanai/
DLanaiInstrFormats.td77 // For arithmetic instructions, `C' is set/cleared if there is/is_not
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/
DLanaiInstrFormats.td77 // For arithmetic instructions, `C' is set/cleared if there is/is_not
/external/python/cpython3/Doc/howto/
Dfunctional.rst1093 * Object identity: ``is_()``, ``is_not()``.
/external/python/cpython2/Doc/howto/
Dfunctional.rst1113 * Object identity: ``is_()``, ``is_not()``.
/external/python/cpython2/Misc/
DHISTORY5284 operator.is_not(a,b) which is equivalent to: a is not b.
/external/python/cpython3/Misc/
DHISTORY22668 operator.is_not(a,b) which is equivalent to: a is not b.