Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp157 if (PythonDictionary::Check(m_py_obj)) in GetObjectType()
699 PythonDictionary::PythonDictionary(PyInitialValue value) { in PythonDictionary() function in PythonDictionary
701 *this = Take<PythonDictionary>(PyDict_New()); in PythonDictionary()
704 bool PythonDictionary::Check(PyObject *py_obj) { in Check()
711 uint32_t PythonDictionary::GetSize() const { in GetSize()
717 PythonList PythonDictionary::GetKeys() const { in GetKeys()
769 Error PythonDictionary::SetItem(const Twine &key, in SetItem()
787 PythonDictionary::CreateStructuredDictionary() const { in CreateStructuredDictionary()
841 PythonDictionary PythonModule::GetDictionary() const { in GetDictionary()
843 return PythonDictionary(); in GetDictionary()
[all …]
H A DPythonDataObjects.h70 class PythonDictionary; variable
290 const PythonDictionary &dict);
294 const PythonDictionary &dict) {
558 class PythonDictionary : public TypedPythonObject<PythonDictionary> {
562 PythonDictionary() : TypedPythonObject() {} // MSVC requires this for some reason
564 explicit PythonDictionary(PyInitialValue value);
611 PythonDictionary GetDictionary() const;
717 const PythonDictionary &globals,
718 const PythonDictionary &locals);
721 const PythonDictionary &globals,
[all …]
H A DScriptInterpreterPython.cpp748 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in SetStdHandle()
811 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in EnterSession()
859 PythonDictionary main_dict(PyRefType::Borrowed, in GetSessionDictionary()
889 .ResolveName<PythonDictionary>(m_dictionary_name); in GetMaxPositionalArgumentsForCallable()
928 PythonDictionary module_dict(PyRefType::Borrowed, in GetEmbeddedInterpreterModuleObjects()
990 PythonDictionary &session_dict = GetSessionDictionary(); in ExecuteOneLine()
1100 PythonDictionary globals = main_module.GetDictionary(); in ExecuteOneLineWithReturn()
1102 PythonDictionary locals = GetSessionDictionary(); in ExecuteOneLineWithReturn()
1224 PythonDictionary globals = main_module.GetDictionary(); in ExecuteMultipleLines()
1226 PythonDictionary locals = GetSessionDictionary(); in ExecuteMultipleLines()
[all …]
H A DScriptInterpreterPythonImpl.h386 python::PythonDictionary &GetSessionDictionary();
388 python::PythonDictionary &GetSysModuleDictionary();
402 python::PythonDictionary m_session_dict;
403 python::PythonDictionary m_sys_module_dict;
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig69 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
124 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
172 if (!PythonDictionary::Check(py_dict))
175 PythonDictionary dict(PyRefType::Borrowed, py_dict);
227 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
262 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
294 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
360 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
474 auto dict = PythonModule::MainModule().ResolveName<PythonDictionary>(session_dictionary_name);
576 PythonModule::MainModule().ResolveName<PythonDictionary>(
[all …]