Home
last modified time | relevance | path

Searched refs:Py_VaBuildValue (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dmodsupport.h21 #define Py_VaBuildValue _Py_VaBuildValue_SizeT macro
38 PyAPI_FUNC(PyObject *) Py_VaBuildValue(const char *, va_list);
/external/python/cpython2/Python/
Dmodsupport.c528 Py_VaBuildValue(const char *format, va_list va) in Py_VaBuildValue() function
577 args = Py_VaBuildValue(format, vargs); in PyEval_CallFunction()
604 args = Py_VaBuildValue(format, vargs); in PyEval_CallMethod()
/external/python/cpython2/PC/os2vacpp/
Dpython.def447 Py_VaBuildValue
/external/python/cpython2/PC/os2emx/
Dpython27.def1003 "Py_VaBuildValue"
/external/python/cpython2/Objects/
Dabstract.c2597 args = Py_VaBuildValue(format, va);
2648 args = Py_VaBuildValue(format, va);
Dtypeobject.c1271 args = Py_VaBuildValue(format, va); in call_method()
1311 args = Py_VaBuildValue(format, va); in call_maybe()
/external/python/cpython2/Doc/c-api/
Darg.rst562 .. c:function:: PyObject* Py_VaBuildValue(const char *format, va_list vargs)
/external/python/cpython2/Modules/
DcPickle.c398 if (format) args = Py_VaBuildValue(format, va); in cPickle_ErrFormat()