Home
last modified time | relevance | path

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

/third_party/python/Include/
Dbytearrayobject.h22 PyAPI_DATA(PyTypeObject) PyByteArray_Type;
26 #define PyByteArray_Check(self) PyObject_TypeCheck(self, &PyByteArray_Type)
27 #define PyByteArray_CheckExact(self) Py_IS_TYPE(self, &PyByteArray_Type)
/third_party/python/Doc/c-api/
Dbytearray.rst16 .. c:var:: PyTypeObject PyByteArray_Type
/third_party/python/Objects/
Dbytearrayobject.c82 return PyObject_CallOneArg((PyObject *)&PyByteArray_Type, input); in PyByteArray_FromObject()
122 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); in PyByteArray_FromStringAndSize()
2071 PyObject *result = _PyBytes_FromHex(string, type == &PyByteArray_Type); in bytearray_fromhex_impl()
2072 if (type != &PyByteArray_Type && result != NULL) { in bytearray_fromhex_impl()
2320 PyTypeObject PyByteArray_Type = { variable
Dobject.c1800 INIT_TYPE(PyByteArray_Type); in _PyTypes_Init()
/third_party/python/Modules/_sqlite/
Dmodule.c168 || type == &PyUnicode_Type || type == &PyByteArray_Type) { in pysqlite_register_adapter_impl()
Dcursor.c359 } else if (self->connection->text_factory == (PyObject*)&PyByteArray_Type) { in _pysqlite_fetch_one_row()
/third_party/python/Doc/data/
Dstable_abi.dat20 var,PyByteArray_Type,3.2,
/third_party/python/PC/
Dpython3dll.c733 EXPORT_DATA(PyByteArray_Type)
/third_party/python/Modules/
D_pickle.c2489 (PyObject *) &PyByteArray_Type); in save_bytearray()
2495 (PyObject *) &PyByteArray_Type, in save_bytearray()
4339 else if (type == &PyByteArray_Type) { in save()
/third_party/python/Python/
Dbltinmodule.c3015 SETBUILTIN("bytearray", &PyByteArray_Type); in _PyBuiltin_Init()
/third_party/python/Misc/
Dstable_abi.txt328 data PyByteArray_Type
/third_party/python/Tools/c-analyzer/
DTODO680 Objects/bytearrayobject.c:PyByteArray_Type PyTypeObject PyByteArray_Type
/third_party/python/Lib/test/
Dclinic.test143 i: object(subclass_of="&PyByteArray_Type")
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv1619 Objects/bytearrayobject.c - PyByteArray_Type -