Lines Matching refs:PythonTuple
163 if (PythonTuple::Check(m_py_obj)) in GetObjectType()
583 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple
585 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()
588 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple
589 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()
592 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple
603 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple
615 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()
633 void PythonTuple::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex()
642 StructuredData::ArraySP PythonTuple::CreateStructuredArray() const { in CreateStructuredArray()
918 PythonTuple arg_tuple(args); in operator ()()
925 PythonTuple arg_tuple(args); in operator ()()