Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp161 if (PythonList::Check(m_py_obj)) in GetObjectType()
527 PythonList::PythonList(PyInitialValue value) { in PythonList() function in PythonList
529 *this = Take<PythonList>(PyList_New(0)); in PythonList()
532 PythonList::PythonList(int list_size) { in PythonList() function in PythonList
533 *this = Take<PythonList>(PyList_New(list_size)); in PythonList()
536 bool PythonList::Check(PyObject *py_obj) { in Check()
542 uint32_t PythonList::GetSize() const { in GetSize()
563 void PythonList::AppendItem(const PythonObject &object) { in AppendItem()
686 PythonList PythonDictionary::GetKeys() const { in GetKeys()
689 return PythonList(PyInitialValue::Invalid); in GetKeys()
[all …]
H A DPythonDataObjects.h69 class PythonList; variable
513 class PythonList : public TypedPythonObject<PythonList> {
517 PythonList() : TypedPythonObject() {} // MSVC requires this for some reason
519 explicit PythonList(PyInitialValue value);
520 explicit PythonList(int list_size);
569 PythonList GetKeys() const;
H A DScriptInterpreterPython.cpp1510 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-typemaps.swig17 if (PythonList::Check($input)) {
18 PythonList list(PyRefType::Borrowed, $input);
43 if (PythonList::Check($input)) {
44 PythonList list(PyRefType::Borrowed, $input);
149 PythonList list(len);
625 if (PythonList::Check($input)) {
626 PythonList list(PyRefType::Borrowed, $input);
/freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/
H A DSBTargetExtensions.i5 if (PythonList::Check($input)) {
6 PythonList list(PyRefType::Borrowed, $input);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.cpp33 python::PythonList result_list(python::PyRefType::Borrowed, p.get()); in ExtractValueFromPythonObject()