| /llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangFunctionCaller.cpp | 105 uint32_t num_args = UINT32_MAX; in CompileFunction() local 115 num_args = num_func_args; in CompileFunction() 120 if (num_args == UINT32_MAX) in CompileFunction() 121 num_args = m_arg_values.GetSize(); in CompileFunction() 127 for (size_t i = 0; i < num_args; i++) { in CompileFunction() 149 if (i < num_args - 1) in CompileFunction() 162 if (i < num_args - 1) in CompileFunction()
|
| H A D | ClangASTSource.cpp | 732 unsigned num_args = sel.getNumArgs(); in FindObjCMethodDeclsWithOrigin() 734 for (unsigned i = 0; i != num_args; ++i) { in FindObjCMethodDeclsWithOrigin() 739 original_ctx->Selectors.getSelector(num_args, idents.data()); in FindObjCMethodDeclsWithOrigin() 731 unsigned num_args = sel.getNumArgs(); FindObjCMethodDeclsWithOrigin() local
|
| /llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectThreadUtil.cpp | 61 const size_t num_args = command.GetArgumentCount(); in DoExecute() local 67 for (size_t i = 0; i < num_args; i++) { in DoExecute() 172 const size_t num_args = command.GetArgumentCount(); in DoExecute() local 177 if (num_args > 0 && ::strcmp(command.GetArgumentAtIndex(0), "all") == 0) { in DoExecute() 181 if (num_args == 0) { in DoExecute() 186 for (size_t i = 0; i < num_args; i++) { in DoExecute()
|
| H A D | CommandObjectCommands.cpp | 2050 size_t num_args = args.GetArgumentCount(); in GetOptions() 2054 for (size_t idx = 0; idx < num_args; idx++) { in HandleArgumentCompletion() 2482 size_t num_args = command.GetArgumentCount(); in CommandObjectMultiwordCommandsScript() 2483 m_cmd_name = std::string(command[num_args - 1].ref()); in CommandObjectMultiwordCommandsScript() 2617 size_t num_args = command.GetArgumentCount(); 2641 if (cmd_sp->GetAsMultiwordCommand() && num_args == 1) { 2671 const char *leaf_cmd = command[num_args - 1].c_str(); in DoExecute() 2685 for (size_t idx = 0; idx < num_args; idx++) { in DoExecute() 2799 size_t num_args = command.GetArgumentCount(); 2801 if (num_args 2247 size_t num_args = command.GetArgumentCount(); DoExecute() local 2382 size_t num_args = command.GetArgumentCount(); DoExecute() local 2564 size_t num_args = command.GetArgumentCount(); DoExecute() local 2644 size_t num_args = command.GetArgumentCount(); DoExecute() local [all...] |
| H A D | CommandCompletions.cpp | 866 size_t num_args = args.GetArgumentCount(); in CompleteModifiableCmdPathArgs() local 867 if (num_args == 0) in CompleteModifiableCmdPathArgs() 872 if (num_args == 1) { in CompleteModifiableCmdPathArgs() 894 mwc->GetSubcommandObject(args.GetArgumentAtIndex(num_args - 1), &matches); in CompleteModifiableCmdPathArgs()
|
| H A D | CommandObjectProcess.cpp | 1574 size_t num_args = signal_args.GetArgumentCount(); in PrintSignalInformation() 1575 for (size_t i = 0; i < num_args; ++i) { in PrintSignalInformation() 1654 size_t num_args = signal_args.GetArgumentCount(); in DoExecute() 1679 if (num_args > 0) { in DoExecute() 1711 num_signals_set = num_args; in DoExecute() 1567 size_t num_args = signal_args.GetArgumentCount(); PrintSignalInformation() local 1647 size_t num_args = signal_args.GetArgumentCount(); DoExecute() local
|
| H A D | CommandObjectThread.cpp | 900 size_t num_args = command.GetArgumentCount(); in DoExecute() 901 for (size_t i = 0; i < num_args; i++) { in DoExecute() 1974 const size_t num_args = args.GetArgumentCount(); in DoExecute() 1979 for (size_t i = 0; i < num_args; i++) { in DoExecute() 895 size_t num_args = command.GetArgumentCount(); DoExecute() local 1964 const size_t num_args = args.GetArgumentCount(); DoExecute() local
|
| /llvm-project/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/ |
| H A D | check_arg_id.pass.cpp | 46 auto test_arg = [](std::size_t num_args) { in test_exception() 47 std::format_parse_context context("", num_args); in test_exception() 49 for (std::size_t i = 0; i <= num_args; ++i) in test_exception() 45 __anona18f69d80202(std::size_t num_args) test_exception() argument
|
| /llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanTracer.cpp | 190 const int num_args = 1; in Log() local 192 for (int arg_index = 0; arg_index < num_args; ++arg_index) { in Log() 200 for (int arg_index = 0; arg_index < num_args; ++arg_index) { in Log() 205 if (arg_index + 1 < num_args) in Log()
|
| /llvm-project/lldb/test/API/commands/command/script/add/ |
| H A D | test_commands.py | 26 num_args = args_array.GetSize() 27 if num_args > 0: 28 result.AppendMessage(f"{num_args} arguments:") 29 for idx in range(0, num_args):
|
| /llvm-project/lldb/test/API/python_api/frame/get-variables/ |
| H A D | TestGetVariables.py | 89 num_args = len(arg_names) 105 num_args, 107 % (num_args, vars.GetSize()), 112 num_args,
|
| /llvm-project/lldb/examples/python/ |
| H A D | memory.py | 216 num_args = len(args) 218 if num_args == 1: 227 elif num_args == 2:
|
| /llvm-project/lldb/source/Expression/ |
| H A D | FunctionCaller.cpp | 191 size_t num_args = arg_values.GetSize(); in WriteFunctionArguments() 192 if (num_args != m_arg_values.GetSize()) { in WriteFunctionArguments() 196 (uint64_t)num_args, (uint64_t)m_arg_values.GetSize()); in WriteFunctionArguments() 200 for (size_t i = 0; i < num_args; i++) { in WriteFunctionArguments() 190 size_t num_args = arg_values.GetSize(); WriteFunctionArguments() local
|
| /llvm-project/lldb/bindings/interface/ |
| H A D | SBTypeExtensions.i | 40 num_args = self.num_template_args 41 if num_args: 43 for i in range(num_args):
|
| /llvm-project/llvm/unittests/ADT/ |
| H A D | TypeTraitsTest.cpp | 28 static_assert(function_traits<CallableT>::num_args == 1,
|
| /llvm-project/lldb/tools/driver/ |
| H A D | Driver.cpp | 480 const size_t num_args = m_option_data.m_args.size(); in MainLoop() 481 if (num_args > 0) { in MainLoop() local 497 if (num_args > 1) { in MainLoop() 499 for (size_t arg_idx = 1; arg_idx < num_args; ++arg_idx) in MainLoop()
|
| /llvm-project/llvm/test/CodeGen/SPIRV/token/ |
| H A D | token-type-preallocated-setup-arg.ll | 16 declare token @llvm.call.preallocated.setup(i32 %num_args)
|
| /llvm-project/lldb/source/Plugins/ABI/RISCV/ |
| H A D | ABISysV_riscv.cpp | 301 const size_t num_args = args.size(); in SetReturnValueObject() 303 num_args > g_regs_for_args_count ? g_regs_for_args_count : num_args; in SetReturnValueObject() 223 const size_t num_args = args.size(); PrepareTrivialCall() local
|
| /llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 611 uint32_t num_args = arg_enum->getChildCount(); in CreateLLDBTypeFromPDBType() local 617 --num_args; in CreateLLDBTypeFromPDBType() 618 for (uint32_t arg_idx = 0; arg_idx < num_args; arg_idx++) { in CreateLLDBTypeFromPDBType() 636 lldbassert(arg_list.size() <= num_args); in CreateLLDBTypeFromPDBType()
|
| /llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 529 int num_args = m_arguments.size(); in OptSetFiltered() 530 for (int i = 0; i < num_args; ++i) { in OptSetFiltered() 538 int num_args = m_arguments.size(); GetFormattedCommandArguments() local
|
| /llvm-project/mlir/include/mlir/IR/ |
| H A D | Operation.h | 796 std::enable_if_t<llvm::function_traits<std::decay_t<FnT>>::num_args == 1, 824 std::enable_if_t<llvm::function_traits<std::decay_t<FnT>>::num_args == 2,
|
| /llvm-project/mlir/include/mlir/Bytecode/ |
| H A D | BytecodeImplementation.h | 81 if constexpr (llvm::function_traits<std::decay_t<CallbackFn>>::num_args) { in readList()
|
| /llvm-project/lldb/bindings/python/ |
| H A D | python-wrapper.swig | |
| /llvm-project/llvm/utils/TableGen/jupyter/ |
| H A D | sql_query_backend.md | 616 num_args = len(where_clause["args"]) 633 if idx != (num_args-1):
|
| /llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | SymbolFileCTF.cpp | 790 const uint32_t num_args = variable_length; in ParseFunctions() 793 arg_types.reserve(num_args); in ParseFunctions() 789 const uint32_t num_args = variable_length; ParseFunctions() local
|