Home
last modified time | relevance | path

Searched refs:PyByteArray_Type (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython3/Include/
Dbytearrayobject.h20 PyAPI_DATA(PyTypeObject) PyByteArray_Type;
24 #define PyByteArray_Check(self) PyObject_TypeCheck((self), &PyByteArray_Type)
25 #define PyByteArray_CheckExact(self) Py_IS_TYPE((self), &PyByteArray_Type)
/external/python/cpython3/Doc/c-api/
Dbytearray.rst16 .. c:var:: PyTypeObject PyByteArray_Type
/external/python/cpython3/Objects/
Dbytearrayobject.c85 return PyObject_CallOneArg((PyObject *)&PyByteArray_Type, input); in PyByteArray_FromObject()
125 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); in PyByteArray_FromStringAndSize()
2155 PyObject *result = _PyBytes_FromHex(string, type == &PyByteArray_Type); in bytearray_fromhex_impl()
2156 if (type != &PyByteArray_Type && result != NULL) { in bytearray_fromhex_impl()
2389 PyTypeObject PyByteArray_Type = { variable
Dobject.c2248 &PyByteArray_Type,
Dtypeobject.c10917 || type == &PyByteArray_Type in expect_manually_inherited()
/external/python/cpython3/Modules/_sqlite/
Dmodule.c133 || type == &PyUnicode_Type || type == &PyByteArray_Type) { in pysqlite_register_adapter_impl()
Dcursor.c422 } else if (self->connection->text_factory == (PyObject*)&PyByteArray_Type) { in _pysqlite_fetch_one_row()
/external/python/cpython3/Tools/c-analyzer/cpython/
Dglobals-to-fix.tsv14 Objects/bytearrayobject.c - PyByteArray_Type -
/external/python/cpython3/PC/
Dpython3dll.c794 EXPORT_DATA(PyByteArray_Type)
/external/python/cpython3/Doc/data/
Dstable_abi.dat29 data,PyByteArray_Type,3.2,,
Dpython3.13.abi1475 …<elf-symbol name='PyByteArray_Type' size='416' type='object-type' binding='global-binding' visibil…
4867PyByteArray_Type' type-id='type-id-266' mangled-name='PyByteArray_Type' visibility='default' filep…
/external/python/cpython3/Modules/
D_pickle.c2487 (PyObject *) &PyByteArray_Type); in save_bytearray()
2493 (PyObject *) &PyByteArray_Type, in save_bytearray()
4353 else if (type == &PyByteArray_Type) { in save()
/external/python/cpython3/Tools/c-analyzer/
DTODO627 Objects/bytearrayobject.c:PyByteArray_Type PyTypeObject PyByteArray_Type
/external/python/cpython3/Python/
Dbltinmodule.c3169 SETBUILTIN("bytearray", &PyByteArray_Type); in _PyBuiltin_Init()
/external/python/cpython3/Misc/
Dstable_abi.toml422 [data.PyByteArray_Type]