Home
last modified time | relevance | path

Searched refs:Py_VaBuildValue (Results 1 – 13 of 13) 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/cpython3/Include/
Dmodsupport.h21 #define Py_VaBuildValue _Py_VaBuildValue_SizeT macro
71 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/cpython3/Python/
Dmodsupport.c520 Py_VaBuildValue(const char *format, va_list va) in Py_VaBuildValue() function
/external/python/cpython3/PC/
Dpython3.def762 Py_VaBuildValue=python37.Py_VaBuildValue
/external/python/cpython2/PC/os2emx/
Dpython27.def1003 "Py_VaBuildValue"
/external/python/cpython3/Doc/data/
Drefcounts.dat2917 Py_VaBuildValue:PyObject*::+1:
2918 Py_VaBuildValue:const char*:format::
2919 Py_VaBuildValue:va_list:vargs::
/external/python/cpython2/Objects/
Dabstract.c2594 args = Py_VaBuildValue(format, va);
2645 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/cpython3/Doc/c-api/
Darg.rst673 .. 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()