Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerDecl.cpp40 CompilerType CompilerDecl::GetFunctionArgumentType(size_t arg_idx) const { in GetFunctionArgumentType()
41 return m_type_system->DeclGetFunctionArgumentType(m_opaque_decl, arg_idx); in GetFunctionArgumentType()
H A DTypeSystem.cpp175 size_t arg_idx) { in DeclGetFunctionArgumentType() argument
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp177 const char *SBFunction::GetArgumentName(uint32_t arg_idx) { in GetArgumentName() argument
178 LLDB_INSTRUMENT_VA(this, arg_idx); in GetArgumentName()
191 lldb::VariableSP variable_sp = arguments.GetVariableAtIndex(arg_idx); in GetArgumentName()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerDecl.h88 CompilerType GetFunctionArgumentType(size_t arg_idx) const;
H A DTypeSystem.h110 size_t arg_idx);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFunction.h50 const char *GetArgumentName(uint32_t arg_idx);
/freebsd/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp500 for (size_t arg_idx = 1; arg_idx < num_args; ++arg_idx) in MainLoop() local
502 " %s", EscapeString(m_option_data.m_args[arg_idx]).c_str()); in MainLoop()
/freebsd/sys/sys/
H A Dcdefs.h679 #define __arg_type_tag(arg_kind, arg_idx, type_tag_idx) \ argument
680 __attribute__((__argument_with_type_tag__(arg_kind, arg_idx, type_tag_idx)))
684 #define __arg_type_tag(arg_kind, arg_idx, type_tag_idx) argument
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1919 for (int arg_idx = 0; in DoExecute() local
1920 (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != nullptr; in DoExecute()
1921 ++arg_idx) { in DoExecute()
2042 for (int arg_idx = 0; in DoExecute() local
2043 (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != nullptr; in DoExecute()
2044 ++arg_idx) { in DoExecute()
2131 for (int arg_idx = 0; in DoExecute() local
2132 (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != nullptr; in DoExecute()
2133 ++arg_idx) { in DoExecute()
2342 for (int arg_idx = 0; in DoExecute() local
[all …]
H A DCommandObjectBreakpoint.cpp2148 for (int arg_idx = 0; arg_idx < opt_arg_pos; arg_idx++) { in HandleOptionArgumentCompletion() local
2149 if (dash_f == request.GetParsedLine().GetArgumentAtIndex(arg_idx)) { in HandleOptionArgumentCompletion()
2151 request.GetParsedLine().GetArgumentAtIndex(arg_idx + 1)); in HandleOptionArgumentCompletion()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp618 for (uint32_t arg_idx = 0; arg_idx < num_args; arg_idx++) { in CreateLLDBTypeFromPDBType() local
619 auto arg = arg_enum->getChildAtIndex(arg_idx); in CreateLLDBTypeFromPDBType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp1041 const uint32_t arg_idx = packet.GetU32(UINT32_MAX); in Handle_A() local
1042 if (arg_idx == UINT32_MAX) in Handle_A()
1064 if (arg_idx == 0) in Handle_A()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp2462 for (size_t arg_idx = 0; arg_idx < num_args; ++arg_idx) { in PrettyPrintFunctionArguments() local
2465 VariableSP var_sp(args.GetVariableAtIndex(arg_idx)); in PrettyPrintFunctionArguments()
2496 if (arg_idx > 0) in PrettyPrintFunctionArguments()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp3131 size_t arg_idx = 0; in ParseChildParameters() local
3138 arg_idx++; in ParseChildParameters()
3183 if (arg_idx == 0 && in ParseChildParameters()
3219 arg_idx++; in ParseChildParameters()
3241 return arg_idx; in ParseChildParameters()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h564 size_t arg_idx) override;
H A DTypeSystemClang.cpp7291 size_t arg_idx, bool expand_pack) { in GetTemplateArgumentKind() argument
7297 const auto *arg = GetNthTemplateArgument(template_decl, arg_idx, expand_pack); in GetTemplateArgumentKind()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td3187 Use ``__attribute__((argument_with_type_tag(arg_kind, arg_idx,
3197 * ``arg_idx`` provides the position of a function argument. The expected type of
3203 the argument specified by ``arg_idx``. In the code example below, "2" means
3205 with the type of the argument specified by ``arg_idx``.
3294 ``arg_idx`` or ``ptr_idx`` is compared against the type associated with the type
3296 function argument specified by ``arg_idx`` is compared against the type
3338 ``arg_idx`` (for the ``argument_with_type_tag`` attribute) or ``ptr_idx`` (for