Home
last modified time | relevance | path

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

/freebsd-14.2/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()
918 PythonTuple arg_tuple(args); in operator ()()
[all …]
H A DPythonDataObjects.h535 class PythonTuple : public TypedPythonObject<PythonTuple> {
539 explicit PythonTuple(PyInitialValue value);
540 explicit PythonTuple(int tuple_size);
541 PythonTuple(std::initializer_list<PythonObject> objects);
542 PythonTuple(std::initializer_list<PyObject *> objects);