Home | History | Annotate | Download | only in Sema

Lines Matching refs:ArgPack

1015     const TemplateArgument &ArgPack = SubstPack->getArgumentPack();
1016 assert(getSema().ArgumentPackSubstitutionIndex < (int)ArgPack.pack_size() &&
1018 return ArgPack.pack_begin()[getSema().ArgumentPackSubstitutionIndex]
1153 const TemplateArgument &ArgPack = E->getArgumentPack();
1155 assert(Index < ArgPack.pack_size() && "Substitution index out-of-range");
1157 const TemplateArgument &Arg = ArgPack.pack_begin()[Index];
1289 const TemplateArgument &ArgPack = TL.getTypePtr()->getArgumentPack();
1291 assert(Index < ArgPack.pack_size() && "Substitution index out-of-range");
1293 QualType Result = ArgPack.pack_begin()[Index].getAsType();