Lines Matching refs:PythonByteArray
79 if (PythonByteArray::Check(m_py_obj)) in GetObjectType()
192 return PythonByteArray(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
275 PythonByteArray::PythonByteArray(llvm::ArrayRef<uint8_t> bytes) in PythonByteArray() function in PythonByteArray
276 : PythonByteArray(bytes.data(), bytes.size()) {} in PythonByteArray()
278 PythonByteArray::PythonByteArray(const uint8_t *bytes, size_t length) { in PythonByteArray() function in PythonByteArray
283 PythonByteArray::PythonByteArray(PyRefType type, PyObject *o) { in PythonByteArray() function in PythonByteArray
287 PythonByteArray::PythonByteArray(const PythonBytes &object) in PythonByteArray() function in PythonByteArray
290 PythonByteArray::~PythonByteArray() {} in ~PythonByteArray()
292 bool PythonByteArray::Check(PyObject *py_obj) { in Check()
298 void PythonByteArray::Reset(PyRefType type, PyObject *py_obj) { in Reset()
303 if (!PythonByteArray::Check(py_obj)) { in Reset()
313 llvm::ArrayRef<uint8_t> PythonByteArray::GetBytes() const { in GetBytes()
322 size_t PythonByteArray::GetSize() const { in GetSize()
329 StructuredData::StringSP PythonByteArray::CreateStructuredString() const { in CreateStructuredString()