Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/lang/cpp/template-arguments/
H A DTestCppTemplateArguments.py14 template_type = value.GetType()
15 self.assertEqual(template_type.GetNumberOfTemplateArguments(), 2)
18 self.assertEqual(template_type.GetTemplateArgumentKind(0), lldb.eTemplateArgumentKindType)
19 self.assertEqual(template_type.GetTemplateArgumentType(0).GetName(), "int")
22 … self.assertEqual(template_type.GetTemplateArgumentKind(1), lldb.eTemplateArgumentKindIntegral)
23 self.assertEqual(template_type.GetTemplateArgumentType(1).GetName(), "unsigned int")
27 self.assertEqual(template_type.GetTemplateArgumentKind(2), lldb.eTemplateArgumentKindNull)
28 self.assertEqual(template_type.GetTemplateArgumentType(2).GetName(), "")
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxVariant.cpp157 CompilerType template_type = head_type.GetTypeTemplateArgument(1); in LibcxxVariantSummaryProvider() local
159 if (!template_type) in LibcxxVariantSummaryProvider()
162 stream << " Active Type = " << template_type.GetDisplayTypeName() << " "; in LibcxxVariantSummaryProvider()
234 CompilerType template_type = head_type.GetTypeTemplateArgument(1); in GetChildAtIndex() local
236 if (!template_type) in GetChildAtIndex()
/llvm-project-15.0.7/clang/bindings/python/tests/cindex/
H A Dtest_type.py463 template_type = cursor_type.get_template_argument_type(0)
464 self.assertEqual(template_type.spelling, 'Foo')
/llvm-project-15.0.7/llvm/test/DebugInfo/Generic/
H A Dtu-composite.ll31 ; Make sure we correctly handle type of a template_type being a type identifier.