Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig73 if (auto arg_info = pfunc.GetArgInfo())
195 auto argc = pfunc.GetArgInfo();
311 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo();
377 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo();
603 if (auto args_info = callback_func.GetArgInfo()) {
718 auto arg_info = pfunc.GetArgInfo();
945 auto argc = pfunc.GetArgInfo();
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h628 llvm::Expected<ArgInfo> GetArgInfo() const;
H A DPythonDataObjects.cpp878 Expected<PythonCallable::ArgInfo> PythonCallable::GetArgInfo() const { in GetArgInfo() function in PythonCallable
H A DScriptInterpreterPython.cpp897 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable()