Home
last modified time | relevance | path

Searched refs:PythonList (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp67 if (PythonList::Check(m_py_obj)) in GetObjectType()
533 PythonList::PythonList(PyInitialValue value) : PythonObject() { in PythonList() function in PythonList
538 PythonList::PythonList(int list_size) : PythonObject() { in PythonList() function in PythonList
542 PythonList::PythonList(PyRefType type, PyObject *py_obj) : PythonObject() { in PythonList() function in PythonList
546 PythonList::PythonList(const PythonList &list) : PythonObject(list) {} in PythonList() function in PythonList
548 PythonList::~PythonList() {} in ~PythonList()
550 bool PythonList::Check(PyObject *py_obj) { in Check()
561 if (!PythonList::Check(py_obj)) { in Reset()
571 uint32_t PythonList::GetSize() const { in GetSize()
756 return PythonList(PyInitialValue::Invalid); in GetKeys()
[all …]
H A DPythonDataObjects.h32 class PythonList; variable
301 class PythonList : public PythonObject {
303 PythonList() {} in PythonList() function
304 explicit PythonList(PyInitialValue value);
305 explicit PythonList(int list_size);
306 PythonList(PyRefType type, PyObject *o);
307 PythonList(const PythonList &list);
309 ~PythonList() override;
375 PythonList GetKeys() const;
H A DScriptInterpreterPython.cpp1552 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()
1691 PythonList result_list(PyRefType::Borrowed, py_return.get()); in OSPlugin_ThreadsInfo()