Home
last modified time | relevance | path

Searched refs:arg_info (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig35 if (auto arg_info = pfunc.GetArgInfo())
38 return arg_info.takeError();
256 if (!arg_info) {
258 arg_info.takeError(),
268 if (arg_info.get().max_positional_args == 2) {
275 } else if (arg_info.get().max_positional_args >= 3) {
559 auto arg_info = pfunc.GetArgInfo();
560 if (!arg_info) {
561 llvm::consumeError(arg_info.takeError());
566 if (arg_info.get().max_positional_args < 1)
[all …]
H A Dpython-typemaps.swig668 llvm::Expected<PythonCallable::ArgInfo> arg_info = callable.GetArgInfo();
669 if (!arg_info) {
672 llvm::toString(arg_info.takeError())).c_str());
676 if (arg_info.get().max_positional_args != 3) {
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h125 llvm::Expected<PythonCallable::ArgInfo> arg_info = init.GetArgInfo(); in CreatePluginObject() local
126 if (!arg_info) { in CreatePluginObject()
128 arg_info.takeError(), in CreatePluginObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp781 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable() local
782 if (!arg_info) in GetMaxPositionalArgumentsForCallable()
783 return arg_info.takeError(); in GetMaxPositionalArgumentsForCallable()
784 return arg_info.get().max_positional_args; in GetMaxPositionalArgumentsForCallable()