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

  /external/chromium_org/third_party/cython/src/Cython/Runtime/
refnanny.pyx 1 from cpython.ref cimport PyObject, Py_INCREF, Py_DECREF, Py_XDECREF, Py_XINCREF
141 Py_XINCREF(obj)
  /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.
822 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(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.
822 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
    [all...]

Completed in 134 milliseconds