Home
last modified time | relevance | path

Searched refs:PythonTuple (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp163 if (PythonTuple::Check(m_py_obj)) in GetObjectType()
583 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple
585 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()
588 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple
589 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()
592 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple
603 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple
615 bool PythonTuple::Check(PyObject *py_obj) { in Check()
621 uint32_t PythonTuple::GetSize() const { in GetSize()
627 PythonObject PythonTuple::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()
[all …]
H A DPythonDataObjects.h537 class PythonTuple : public TypedPythonObject<PythonTuple> {
541 explicit PythonTuple(PyInitialValue value);
542 explicit PythonTuple(int tuple_size);
543 PythonTuple(std::initializer_list<PythonObject> objects);
544 PythonTuple(std::initializer_list<PyObject *> objects);