Home
last modified time | relevance | path

Searched refs:PythonObject (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp108 PythonObject
124 PythonObject PythonObject::ResolveName(llvm::StringRef name) const { in ResolveName()
146 return PythonObject(); in ResolveName()
159 PythonObject PythonObject::GetAttributeValue(llvm::StringRef attr) const { in GetAttributeValue()
161 return PythonObject(); in GetAttributeValue()
165 return PythonObject(); in GetAttributeValue()
444 : PythonObject() { in PythonInteger()
580 return PythonObject(); in GetItemAtIndex()
684 return PythonObject(); in GetItemAtIndex()
716 : PythonObject() { in PythonDictionary()
[all …]
H A DPythonDataObjects.h82 class PythonObject {
90 PythonObject(const PythonObject &rhs) : m_py_obj(nullptr) { Reset(rhs); } in PythonObject() function
152 PythonObject &operator=(const PythonObject &other) {
213 using PythonObject::Reset;
239 using PythonObject::Reset;
265 using PythonObject::Reset;
290 using PythonObject::Reset;
314 using PythonObject::Reset;
377 PythonObject GetItemForKey(const PythonObject &key) const;
378 void SetItemForKey(const PythonObject &key, const PythonObject &value);
[all …]
H A DPythonExceptionState.h36 PythonObject GetType() const;
38 PythonObject GetValue() const;
40 PythonObject GetTraceback() const;
49 PythonObject m_type;
50 PythonObject m_value;
51 PythonObject m_traceback;
H A DScriptInterpreterPython.cpp1055 PythonObject py_return; in ExecuteOneLineWithReturn()
1059 PythonObject py_error; in ExecuteOneLineWithReturn()
1215 PythonObject py_error; in ExecuteMultipleLines()
1542 PythonObject py_return( in GetRecognizedArguments()
1625 PythonObject py_return( in OSPlugin_RegisterInfo()
1680 PythonObject py_return( in OSPlugin_ThreadsInfo()
1765 PythonObject py_return( in OSPlugin_RegisterContextData()
2558 PythonObject py_return( in GetSyntheticTypeName()
3095 PythonObject py_return( in GetShortHelpForCommandObject()
3150 PythonObject py_return( in GetFlagsForCommandObject()
[all …]
H A DPythonExceptionState.cpp88 PythonObject PythonExceptionState::GetType() const { return m_type; } in GetType()
90 PythonObject PythonExceptionState::GetValue() const { return m_value; } in GetValue()
92 PythonObject PythonExceptionState::GetTraceback() const { return m_traceback; } in GetTraceback()
H A DScriptInterpreterPython.h576 PythonObject &GetMainModule();
590 PythonObject m_main_module;
591 PythonObject m_lldb_module;
594 PythonObject m_run_one_line_function;
595 PythonObject m_run_one_line_str_global;