Searched refs:PyObject_Size (Results 1 – 17 of 17) sorted by relevance
/third_party/python/Include/ |
D | abstract.h | 277 PyAPI_FUNC(Py_ssize_t) PyObject_Size(PyObject *o); 283 #define PyObject_Length PyObject_Size
|
/third_party/python/Modules/_io/ |
D | iobase.c | 664 if (PyObject_Size(line) <= 0) { in iobase_iternext() 731 line_length = PyObject_Size(line); in _io__IOBase_readlines_impl()
|
/third_party/python/Objects/ |
D | abstract.c | 53 PyObject_Size(PyObject *o) in PyObject_Size() function 74 return PyObject_Size(o); in PyObject_Length() 76 #define PyObject_Length PyObject_Size
|
D | dictobject.c | 4301 len_self = PyObject_Size(self); in dictview_richcompare() 4304 len_other = PyObject_Size(other); in dictview_richcompare() 4462 if (PySet_CheckExact(other) && len_self <= PyObject_Size(other)) { in _PyDictView_Intersect() 4686 Py_ssize_t len_other = PyObject_Size(other); in dictviews_isdisjoint()
|
D | descrobject.c | 1015 return PyObject_Size(pp->mapping); in mappingproxy_len()
|
D | object.c | 2002 Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
|
D | listobject.c | 2719 Py_ssize_t iter_len = PyObject_Size(iterable); in list___init___impl()
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 519 function,PyObject_Size,3.2,
|
D | refcounts.dat | 1799 PyObject_Size:Py_ssize_t::: 1800 PyObject_Size:PyObject*:o:0:
|
/third_party/python/PC/ |
D | python3dll.c | 475 EXPORT_FUNC(PyObject_Size)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.2rc1.rst | 525 errors caused by not checking results of PyObject_Size(), PySequence_Size(),
|
D | 3.5.4rc1.rst | 591 errors caused by not checking results of PyObject_Size(), PySequence_Size(),
|
D | 3.7.0a1.rst | 2903 errors caused by not checking results of PyObject_Size(), PySequence_Size(),
|
/third_party/python/Doc/c-api/ |
D | object.rst | 304 .. c:function:: Py_ssize_t PyObject_Size(PyObject *o)
|
D | typeobj.rst | 2206 :c:func:`PyObject_Size`, and has the same signature. This slot may be set to 2243 :c:func:`PyObject_Size`, and has the same signature. It is also used for
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1119 function PyObject_Size
|
/third_party/python/Python/ |
D | bltinmodule.c | 1671 res = PyObject_Size(obj); in builtin_len()
|