Lines Matching refs:PythonList
158 if (PythonList::Check(m_py_obj)) in GetObjectType()
275 return PythonList(PyRefType::Borrowed, m_py_obj).CreateStructuredArray(); in CreateStructuredObject()
503 PythonList::PythonList(PyInitialValue value) { in PythonList() function in PythonList
505 *this = Take<PythonList>(PyList_New(0)); in PythonList()
508 PythonList::PythonList(int list_size) { in PythonList() function in PythonList
509 *this = Take<PythonList>(PyList_New(list_size)); in PythonList()
512 bool PythonList::Check(PyObject *py_obj) { in Check()
518 uint32_t PythonList::GetSize() const { in GetSize()
524 PythonObject PythonList::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex()
530 void PythonList::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex()
539 void PythonList::AppendItem(const PythonObject &object) { in AppendItem()
547 StructuredData::ArraySP PythonList::CreateStructuredArray() const { in CreateStructuredArray()
648 PythonList PythonDictionary::GetKeys() const { in GetKeys()
650 return PythonList(PyRefType::Owned, PyDict_Keys(m_py_obj)); in GetKeys()
651 return PythonList(PyInitialValue::Invalid); in GetKeys()
716 PythonList keys(GetKeys()); in CreateStructuredDictionary()