• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/

Lines Matching refs:NNS

2373   auto *NNS = SS.getScopeRep();
2374 if (NNS && NNS->getKind() == NestedNameSpecifier::Super)
2375 return LookupInSuper(R, NNS->getAsRecordDecl());
2409 NestedNameSpecifier *NNS = SS->getScopeRep();
2410 if (NNS->getKind() == NestedNameSpecifier::Super)
2411 return LookupInSuper(R, NNS->getAsRecordDecl());
4088 NestedNameSpecifier *NNS,
4090 if (NestedNameSpecifier *Prefix = NNS->getPrefix())
4097 switch (NNS->getKind()) {
4099 II = NNS->getAsIdentifier();
4103 if (NNS->getAsNamespace()->isAnonymousNamespace())
4105 II = NNS->getAsNamespace()->getIdentifier();
4109 II = NNS->getAsNamespaceAlias()->getIdentifier();
4114 II = QualType(NNS->getAsType(), 0).getBaseTypeIdentifier();
4160 NestedNameSpecifier *NNS, bool isKeyword) {
4174 TypoCorrection TC(&SemaRef.Context.Idents.get(Name), ND, NNS, ED);
4235 if (NestedNameSpecifier *NNS =
4237 if (const Type *T = NNS->getAsType())
4416 if (NestedNameSpecifier *NNS =
4419 NNS->print(SpecifierOStream, Context.getPrintingPolicy());
4421 getNestedNameSpecifierIdentifiers(NNS, CurNameSpecifierIdentifiers);
4453 DeclContextList &DeclChain, NestedNameSpecifier *&NNS) {
4457 NNS = NestedNameSpecifier::Create(Context, NNS, ND);
4460 NNS = NestedNameSpecifier::Create(Context, NNS, RD->isTemplateDecl(),
4470 NestedNameSpecifier *NNS = nullptr;
4483 NumSpecifiers = buildNestedNameSpecifier(NamespaceDeclChain, NNS);
4488 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
4490 buildNestedNameSpecifier(FullNamespaceDeclChain, NNS);
4501 getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers);
4502 NNS->print(SpecifierOStream, Context.getPrintingPolicy());
4509 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
4511 buildNestedNameSpecifier(FullNamespaceDeclChain, NNS);
4519 if (NNS && !CurNameSpecifierIdentifiers.empty()) {
4521 getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers);
4527 SpecifierInfo SI = {Ctx, NNS, NumSpecifiers};