Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp65 return llvm::make_error<PythonException>(); in As()
386 return llvm::make_error<PythonException>(); in FromUTF8()
899 const char *PythonException::toCString() const { in GetArgInfo()
905 PythonException::PythonException(const char *caller) { in GetArgInfo()
929 void PythonException::Restore() {
938 PythonException::~PythonException() { in Check()
945 void PythonException::log(llvm::raw_ostream &OS) const { OS << toCString(); } in Check()
947 std::error_code PythonException in Check()
962 PythonException::PythonException(const char *caller) { PythonException() function in PythonException
[all...]
H A DPythonDataObjects.h72 class PythonException; variable
176 return llvm::make_error<PythonException>(s);
659 class PythonException : public llvm::ErrorInfo<PythonException> {
667 PythonException(const char *caller = nullptr);
669 ~PythonException() override;
701 expected.takeError(), [](PythonException &E) { E.Restore(); },
H A DScriptInterpreterPython.cpp999 [&](PythonException &E) { in ExecuteOneLineWithReturn()
1122 llvm::handleErrors(return_value.takeError(), [&](PythonException &E) { in ExecuteMultipleLines()
1912 [&](PythonException &E) { in BreakpointCallbackFunction()
/llvm-project/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp804 foo(), llvm::Failed<PythonException>(testing::Property( in TEST_F()
805 &PythonException::ReadBacktrace, in TEST_F()
828 llvm::Failed<PythonException>(testing::Property( in TEST_F()
829 &PythonException::ReadBacktrace, in TEST_F()
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h172 [&](PythonException &E) { error_string.append(E.ReadBacktrace()); }, in CreatePluginObject()