Searched refs:PythonTuple (Results 1 – 2 of 2) sorted by relevance
163 if (PythonTuple::Check(m_py_obj)) in GetObjectType()583 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple585 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()588 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple589 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()592 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple603 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple615 bool PythonTuple::Check(PyObject *py_obj) { in Check()621 uint32_t PythonTuple::GetSize() const { in GetSize()627 PythonObject PythonTuple::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()[all …]
537 class PythonTuple : public TypedPythonObject<PythonTuple> {541 explicit PythonTuple(PyInitialValue value);542 explicit PythonTuple(int tuple_size);543 PythonTuple(std::initializer_list<PythonObject> objects);544 PythonTuple(std::initializer_list<PyObject *> objects);