Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/bindings/python/
H A Dpython-wrapper.swig35 if (auto arg_info = pfunc.GetArgInfo())
163 auto argc = pfunc.GetArgInfo();
254 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo();
298 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo();
475 if (auto args_info = callback_func.GetArgInfo()) {
570 auto arg_info = pfunc.GetArgInfo();
771 auto argc = pfunc.GetArgInfo();
/openbsd/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h611 llvm::Expected<ArgInfo> GetArgInfo() const;
H A DPythonDataObjects.cpp798 Expected<PythonCallable::ArgInfo> PythonCallable::GetArgInfo() const { in GetArgInfo() function in PythonCallable
H A DScriptInterpreterPython.cpp772 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable()