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

Declarations

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
   67 class PythonList;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
22973     if (PythonList::Check(obj2)) {
22974       PythonList list(PyRefType::Borrowed, obj2);
34821     if (PythonList::Check(obj0)) {
34822       PythonList list(PyRefType::Borrowed, obj0);
35282     if (PythonList::Check(obj1)) {
35283       PythonList list(PyRefType::Borrowed, obj1);
35410     if (PythonList::Check(obj1)) {
35411       PythonList list(PyRefType::Borrowed, obj1);
44224     if (PythonList::Check(obj1)) {
44225       PythonList list(PyRefType::Borrowed, obj1);
44249     if (PythonList::Check(obj2)) {
44250       PythonList list(PyRefType::Borrowed, obj2);
49600     if (PythonList::Check(obj1)) {
49601       PythonList list(PyRefType::Borrowed, obj1);
49717         if (PythonList::Check(argv[1])) {
49718           PythonList list(PyRefType::Borrowed, argv[1]);
52962     if (PythonList::Check(obj2)) {
52963       PythonList list(PyRefType::Borrowed, obj2);
52987     if (PythonList::Check(obj3)) {
52988       PythonList list(PyRefType::Borrowed, obj3);
53105     if (PythonList::Check(obj1)) {
53106       PythonList list(PyRefType::Borrowed, obj1);
53130     if (PythonList::Check(obj2)) {
53131       PythonList list(PyRefType::Borrowed, obj2);
53278           if (PythonList::Check(argv[2])) {
53279             PythonList list(PyRefType::Borrowed, argv[2]);
53298             if (PythonList::Check(argv[3])) {
53299               PythonList list(PyRefType::Borrowed, argv[3]);
56324     if (PythonList::Check(obj1)) {
56325       PythonList list(PyRefType::Borrowed, obj1);
56416     if (PythonList::Check(obj1)) {
56417       PythonList list(PyRefType::Borrowed, obj1);
56517     if (PythonList::Check(obj1)) {
56518       PythonList list(PyRefType::Borrowed, obj1);
56604         if (PythonList::Check(argv[1])) {
56605           PythonList list(PyRefType::Borrowed, argv[1]);
56648         if (PythonList::Check(argv[1])) {
56649           PythonList list(PyRefType::Borrowed, argv[1]);
56698         if (PythonList::Check(argv[1])) {
56699           PythonList list(PyRefType::Borrowed, argv[1]);
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
   98   if (PythonList::Check(m_py_obj))
  525     *this = Take<PythonList>(PyList_New(0));
  529   *this = Take<PythonList>(PyList_New(list_size));
  668 PythonList PythonDictionary::GetKeys() const {
  740   PythonList keys(GetKeys());
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  128 template <typename T> T Take(PyObject *obj) {
  131   T thing(PyRefType::Owned, obj);
  304   template <typename T> T AsType() const {
  305     if (!T::Check(m_py_obj))
  415     T::Convert(type, py_obj);
  416     if (T::Check(py_obj))
  516 class PythonList : public TypedPythonObject<PythonList> {
  570   PythonList GetKeys() const;
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
 1549     PythonList result_list(PyRefType::Borrowed, py_return.get());
 1690     PythonList result_list(PyRefType::Borrowed, py_return.get());
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  321   PythonList list(PyRefType::Owned, py_list);
  353   PythonList list(PyInitialValue::Empty);
  378   PythonList list(PyInitialValue::Empty);
  576   auto list_result = result.AsType<PythonList>();
  576   auto list_result = result.AsType<PythonList>();
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; };