Searched refs:PythonList (Results 1 – 7 of 7) sorted by relevance
161 if (PythonList::Check(m_py_obj)) in GetObjectType()284 return PythonList(PyRefType::Borrowed, m_py_obj).CreateStructuredArray(); in CreateStructuredObject()527 PythonList::PythonList(PyInitialValue value) { in PythonList() function in PythonList529 *this = Take<PythonList>(PyList_New(0)); in PythonList()532 PythonList::PythonList(int list_size) { in PythonList() function in PythonList533 *this = Take<PythonList>(PyList_New(list_size)); in PythonList()536 bool PythonList::Check(PyObject *py_obj) { in Check()542 uint32_t PythonList::GetSize() const { in GetSize()548 PythonObject PythonList::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()554 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;
1515 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()2941 PythonList py_return = unwrapOrSetPythonException( in GetArgumentsForCommandObject()2942 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);642 if (PythonList::Check($input)) {643 PythonList list(PyRefType::Borrowed, $input);
5 if (PythonList::Check($input)) {6 PythonList list(PyRefType::Borrowed, $input);
33 python::PythonList result_list(python::PyRefType::Borrowed, p.get()); in ExtractValueFromPythonObject()