Lines Matching refs:PythonDictionary

162   if (PythonDictionary::Check(m_py_obj))  in GetObjectType()
201 const PythonDictionary &dict) { in ResolveNameWithDictionary()
266 return PythonDictionary(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
630 PythonDictionary::PythonDictionary(PyInitialValue value) { in PythonDictionary() function in PythonDictionary
632 *this = Take<PythonDictionary>(PyDict_New()); in PythonDictionary()
635 bool PythonDictionary::Check(PyObject *py_obj) { in Check()
642 uint32_t PythonDictionary::GetSize() const { in GetSize()
648 PythonList PythonDictionary::GetKeys() const { in GetKeys()
654 PythonObject PythonDictionary::GetItemForKey(const PythonObject &key) const { in GetItemForKey()
664 PythonDictionary::GetItem(const PythonObject &key) const { in GetItem()
675 Expected<PythonObject> PythonDictionary::GetItem(const Twine &key) const { in GetItem()
686 Error PythonDictionary::SetItem(const PythonObject &key, in SetItem()
696 Error PythonDictionary::SetItem(const Twine &key, in SetItem()
706 void PythonDictionary::SetItemForKey(const PythonObject &key, in SetItemForKey()
714 PythonDictionary::CreateStructuredDictionary() const { in CreateStructuredDictionary()
762 PythonDictionary PythonModule::GetDictionary() const { in GetDictionary()
764 return PythonDictionary(); in GetDictionary()
765 return Retain<PythonDictionary>(PyModule_GetDict(m_py_obj)); in GetDictionary()
1430 PythonDictionary globals(PyInitialValue::Empty); in Init()
1449 const PythonDictionary &globals, in runStringOneLine()
1450 const PythonDictionary &locals) { in runStringOneLine()
1475 const PythonDictionary &globals, in runStringMultiLine()
1476 const PythonDictionary &locals) { in runStringMultiLine()