Home
last modified time | relevance | path

Searched refs:PyObject_Format (Results 1 – 22 of 22) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dabstract.h363 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject *obj,
/aosp_15_r20/external/python/cpython3/Include/
Dabstract.h363 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject *obj,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dabstract.h363 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject *obj,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dabstract.h363 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject *obj,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dabstract.h363 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject *obj,
/aosp_15_r20/external/python/cpython2/Include/
Dabstract.h623 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject* obj,
/aosp_15_r20/external/python/cpython2/Objects/stringlib/
Dstring_format.h605 result = PyObject_Format(fieldobj, format_spec_object); in render_field()
/aosp_15_r20/external/python/cpython3/Objects/stringlib/
Dunicode_format.h538 result = PyObject_Format(fieldobj, format_spec_object); in render_field()
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c448 EXPORT_FUNC(PyObject_Format)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat499 function,PyObject_Format,3.2,,
Dpython3.11.abi521 …<elf-symbol name='PyObject_Format' type='func-type' binding='global-binding' visibility='default-v…
6698PyObject_Format' mangled-name='PyObject_Format' filepath='Objects/abstract.c' line='770' column='1…
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dobject.rst182 .. c:function:: PyObject* PyObject_Format(PyObject *obj, PyObject *format_spec)
/aosp_15_r20/external/python/cpython3/Python/
Dbltinmodule.c692 return PyObject_Format(value, format_spec); in builtin_format_impl()
Dceval.c5526 result = PyObject_Format(value, fmt_spec);
/aosp_15_r20/external/python/cpython2/Python/
Dbltinmodule.c369 return PyObject_Format(value, format_spec); in builtin_format()
/aosp_15_r20/external/python/cpython2/Objects/
Dabstract.c724 PyObject_Format(PyObject* obj, PyObject *format_spec) function
Dtypeobject.c3643 result = PyObject_Format(self_as_str, format_spec);
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1149 [function.PyObject_Format]
/aosp_15_r20/external/python/cpython3/Objects/
Dabstract.c770 PyObject_Format(PyObject *obj, PyObject *format_spec) in PyObject_Format() function
/aosp_15_r20/external/python/cpython3/Doc/library/
Ddis.rst1302 Formatting is performed using :c:func:`PyObject_Format`. The
/aosp_15_r20/external/python/cpython3/Tools/c-analyzer/
DTODO290 Objects/abstract.c:PyObject_Format():PyId___format__ _Py_IDENTIFIER(__format__)
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst76 string.Formatter; and the C API PyObject_Format().