Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp155 if (PythonTuple::Check(m_py_obj)) in GetObjectType()
628 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple
630 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()
633 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple
634 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()
637 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple
648 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple
660 bool PythonTuple::Check(PyObject *py_obj) { in Check()
666 uint32_t PythonTuple::GetSize() const { in GetSize()
959 PythonTuple arg_tuple(args); in operator ()()
[all …]
H A DPythonDataObjects.h538 class PythonTuple : public TypedPythonObject<PythonTuple> {
542 explicit PythonTuple(PyInitialValue value);
543 explicit PythonTuple(int tuple_size);
544 PythonTuple(std::initializer_list<PythonObject> objects);
545 PythonTuple(std::initializer_list<PyObject *> objects);