Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp161 if (PythonList::Check(m_py_obj)) in GetObjectType()
284 return PythonList(PyRefType::Borrowed, m_py_obj).CreateStructuredArray(); in CreateStructuredObject()
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()
548 PythonObject PythonList::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()
554 void PythonList::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex()
[all …]
H A DPythonDataObjects.h69 class PythonList; variable
515 class PythonList : public TypedPythonObject<PythonList> {
519 PythonList() : TypedPythonObject() {} // MSVC requires this for some reason
521 explicit PythonList(PyInitialValue value);
522 explicit PythonList(int list_size);
571 PythonList GetKeys() const;
H A DScriptedPythonInterface.cpp
H A DScriptInterpreterPython.cpp1515 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()
2941 PythonList py_return = unwrapOrSetPythonException( in GetArgumentsForCommandObject()
2942 As<PythonList>(implementor.CallMethod(callee_name))); in GetArgumentsForCommandObject()
/freebsd/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);
642 if (PythonList::Check($input)) {
643 PythonList list(PyRefType::Borrowed, $input);
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBTargetExtensions.i5 if (PythonList::Check($input)) {
6 PythonList list(PyRefType::Borrowed, $input);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.cpp33 python::PythonList result_list(python::PyRefType::Borrowed, p.get()); in ExtractValueFromPythonObject()