Lines Matching defs:NNS
1215 auto *CL = ConceptReference::Create(Context, /*NNS=*/NS,
2662 while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
2663 if (const Type *CurType = NNS->getAsType()) {
2741 if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
2742 T = QualType(NNS->getAsType(), 0);
2750 if (NestedNameSpecifier *NNS = DependentName->getQualifier())
2751 T = QualType(NNS->getAsType(), 0);
4661 // Suggest that the user add 'typename' before the NNS.
5627 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
5871 NestedNameSpecifier *NNS) {
5872 assert(NNS);
5873 if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
5876 switch (NNS->getKind()) {
5886 return Visit(QualType(NNS->getAsType(), 0));
9369 for (NestedNameSpecifier *NNS = SS.getScopeRep(); NNS;
9370 NNS = NNS->getPrefix())
9371 if (const Type *T = NNS->getAsType())
10236 NestedNameSpecifier *NNS = SS.getScopeRep();
10237 if (!NNS)
10251 QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
10380 static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II,
10387 if (!NNS || !NNS.getNestedNameSpecifier()->getAsType())
10389 TypeLoc EnableIfTy = NNS.getTypeLoc();