Home
last modified time | relevance | path

Searched refs:PythonDictionary (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp71 if (PythonDictionary::Check(m_py_obj)) in GetObjectType()
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()
737 if (!PythonDictionary::Check(py_obj)) { in Reset()
747 uint32_t PythonDictionary::GetSize() const { in GetSize()
753 PythonList PythonDictionary::GetKeys() const { in GetKeys()
773 PythonDictionary::CreateStructuredDictionary() const { in CreateStructuredDictionary()
[all …]
H A DPythonDataObjects.h33 class PythonDictionary; variable
164 const PythonDictionary &dict);
168 const PythonDictionary &dict) { in ResolveNameWithDictionary()
357 class PythonDictionary : public PythonObject {
359 PythonDictionary() {} in PythonDictionary() function
360 explicit PythonDictionary(PyInitialValue value);
361 PythonDictionary(PyRefType type, PyObject *o);
362 PythonDictionary(const PythonDictionary &dict);
364 ~PythonDictionary() override;
406 PythonDictionary GetDictionary() const;
H A DScriptInterpreterPython.h578 PythonDictionary &GetSessionDictionary();
580 PythonDictionary &GetSysModuleDictionary();
592 PythonDictionary m_session_dict;
593 PythonDictionary m_sys_module_dict;
H A DScriptInterpreterPython.cpp555 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in LeaveSession()
582 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in SetStdHandle()
645 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in EnterSession()
690 PythonDictionary &ScriptInterpreterPython::GetSessionDictionary() { in GetSessionDictionary()
698 PythonDictionary main_dict(PyRefType::Borrowed, in GetSessionDictionary()
744 PythonDictionary module_dict(PyRefType::Borrowed, in GetEmbeddedInterpreterModuleObjects()
870 PythonDictionary &session_dict = GetSessionDictionary(); in ExecuteOneLine()
1057 PythonDictionary globals(PyRefType::Borrowed, in ExecuteOneLineWithReturn()
1063 PythonDictionary locals = GetSessionDictionary(); in ExecuteOneLineWithReturn()
1213 PythonDictionary globals(PyRefType::Borrowed, in ExecuteMultipleLines()
[all …]