HomeSort by relevance Sort by last modified time
    Searched defs:Py_XDECREF (Results 1 - 4 of 4) sorted by null

  /prebuilts/gdb/darwin-x86/include/python2.7/
object.h 668 NULL pointer. If it may be NULL, use Py_XINCREF/Py_XDECREF instead.
783 * Py_XDECREF(op);
823 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
object.h 668 NULL pointer. If it may be NULL, use Py_XINCREF/Py_XDECREF instead.
783 * Py_XDECREF(op);
823 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h 668 NULL pointer. If it may be NULL, use Py_XINCREF/Py_XDECREF instead.
783 * Py_XDECREF(op);
823 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h 668 NULL pointer. If it may be NULL, use Py_XINCREF/Py_XDECREF instead.
783 * Py_XDECREF(op);
823 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
    [all...]

Completed in 97 milliseconds