Lines Matching refs:PythonTuple
155 if (PythonTuple::Check(m_py_obj)) in GetObjectType()
628 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple
630 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()
633 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple
634 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()
637 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple
648 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple
660 bool PythonTuple::Check(PyObject *py_obj) { in Check()
666 uint32_t PythonTuple::GetSize() const { in GetSize()
672 PythonObject PythonTuple::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()
678 void PythonTuple::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex()
687 StructuredData::ArraySP PythonTuple::CreateStructuredArray() const { in CreateStructuredArray()
959 PythonTuple arg_tuple(args); in operator ()()
966 PythonTuple arg_tuple(args); in operator ()()