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

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
yasm.pyx 57 cdef void Py_INCREF(object o)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h 662 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
765 #define Py_INCREF(op) ( \
822 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
829 PyAPI_FUNC(void) Py_IncRef(PyObject *);
836 Don't forget to apply Py_INCREF() when returning this value!!!
842 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h 662 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
765 #define Py_INCREF(op) ( \
822 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
829 PyAPI_FUNC(void) Py_IncRef(PyObject *);
836 Don't forget to apply Py_INCREF() when returning this value!!!
842 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
    [all...]

Completed in 187 milliseconds