Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1725 tag_decl_kind, template_param_infos); in ParseStructureLikeDIE()
1918 template_param_infos.packed_args = in ParseTemplateDIE()
1925 template_param_infos.pack_name = name; in ParseTemplateDIE()
1983 template_param_infos.names.push_back(name); in ParseTemplateDIE()
1985 template_param_infos.names.push_back(nullptr); in ParseTemplateDIE()
1995 template_param_infos.args.push_back( in ParseTemplateDIE()
1999 template_param_infos.args.push_back( in ParseTemplateDIE()
2004 template_param_infos.names.push_back(name); in ParseTemplateDIE()
2005 template_param_infos.args.push_back( in ParseTemplateDIE()
2033 ParseTemplateDIE(die, template_param_infos); in ParseTemplateParameterInfos()
[all …]
H A DDWARFASTParserClang.h119 &template_param_infos);
123 &template_param_infos);
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp1384 const char *name = template_param_infos.names[i]; in CreateTemplateParameterList()
1389 if (IsValueParam(template_param_infos.args[i])) { in CreateTemplateParameterList()
1403 if (template_param_infos.packed_args) { in CreateTemplateParameterList()
1405 if (template_param_infos.pack_name && template_param_infos.pack_name[0]) in CreateTemplateParameterList()
1441 ast, template_param_infos, template_param_decls); in CreateFunctionTemplateDecl()
1669 template_param_infos.args.size() + in CreateClassTemplateSpecializationDecl()
1670 (template_param_infos.packed_args ? 1 : 0)); in CreateClassTemplateSpecializationDecl()
1671 std::copy(template_param_infos.args.begin(), template_param_infos.args.end(), in CreateClassTemplateSpecializationDecl()
1673 if (template_param_infos.packed_args) { in CreateClassTemplateSpecializationDecl()
1675 ast, template_param_infos.packed_args->args); in CreateClassTemplateSpecializationDecl()
[all …]
H A DTypeSystemClang.h998 const TypeSystemClang::TemplateParameterInfos &template_param_infos);