Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp153 if (PythonList::Check(m_py_obj)) in GetObjectType()
572 PythonList::PythonList(PyInitialValue value) { in PythonList() function in PythonList
574 *this = Take<PythonList>(PyList_New(0)); in PythonList()
577 PythonList::PythonList(int list_size) { in PythonList() function in PythonList
578 *this = Take<PythonList>(PyList_New(list_size)); in PythonList()
581 bool PythonList::Check(PyObject *py_obj) { in Check()
587 uint32_t PythonList::GetSize() const { in GetSize()
608 void PythonList::AppendItem(const PythonObject &object) { in AppendItem()
717 PythonList PythonDictionary::GetKeys() const { in GetKeys()
720 return PythonList(PyInitialValue::Invalid); in GetKeys()
[all …]
H A DPythonDataObjects.h69 class PythonList; variable
516 class PythonList : public TypedPythonObject<PythonList> {
520 PythonList() : TypedPythonObject() {} // MSVC requires this for some reason
522 explicit PythonList(PyInitialValue value);
523 explicit PythonList(int list_size);
570 PythonList GetKeys() const;
H A DScriptInterpreterPython.cpp1586 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()
1727 PythonList result_list(PyRefType::Borrowed, py_return.get()); in OSPlugin_ThreadsInfo()
/freebsd-13.1/contrib/llvm-project/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);
62 PythonList list(len);
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBTarget.i590 if (PythonList::Check($input)) {
591 PythonList list(PyRefType::Borrowed, $input);