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.h137 llvm::Expected<PythonObject> expected_return_object = in CreatePluginObject() local
141 [&init, &expected_return_object](auto &&...args) { in CreatePluginObject()
142 llvm::consumeError(expected_return_object.takeError()); in CreatePluginObject()
143 expected_return_object = init(args...); in CreatePluginObject()
147 if (!expected_return_object) in CreatePluginObject()
148 return expected_return_object.takeError(); in CreatePluginObject()
149 result = expected_return_object.get(); in CreatePluginObject()
260 llvm::Expected<PythonObject> expected_return_object = in Dispatch() local
264 [&implementor, &method_name, &expected_return_object](auto &&...args) { in Dispatch()
265 llvm::consumeError(expected_return_object.takeError()); in Dispatch()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedPythonInterface.h