HomeSort by relevance Sort by last modified time
    Searched refs:is_not (Results 1 - 19 of 19) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bool.py 299 self.assertIs(operator.is_not(True, True), False)
300 self.assertIs(operator.is_not(True, False), True)
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))
  /external/python/cpython2/Lib/test/
test_bool.py 298 self.assertIs(operator.is_not(True, True), False)
299 self.assertIs(operator.is_not(True, False), True)
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))
  /external/python/cpython3/Lib/test/
test_bool.py 269 self.assertIs(operator.is_not(True, True), False)
270 self.assertIs(operator.is_not(True, False), True)
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))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bool.py 298 self.assertIs(operator.is_not(True, True), False)
299 self.assertIs(operator.is_not(True, False), True)
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))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bool.py 298 self.assertIs(operator.is_not(True, True), False)
299 self.assertIs(operator.is_not(True, False), True)
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))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bool.py 298 self.assertIs(operator.is_not(True, True), False)
299 self.assertIs(operator.is_not(True, False), True)
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))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bool.py 298 self.assertIs(operator.is_not(True, True), False)
299 self.assertIs(operator.is_not(True, False), True)
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))
  /external/python/cpython3/Lib/
operator.py 17 'is_', 'is_not', 'isub', 'itemgetter', 'itruediv', 'ixor', 'le',
65 def is_not(a, b): function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
operator.c 176 is_not(PyObject *s, PyObject *a) function
179 if (PyArg_UnpackTuple(a,"is_not", 2, 2, &a1, &a2)) {
386 spam1(is_not, "is_not(a, b) -- Same as a is not b.")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
operator.c 176 is_not(PyObject *s, PyObject *a) function
179 if (PyArg_UnpackTuple(a,"is_not", 2, 2, &a1, &a2)) {
260 spam1(is_not, "is_not(a, b) -- Same as a is not b.")
  /external/python/cpython2/Modules/
operator.c 176 is_not(PyObject *s, PyObject *a) function
179 if (PyArg_UnpackTuple(a,"is_not", 2, 2, &a1, &a2)) {
386 spam1(is_not, "is_not(a, b) -- Same as a is not b.")
  /external/python/cpython3/Modules/
_operator.c 150 is_not(PyObject *s, PyObject *a) function
153 if (PyArg_UnpackTuple(a,"is_not", 2, 2, &a1, &a2)) {
343 spam1(is_not, "is_not(a, b) -- Same as a is not b.")
    [all...]

Completed in 229 milliseconds