Lines Matching refs:PythonDictionary

165   if (PythonDictionary::Check(m_py_obj))  in GetObjectType()
204 const PythonDictionary &dict) { in ResolveNameWithDictionary()
269 return PythonDictionary(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
654 PythonDictionary::PythonDictionary(PyInitialValue value) { in PythonDictionary() function in PythonDictionary
656 *this = Take<PythonDictionary>(PyDict_New()); in PythonDictionary()
659 bool PythonDictionary::Check(PyObject *py_obj) { in Check()
666 bool PythonDictionary::HasKey(const llvm::Twine &key) const { in HasKey()
680 uint32_t PythonDictionary::GetSize() const { in GetSize()
686 PythonList PythonDictionary::GetKeys() const { in GetKeys()
692 PythonObject PythonDictionary::GetItemForKey(const PythonObject &key) const { in GetItemForKey()
702 PythonDictionary::GetItem(const PythonObject &key) const { in GetItem()
713 Expected<PythonObject> PythonDictionary::GetItem(const Twine &key) const { in GetItem()
724 Error PythonDictionary::SetItem(const PythonObject &key, in SetItem()
734 Error PythonDictionary::SetItem(const Twine &key, in SetItem()
744 void PythonDictionary::SetItemForKey(const PythonObject &key, in SetItemForKey()
752 PythonDictionary::CreateStructuredDictionary() const { in CreateStructuredDictionary()
800 PythonDictionary PythonModule::GetDictionary() const { in GetDictionary()
802 return PythonDictionary(); in GetDictionary()
803 return Retain<PythonDictionary>(PyModule_GetDict(m_py_obj)); in GetDictionary()
1468 PythonDictionary globals(PyInitialValue::Empty); in Init()
1487 const PythonDictionary &globals, in runStringOneLine()
1488 const PythonDictionary &locals) { in runStringOneLine()
1513 const PythonDictionary &globals, in runStringMultiLine()
1514 const PythonDictionary &locals) { in runStringMultiLine()