Lines Matching refs:PythonTuple
159 if (PythonTuple::Check(m_py_obj)) in GetObjectType()
558 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple
560 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()
563 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple
564 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()
567 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple
578 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple
590 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()
608 void PythonTuple::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex()
617 StructuredData::ArraySP PythonTuple::CreateStructuredArray() const { in CreateStructuredArray()
879 PythonTuple arg_tuple(args); in operator ()()
886 PythonTuple arg_tuple(args); in operator ()()