Lines Matching refs:PythonTuple
160 if (PythonTuple::Check(m_py_obj)) in GetObjectType()
559 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple
561 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()
564 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple
565 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()
568 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple
579 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple
591 bool PythonTuple::Check(PyObject *py_obj) { in Check()
597 uint32_t PythonTuple::GetSize() const { in GetSize()
603 PythonObject PythonTuple::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()
609 void PythonTuple::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex()
618 StructuredData::ArraySP PythonTuple::CreateStructuredArray() const { in CreateStructuredArray()
880 PythonTuple arg_tuple(args); in operator ()()
887 PythonTuple arg_tuple(args); in operator ()()