Home
last modified time | relevance | path

Searched refs:PyInitialValue (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp527 PythonList::PythonList(PyInitialValue value) { in PythonList()
528 if (value == PyInitialValue::Empty) in PythonList()
583 PythonTuple::PythonTuple(PyInitialValue value) { in PythonTuple()
584 if (value == PyInitialValue::Empty) in PythonTuple()
654 PythonDictionary::PythonDictionary(PyInitialValue value) { in PythonDictionary()
655 if (value == PyInitialValue::Empty) in PythonDictionary()
689 return PythonList(PyInitialValue::Invalid); in GetKeys()
1468 PythonDictionary globals(PyInitialValue::Empty); in Init()
H A DPythonDataObjects.h186 enum class PyInitialValue { Invalid, Empty }; enum
521 explicit PythonList(PyInitialValue value);
541 explicit PythonTuple(PyInitialValue value);
563 explicit PythonDictionary(PyInitialValue value);
H A DScriptInterpreterPython.cpp429 m_session_dict(PyInitialValue::Invalid), in ScriptInterpreterPythonImpl()
430 m_sys_module_dict(PyInitialValue::Invalid), m_run_one_line_function(), in ScriptInterpreterPythonImpl()