OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PyObject_INIT
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
objimpl.h
44
-
PyObject_Init
(op, typeobj) and PyObject_InitVar(op, typeobj, n) don't
150
PyAPI_FUNC(PyObject *)
PyObject_Init
(PyObject *, PyTypeObject *);
163
#define
PyObject_INIT
(op, typeobj) \
166
( Py_SIZE(op) = (size),
PyObject_INIT
((op), (typeobj)) )
193
( (type *)
PyObject_Init
( \
217
PyObject_Init
(op, &YourTypeStruct);
226
constructor you would start directly with
PyObject_Init
/InitVar
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
objimpl.h
44
-
PyObject_Init
(op, typeobj) and PyObject_InitVar(op, typeobj, n) don't
150
PyAPI_FUNC(PyObject *)
PyObject_Init
(PyObject *, PyTypeObject *);
163
#define
PyObject_INIT
(op, typeobj) \
166
( Py_SIZE(op) = (size),
PyObject_INIT
((op), (typeobj)) )
193
( (type *)
PyObject_Init
( \
217
PyObject_Init
(op, &YourTypeStruct);
226
constructor you would start directly with
PyObject_Init
/InitVar
Completed in 25 milliseconds