Searched refs:is_not (Results 1 – 10 of 10) sorted by relevance
/third_party/mindspore/mindspore/_extends/parse/ |
D | resources.py | 106 T.is_not: F.is_not,
|
D | trope.py | 24 not_, and_, or_, xor, lshift, rshift, invert, is_, is_not, contains,
|
/third_party/python/Lib/test/ |
D | test_bool.py | 261 self.assertIs(operator.is_not(True, True), False) 262 self.assertIs(operator.is_not(True, False), True)
|
D | test_operator.py | 328 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/ |
D | operator.py | 65 def is_not(a, b): function
|
/third_party/mindspore/mindspore/ops/ |
D | functional.py | 223 is_not = Primitive("is_not") variable
|
/third_party/python/Doc/library/ |
D | operator.rst | 78 .. 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/ |
D | LanaiInstrFormats.td | 76 // For arithmetic instructions, `C' is set/cleared if there is/is_not
|
/third_party/python/Doc/howto/ |
D | functional.rst | 1092 * Object identity: ``is_()``, ``is_not()``.
|
/third_party/python/Misc/ |
D | HISTORY | 22668 operator.is_not(a,b) which is equivalent to: a is not b.
|