Lines Matching refs:PythonDictionary
161 if (PythonDictionary::Check(m_py_obj)) in GetObjectType()
200 const PythonDictionary &dict) { in ResolveNameWithDictionary()
265 return PythonDictionary(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
629 PythonDictionary::PythonDictionary(PyInitialValue value) { in PythonDictionary() function in PythonDictionary
631 *this = Take<PythonDictionary>(PyDict_New()); in PythonDictionary()
634 bool PythonDictionary::Check(PyObject *py_obj) { in Check()
641 uint32_t PythonDictionary::GetSize() const { in GetSize()
647 PythonList PythonDictionary::GetKeys() const { in GetKeys()
653 PythonObject PythonDictionary::GetItemForKey(const PythonObject &key) const { in GetItemForKey()
663 PythonDictionary::GetItem(const PythonObject &key) const { in GetItem()
674 Expected<PythonObject> PythonDictionary::GetItem(const Twine &key) const { in GetItem()
685 Error PythonDictionary::SetItem(const PythonObject &key, in SetItem()
695 Error PythonDictionary::SetItem(const Twine &key, in SetItem()
705 void PythonDictionary::SetItemForKey(const PythonObject &key, in SetItemForKey()
713 PythonDictionary::CreateStructuredDictionary() const { in CreateStructuredDictionary()
761 PythonDictionary PythonModule::GetDictionary() const { in GetDictionary()
763 return PythonDictionary(); in GetDictionary()
764 return Retain<PythonDictionary>(PyModule_GetDict(m_py_obj)); in GetDictionary()
1429 PythonDictionary globals(PyInitialValue::Empty); in Init()
1448 const PythonDictionary &globals, in runStringOneLine()
1449 const PythonDictionary &locals) { in runStringOneLine()
1474 const PythonDictionary &globals, in runStringMultiLine()
1475 const PythonDictionary &locals) { in runStringMultiLine()