Searched refs:expected_return_object (Results 1 – 2 of 2) sorted by relevance
180 llvm::Expected<PythonObject> expected_return_object = in CreatePluginObject() local199 [&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 …]