Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/_extends/parse/
Dresources.py106 T.is_not: F.is_not,
Dtrope.py24 not_, and_, or_, xor, lshift, rshift, invert, is_, is_not, contains,
/third_party/python/Lib/test/
Dtest_bool.py261 self.assertIs(operator.is_not(True, True), False)
262 self.assertIs(operator.is_not(True, False), True)
Dtest_operator.py328 self.assertRaises(TypeError, operator.is_not)
329 self.assertFalse(operator.is_not(a, b))
330 self.assertTrue(operator.is_not(a,c))
/third_party/python/Lib/
Doperator.py65 def is_not(a, b): function
/third_party/mindspore/mindspore/ops/
Dfunctional.py223 is_not = Primitive("is_not") variable
/third_party/python/Doc/library/
Doperator.rst78 .. function:: is_not(a, b)
395 | Identity | ``a is not b`` | ``is_not(a, b)`` |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiInstrFormats.td76 // For arithmetic instructions, `C' is set/cleared if there is/is_not
/third_party/python/Doc/howto/
Dfunctional.rst1092 * Object identity: ``is_()``, ``is_not()``.
/third_party/python/Misc/
DHISTORY22668 operator.is_not(a,b) which is equivalent to: a is not b.