Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp159 if (PythonList::Check(m_py_obj)) in GetObjectType()
282 return PythonList(PyRefType::Borrowed, m_py_obj).CreateStructuredArray(); in CreateStructuredObject()
525 PythonList::PythonList(PyInitialValue value) { in PythonList() function in PythonList
527 *this = Take<PythonList>(PyList_New(0)); in PythonList()
530 PythonList::PythonList(int list_size) { in PythonList() function in PythonList
531 *this = Take<PythonList>(PyList_New(list_size)); in PythonList()
534 bool PythonList::Check(PyObject *py_obj) { in Check()
540 uint32_t PythonList::GetSize() const { in GetSize()
546 PythonObject PythonList::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()
552 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.cpp1498 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()
2954 PythonList py_return = unwrapOrSetPythonException( in GetArgumentsForCommandObject()
2955 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);
661 if (PythonList::Check($input)) {
662 PythonList list(PyRefType::Borrowed, $input);
H A Dpython-wrapper.swig682 PythonList args_list(PyInitialValue::Empty);
/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()