Home
last modified time | relevance | path

Searched refs:expected_return_object (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h180 llvm::Expected<PythonObject> expected_return_object = in CreatePluginObject() local
199 [&init, &expected_return_object](auto &&...args) { in CreatePluginObject()
200 llvm::consumeError(expected_return_object.takeError()); in CreatePluginObject()
201 expected_return_object = init(args...); in CreatePluginObject()
206 [&init, &expected_return_object](auto &&...args) { in CreatePluginObject()
207 llvm::consumeError(expected_return_object.takeError()); in CreatePluginObject()
208 expected_return_object = init(args...); in CreatePluginObject()
213 if (!expected_return_object) in CreatePluginObject()
214 return expected_return_object.takeError(); in CreatePluginObject()
215 result = expected_return_object.get(); in CreatePluginObject()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedPythonInterface.h