| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerDecl.cpp | 35 CompilerType CompilerDecl::GetFunctionArgumentType(size_t arg_idx) const { in GetFunctionArgumentType() 36 return m_type_system->DeclGetFunctionArgumentType(m_opaque_decl, arg_idx); in GetFunctionArgumentType()
|
| H A D | TypeSystem.cpp | 164 size_t arg_idx) { in DeclGetFunctionArgumentType() argument
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBFunction.cpp | 171 const char *SBFunction::GetArgumentName(uint32_t arg_idx) { in GetArgumentName() argument 173 arg_idx); in GetArgumentName() 182 lldb::VariableSP variable_sp = arguments.GetVariableAtIndex(arg_idx); in GetArgumentName()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerDecl.h | 85 CompilerType GetFunctionArgumentType(size_t arg_idx) const;
|
| H A D | TypeSystem.h | 109 size_t arg_idx);
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBFunction.h | 47 const char *GetArgumentName(uint32_t arg_idx);
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBFunction.i | 81 GetArgumentName (uint32_t arg_idx);
|
| /freebsd-13.1/contrib/llvm-project/lldb/tools/driver/ |
| H A D | Driver.cpp | 546 for (size_t arg_idx = 1; arg_idx < num_args; ++arg_idx) in MainLoop() local 548 " %s", EscapeString(m_option_data.m_args[arg_idx]).c_str()); in MainLoop()
|
| /freebsd-13.1/sys/sys/ |
| H A D | cdefs.h | 810 #define __arg_type_tag(arg_kind, arg_idx, type_tag_idx) \ argument 811 __attribute__((__argument_with_type_tag__(arg_kind, arg_idx, type_tag_idx))) 815 #define __arg_type_tag(arg_kind, arg_idx, type_tag_idx) argument
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 1879 for (int arg_idx = 0; in DoExecute() local 1880 (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != nullptr; in DoExecute() 1881 ++arg_idx) { in DoExecute() 2021 for (int arg_idx = 0; in DoExecute() local 2023 ++arg_idx) { in DoExecute() 2105 for (int arg_idx = 0; in DoExecute() local 2107 ++arg_idx) { in DoExecute() 2256 for (int arg_idx = 0; in DoExecute() local 2258 ++arg_idx) { in DoExecute() 2321 for (int arg_idx = 0; in DoExecute() local [all …]
|
| H A D | CommandObjectBreakpoint.cpp | 2118 for (int arg_idx = 0; arg_idx < opt_arg_pos; arg_idx++) { in HandleOptionArgumentCompletion() local 2119 if (dash_f == request.GetParsedLine().GetArgumentAtIndex(arg_idx)) { in HandleOptionArgumentCompletion() 2121 request.GetParsedLine().GetArgumentAtIndex(arg_idx + 1)); in HandleOptionArgumentCompletion()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 612 for (uint32_t arg_idx = 0; arg_idx < num_args; arg_idx++) { in CreateLLDBTypeFromPDBType() local 613 auto arg = arg_enum->getChildAtIndex(arg_idx); in CreateLLDBTypeFromPDBType()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerCommon.cpp | 979 const uint32_t arg_idx = packet.GetU32(UINT32_MAX); in Handle_A() local 980 if (arg_idx == UINT32_MAX) in Handle_A() 1002 if (arg_idx == 0) in Handle_A()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 1689 for (size_t arg_idx = 0; arg_idx < num_args; ++arg_idx) { in Format() local 1692 VariableSP var_sp(args.GetVariableAtIndex(arg_idx)); in Format() 1728 if (arg_idx > 0) in Format()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 2894 size_t arg_idx = 0; in ParseChildParameters() local 2943 if (arg_idx == 0 && in ParseChildParameters() 2982 arg_idx++; in ParseChildParameters() 3004 return arg_idx; in ParseChildParameters()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.h | 488 size_t arg_idx) override;
|
| H A D | TypeSystemClang.cpp | 7112 size_t arg_idx) { in GetTemplateArgumentKind() argument 7115 if (! template_decl || arg_idx >= template_decl->getTemplateArgs().size()) in GetTemplateArgumentKind() 7118 switch (template_decl->getTemplateArgs()[arg_idx].getKind()) { in GetTemplateArgumentKind()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | AttrDocs.td | 2686 Use ``__attribute__((argument_with_type_tag(arg_kind, arg_idx, 2696 * ``arg_idx`` provides the position of a function argument. The expected type of 2702 the argument specified by ``arg_idx``. In the code example below, "2" means 2704 with the type of the argument specified by ``arg_idx``. 2793 ``arg_idx`` or ``ptr_idx`` is compared against the type associated with the type 2795 function argument specified by ``arg_idx`` is compared against the type 2837 ``arg_idx`` (for the ``argument_with_type_tag`` attribute) or ``ptr_idx`` (for
|