Searched refs:PythonTuple (Results 1 – 2 of 2) sorted by relevance
161 if (PythonTuple::Check(m_py_obj)) in GetObjectType()581 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple583 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()586 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple587 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()590 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple601 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple613 bool PythonTuple::Check(PyObject *py_obj) { in Check()619 uint32_t PythonTuple::GetSize() const { in GetSize()625 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);