Searched refs:template_type (Results 1 – 4 of 4) sorted by relevance
14 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(), "")
157 CompilerType template_type = head_type.GetTypeTemplateArgument(1); in LibcxxVariantSummaryProvider() local159 if (!template_type) in LibcxxVariantSummaryProvider()162 stream << " Active Type = " << template_type.GetDisplayTypeName() << " "; in LibcxxVariantSummaryProvider()234 CompilerType template_type = head_type.GetTypeTemplateArgument(1); in GetChildAtIndex() local236 if (!template_type) in GetChildAtIndex()
463 template_type = cursor_type.get_template_argument_type(0)464 self.assertEqual(template_type.spelling, 'Foo')
31 ; Make sure we correctly handle type of a template_type being a type identifier.