Searched refs:PythonTuple (Results 1 – 3 of 3) sorted by relevance
160 if (PythonTuple::Check(m_py_obj)) in GetObjectType()559 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple() function in PythonTuple561 *this = Take<PythonTuple>(PyTuple_New(0)); in PythonTuple()564 PythonTuple::PythonTuple(int tuple_size) { in PythonTuple() function in PythonTuple565 *this = Take<PythonTuple>(PyTuple_New(tuple_size)); in PythonTuple()568 PythonTuple::PythonTuple(std::initializer_list<PythonObject> objects) { in PythonTuple() function in PythonTuple579 PythonTuple::PythonTuple(std::initializer_list<PyObject *> objects) { in PythonTuple() function in PythonTuple591 bool PythonTuple::Check(PyObject *py_obj) { in Check()597 uint32_t PythonTuple::GetSize() const { in GetSize()880 PythonTuple arg_tuple(args); in operator ()()[all …]
509 class PythonTuple : public TypedPythonObject<PythonTuple> {513 explicit PythonTuple(PyInitialValue value);514 explicit PythonTuple(int tuple_size);515 PythonTuple(std::initializer_list<PythonObject> objects);516 PythonTuple(std::initializer_list<PyObject *> objects);
369 PythonTuple tuple(PyInitialValue::Empty); in TEST_F()372 tuple = PythonTuple(3); in TEST_F()377 PythonTuple tuple(3); in TEST_F()396 PythonTuple tuple{int_value, string_value, none_value}; in TEST_F()409 PythonTuple tuple{int_value.get(), string_value.get(), none_value.get()}; in TEST_F()421 PythonTuple tuple{int_value.get(), string_value.get()}; in TEST_F()543 PythonTuple three = {one, two}; in TEST_F()545 PythonTuple tuple_to_convert = {one, two, three}; in TEST_F()