Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp69 if (PythonTuple::Check(m_py_obj)) in GetObjectType()
614 PythonTuple::PythonTuple(PyInitialValue value) : PythonObject() { in PythonTuple() function in PythonTuple
619 PythonTuple::PythonTuple(int tuple_size) : PythonObject() { in PythonTuple() function in PythonTuple
623 PythonTuple::PythonTuple(PyRefType type, PyObject *py_obj) : PythonObject() { in PythonTuple() function in PythonTuple
627 PythonTuple::PythonTuple(const PythonTuple &tuple) : PythonObject(tuple) {} in PythonTuple() function in PythonTuple
629 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple
640 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple
652 PythonTuple::~PythonTuple() {} in ~PythonTuple()
665 if (!PythonTuple::Check(py_obj)) { in Reset()
921 PythonTuple arg_tuple(args); in operator ()()
[all …]
H A DPythonDataObjects.h329 class PythonTuple : public PythonObject {
331 PythonTuple() {} in PythonTuple() function
332 explicit PythonTuple(PyInitialValue value);
333 explicit PythonTuple(int tuple_size);
334 PythonTuple(PyRefType type, PyObject *o);
335 PythonTuple(const PythonTuple &tuple);
336 PythonTuple(std::initializer_list<PythonObject> objects);
337 PythonTuple(std::initializer_list<PyObject *> objects);
339 ~PythonTuple() override;