reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
19370     else if(PythonByteArray::Check(obj2)) {
19371       PythonByteArray bytearray(PyRefType::Borrowed, obj2);
23082     else if(PythonByteArray::Check(obj1)) {
23083       PythonByteArray bytearray(PyRefType::Borrowed, obj1);
25675     else if(PythonByteArray::Check(obj1)) {
25676       PythonByteArray bytearray(PyRefType::Borrowed, obj1);
43721     else if(PythonByteArray::Check(obj1)) {
43722       PythonByteArray bytearray(PyRefType::Borrowed, obj1);
45318     else if(PythonByteArray::Check(obj2)) {
45319       PythonByteArray bytearray(PyRefType::Borrowed, obj2);
59175     else if(PythonByteArray::Check(obj2)) {
59176       PythonByteArray bytearray(PyRefType::Borrowed, obj2);
59252     else if(PythonByteArray::Check(obj3)) {
59253       PythonByteArray bytearray(PyRefType::Borrowed, obj3);
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  110   if (PythonByteArray::Check(m_py_obj))
  281   *this = Take<PythonByteArray>(PyByteArray_FromStringAndSize(str, length));
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  128 template <typename T> T Take(PyObject *obj) {
  131   T thing(PyRefType::Owned, obj);
  415     T::Convert(type, py_obj);
  416     if (T::Check(py_obj))
  442 class PythonByteArray : public TypedPythonObject<PythonByteArray> {
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  248   PythonByteArray python_bytes(PyRefType::Owned, py_bytes);
usr/include/c++/7.4.0/bits/move.h
   98     move(_Tp&& __t) noexcept
usr/include/c++/7.4.0/type_traits
 1633     { typedef _Tp   type; };