Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp157 if (PythonList::Check(m_py_obj)) in GetObjectType()
502 PythonList::PythonList(PyInitialValue value) { in PythonList() function in PythonList
504 *this = Take<PythonList>(PyList_New(0)); in PythonList()
507 PythonList::PythonList(int list_size) { in PythonList() function in PythonList
508 *this = Take<PythonList>(PyList_New(list_size)); in PythonList()
511 bool PythonList::Check(PyObject *py_obj) { in Check()
517 uint32_t PythonList::GetSize() const { in GetSize()
538 void PythonList::AppendItem(const PythonObject &object) { in AppendItem()
647 PythonList PythonDictionary::GetKeys() const { in GetKeys()
650 return PythonList(PyInitialValue::Invalid); in GetKeys()
[all …]
H A DPythonDataObjects.h69 class PythonList; variable
499 class PythonList : public TypedPythonObject<PythonList> {
503 PythonList() : TypedPythonObject() {} // MSVC requires this for some reason
505 explicit PythonList(PyInitialValue value);
506 explicit PythonList(int list_size);
553 PythonList GetKeys() const;
H A DScriptedPythonInterface.cpp34 python::PythonList result_list(python::PyRefType::Borrowed, p.get()); in ExtractValueFromPythonObject()
H A DScriptInterpreterPython.cpp1472 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()
1565 PythonList result_list(PyRefType::Borrowed, py_return.get()); in OSPlugin_ThreadsInfo()
/openbsd/gnu/llvm/lldb/bindings/python/
H A Dpython-typemaps.swig11 if (PythonList::Check($input)) {
12 PythonList list(PyRefType::Borrowed, $input);
38 if (PythonList::Check($input)) {
39 PythonList list(PyRefType::Borrowed, $input);
63 PythonList list(len);
/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBTarget.i596 if (PythonList::Check($input)) {
597 PythonList list(PyRefType::Borrowed, $input);