Searched refs:PythonTuple (Results 1 – 2 of 2) sorted by relevance
159 if (PythonTuple::Check(m_py_obj)) in GetObjectType()558 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple560 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()563 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple564 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()567 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple578 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple590 bool PythonTuple::Check(PyObject *py_obj) { in Check()596 uint32_t PythonTuple::GetSize() const { in GetSize()602 PythonObject PythonTuple::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()[all …]
521 class PythonTuple : public TypedPythonObject<PythonTuple> {525 explicit PythonTuple(PyInitialValue value);526 explicit PythonTuple(int tuple_size);527 PythonTuple(std::initializer_list<PythonObject> objects);528 PythonTuple(std::initializer_list<PyObject *> objects);