Searched refs:PythonList (Results 1 – 6 of 6) sorted by relevance
161 if (PythonList::Check(m_py_obj)) in GetObjectType()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()563 void PythonList::AppendItem(const PythonObject &object) { in AppendItem()686 PythonList PythonDictionary::GetKeys() const { in GetKeys()689 return PythonList(PyInitialValue::Invalid); in GetKeys()[all …]
69 class PythonList; variable513 class PythonList : public TypedPythonObject<PythonList> {517 PythonList() : TypedPythonObject() {} // MSVC requires this for some reason519 explicit PythonList(PyInitialValue value);520 explicit PythonList(int list_size);569 PythonList GetKeys() const;
1510 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments()
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);625 if (PythonList::Check($input)) {626 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()