Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h80 enum class PyInitialValue { Invalid, Empty }; enum
304 explicit PythonList(PyInitialValue value);
332 explicit PythonTuple(PyInitialValue value);
360 explicit PythonDictionary(PyInitialValue value);
H A DPythonDataObjects.cpp533 PythonList::PythonList(PyInitialValue value) : PythonObject() { in PythonList()
534 if (value == PyInitialValue::Empty) in PythonList()
614 PythonTuple::PythonTuple(PyInitialValue value) : PythonObject() { in PythonTuple()
615 if (value == PyInitialValue::Empty) in PythonTuple()
710 PythonDictionary::PythonDictionary(PyInitialValue value) : PythonObject() { in PythonDictionary()
711 if (value == PyInitialValue::Empty) in PythonDictionary()
756 return PythonList(PyInitialValue::Invalid); in GetKeys()
H A DScriptInterpreterPython.cpp269 m_session_dict(PyInitialValue::Invalid), in ScriptInterpreterPython()
270 m_sys_module_dict(PyInitialValue::Invalid), m_run_one_line_function(), in ScriptInterpreterPython()