Searched refs:PythonList (Results 1 – 8 of 8) sorted by relevance
159 if (PythonList::Check(m_py_obj)) in GetObjectType()282 return PythonList(PyRefType::Borrowed, m_py_obj).CreateStructuredArray(); in CreateStructuredObject()525 PythonList::PythonList(PyInitialValue value) { in PythonList() function in PythonList527 *this = Take<PythonList>(PyList_New(0)); in PythonList()530 PythonList::PythonList(int list_size) { in PythonList() function in PythonList531 *this = Take<PythonList>(PyList_New(list_size)); in PythonList()534 bool PythonList::Check(PyObject *py_obj) { in Check()540 uint32_t PythonList::GetSize() const { in GetSize()546 PythonObject PythonList::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()552 void PythonList::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex()[all …]
69 class PythonList; variable515 class PythonList : public TypedPythonObject<PythonList> {519 PythonList() : TypedPythonObject() {} // MSVC requires this for some reason521 explicit PythonList(PyInitialValue value);522 explicit PythonList(int list_size);571 PythonList GetKeys() const;
1498 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()2954 PythonList py_return = unwrapOrSetPythonException( in GetArgumentsForCommandObject()2955 As<PythonList>(implementor.CallMethod(callee_name))); in GetArgumentsForCommandObject()
17 if (PythonList::Check($input)) {18 PythonList list(PyRefType::Borrowed, $input);43 if (PythonList::Check($input)) {44 PythonList list(PyRefType::Borrowed, $input);149 PythonList list(len);661 if (PythonList::Check($input)) {662 PythonList list(PyRefType::Borrowed, $input);
682 PythonList args_list(PyInitialValue::Empty);
5 if (PythonList::Check($input)) {6 PythonList list(PyRefType::Borrowed, $input);
33 python::PythonList result_list(python::PyRefType::Borrowed, p.get()); in ExtractValueFromPythonObject()