Home
last modified time | relevance | path

Searched refs:arg_idx (Results 1 – 18 of 18) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerDecl.cpp35 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 DTypeSystem.cpp164 size_t arg_idx) { in DeclGetFunctionArgumentType() argument
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp171 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 DCompilerDecl.h85 CompilerType GetFunctionArgumentType(size_t arg_idx) const;
H A DTypeSystem.h109 size_t arg_idx);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFunction.h47 const char *GetArgumentName(uint32_t arg_idx);
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBFunction.i81 GetArgumentName (uint32_t arg_idx);
/freebsd-13.1/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp546 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 Dcdefs.h810 #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 DCommandObjectTarget.cpp1879 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 DCommandObjectBreakpoint.cpp2118 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 DPDBASTParser.cpp612 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 DGDBRemoteCommunicationServerCommon.cpp979 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 DFormatEntity.cpp1689 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 DDWARFASTParserClang.cpp2894 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 DTypeSystemClang.h488 size_t arg_idx) override;
H A DTypeSystemClang.cpp7112 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 DAttrDocs.td2686 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