Home
last modified time | relevance | path

Searched refs:packed_args (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/mlir/python/mlir/
H A Dexecution_engine.py32 packed_args = (ctypes.c_void_p * len(ctypes_args))()
34 packed_args[argNum] = ctypes.cast(ctypes_args[argNum], ctypes.c_void_p)
35 func(packed_args)
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp655 infos.packed_args = in TEST_F()
657 infos.packed_args->names = {"", ""}; in TEST_F()
658 infos.packed_args->args = {TemplateArgument(m_ast->getASTContext().IntTy), in TEST_F()
666 infos.packed_args = in TEST_F()
671 infos.packed_args->names = {"", ""}; in TEST_F()
672 infos.packed_args->args = {TemplateArgument(m_ast->getASTContext().IntTy), in TEST_F()
677 infos.packed_args->args = {TemplateArgument(m_ast->getASTContext().IntTy)}; in TEST_F()
681 infos.packed_args->names = {"A", "B"}; in TEST_F()
685 infos.packed_args->args = {TemplateArgument(m_ast->getASTContext(), in TEST_F()
691 infos.packed_args->args = {TemplateArgument( in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h327 if (pack_name && !packed_args) in IsValid()
330 (!packed_args || !packed_args->packed_args); in IsValid()
333 bool hasParameterPack() const { return static_cast<bool>(packed_args); } in hasParameterPack()
339 std::unique_ptr<TemplateParameterInfos> packed_args; variable
H A DTypeSystemClang.cpp1403 if (template_param_infos.packed_args) { in CreateTemplateParameterList()
1409 if (!template_param_infos.packed_args->args.empty() && in CreateTemplateParameterList()
1410 IsValueParam(template_param_infos.packed_args->args[0])) { in CreateTemplateParameterList()
1412 template_param_infos.packed_args->args[0].getIntegralType(); in CreateTemplateParameterList()
1550 if (pack_parameter && !instantiation_values.packed_args->args.empty() && in ClassTemplateAllowsToInstantiationArgs()
1552 *pack_parameter, instantiation_values.packed_args->args.front())) in ClassTemplateAllowsToInstantiationArgs()
1670 (template_param_infos.packed_args ? 1 : 0)); in CreateClassTemplateSpecializationDecl()
1673 if (template_param_infos.packed_args) { in CreateClassTemplateSpecializationDecl()
1675 ast, template_param_infos.packed_args->args); in CreateClassTemplateSpecializationDecl()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1918 template_param_infos.packed_args = in ParseTemplateDIE()
1921 if (!ParseTemplateDIE(child_die, *template_param_infos.packed_args)) in ParseTemplateDIE()