Lines Matching refs:PythonDictionary
71 if (PythonDictionary::Check(m_py_obj)) in GetObjectType()
110 const PythonDictionary &dict) { in ResolveNameWithDictionary()
180 return PythonDictionary(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
710 PythonDictionary::PythonDictionary(PyInitialValue value) : PythonObject() { in PythonDictionary() function in PythonDictionary
715 PythonDictionary::PythonDictionary(PyRefType type, PyObject *py_obj) in PythonDictionary() function in PythonDictionary
720 PythonDictionary::PythonDictionary(const PythonDictionary &object) in PythonDictionary() function in PythonDictionary
723 PythonDictionary::~PythonDictionary() {} in ~PythonDictionary()
725 bool PythonDictionary::Check(PyObject *py_obj) { in Check()
732 void PythonDictionary::Reset(PyRefType type, PyObject *py_obj) { in Reset()
737 if (!PythonDictionary::Check(py_obj)) { in Reset()
747 uint32_t PythonDictionary::GetSize() const { in GetSize()
753 PythonList PythonDictionary::GetKeys() const { in GetKeys()
759 PythonObject PythonDictionary::GetItemForKey(const PythonObject &key) const { in GetItemForKey()
766 void PythonDictionary::SetItemForKey(const PythonObject &key, in SetItemForKey()
773 PythonDictionary::CreateStructuredDictionary() const { in CreateStructuredDictionary()
838 PythonDictionary PythonModule::GetDictionary() const { in GetDictionary()
839 return PythonDictionary(PyRefType::Borrowed, PyModule_GetDict(m_py_obj)); in GetDictionary()
959 PythonDictionary io_dict(PyRefType::Borrowed, in Check()