Searched refs:PythonTuple (Results 1 – 2 of 2) sorted by relevance
69 if (PythonTuple::Check(m_py_obj)) in GetObjectType()614 PythonTuple::PythonTuple(PyInitialValue value) : PythonObject() { in PythonTuple() function in PythonTuple619 PythonTuple::PythonTuple(int tuple_size) : PythonObject() { in PythonTuple() function in PythonTuple623 PythonTuple::PythonTuple(PyRefType type, PyObject *py_obj) : PythonObject() { in PythonTuple() function in PythonTuple627 PythonTuple::PythonTuple(const PythonTuple &tuple) : PythonObject(tuple) {} in PythonTuple() function in PythonTuple629 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple640 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple652 PythonTuple::~PythonTuple() {} in ~PythonTuple()665 if (!PythonTuple::Check(py_obj)) { in Reset()921 PythonTuple arg_tuple(args); in operator ()()[all …]
329 class PythonTuple : public PythonObject {331 PythonTuple() {} in PythonTuple() function332 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;