Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp159 if (PythonTuple::Check(m_py_obj)) in GetObjectType()
558 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple
560 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()
563 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple
564 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()
567 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple
578 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple
590 bool PythonTuple::Check(PyObject *py_obj) { in Check()
596 uint32_t PythonTuple::GetSize() const { in GetSize()
602 PythonObject PythonTuple::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()
[all …]
H A DPythonDataObjects.h521 class PythonTuple : public TypedPythonObject<PythonTuple> {
525 explicit PythonTuple(PyInitialValue value);
526 explicit PythonTuple(int tuple_size);
527 PythonTuple(std::initializer_list<PythonObject> objects);
528 PythonTuple(std::initializer_list<PyObject *> objects);