Home | History | Annotate | Download | only in Sema

Lines Matching refs:ArgPack

1066     const TemplateArgument &ArgPack = SubstPack->getArgumentPack();
1067 assert(getSema().ArgumentPackSubstitutionIndex < (int)ArgPack.pack_size() &&
1069 return ArgPack.pack_begin()[getSema().ArgumentPackSubstitutionIndex]
1210 const TemplateArgument &ArgPack = E->getArgumentPack();
1212 assert(Index < ArgPack.pack_size() && "Substitution index out-of-range");
1214 const TemplateArgument &Arg = ArgPack.pack_begin()[Index];
1357 const TemplateArgument &ArgPack = TL.getTypePtr()->getArgumentPack();
1359 assert(Index < ArgPack.pack_size() && "Substitution index out-of-range");
1361 QualType Result = ArgPack.pack_begin()[Index].getAsType();