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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
object.h 664 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
767 #define Py_INCREF(op) ( \
824 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
object.h 652 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
755 #define Py_INCREF(op) ( \
812 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
819 PyAPI_FUNC(void) Py_IncRef(PyObject *);
    [all...]
  /external/python/cpython2/Include/
object.h 664 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
767 #define Py_INCREF(op) ( \
824 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
    [all...]
  /external/python/cpython3/Include/
object.h 678 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
783 #define Py_INCREF(op) ( \
845 Py_INCREF(_py_xincref_tmp); \
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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 6037 milliseconds