reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/Decl.h
 1953     return DeclarationNameInfo(getDeclName(), getLocation(), DNLoc);
 2731   bool isUnnamedBitfield() const { return isBitField() && !getDeclName(); }
 3347     return (getDeclName() || getTypedefNameForAnonDecl());
tools/clang/include/clang/AST/DeclCXX.h
 1885     return getDeclName().getCXXDeductionGuideTemplate();
 3323     return DeclarationNameInfo(getDeclName(), getLocation(), DNLoc);
 3440                   InstantiatedFrom ? InstantiatedFrom->getDeclName()
 3544     return DeclarationNameInfo(getDeclName(), getLocation(), DNLoc);
 3634     return DeclarationNameInfo(getDeclName(), getLocation());
tools/clang/include/clang/AST/DeclObjC.h
  320   Selector getSelector() const { return getDeclName().getObjCSelector(); }
tools/clang/include/clang/AST/Expr.h
 1227     return DeclarationNameInfo(getDecl()->getDeclName(), getLocation(), DNLoc);
 2989     return DeclarationNameInfo(MemberDecl->getDeclName(),
tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
  932     if (Cvdecl->getDeclName().isIdentifier())
tools/clang/include/clang/Sema/Overload.h
  928                FD->getDeclName().getCXXOverloadedOperator() != OriginalOperator;
tools/clang/include/clang/Sema/TypoCorrection.h
   70       : CorrectionName(Name->getDeclName()), CorrectionNameSpec(NNS),
tools/clang/lib/ARCMigrate/ObjCMT.cpp
  623       DeclContext::lookup_result R = IDecl->lookup(Property->getDeclName());
  629                                   Property->getDeclName().getAsIdentifierInfo(),
  655       DeclContext::lookup_result R = ImpDecl->lookup(MD->getDeclName());
  883             TargetPDecl->getDeclName().getAsIdentifierInfo())) {
tools/clang/lib/AST/ASTContext.cpp
 1500   assert(!Inst->getDeclName() && "Instantiated field decl is not unnamed");
 1501   assert(!Tmpl->getDeclName() && "Template field decl is not unnamed");
 4523   return DeclarationName::compare((*LHS)->getDeclName(), (*RHS)->getDeclName());
 4523   return DeclarationName::compare((*LHS)->getDeclName(), (*RHS)->getDeclName());
 5340     return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(),
 5346     return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc);
 5373     return DeclarationNameInfo(subst->getParameter()->getDeclName(),
 5380     return DeclarationNameInfo(subst->getParameterPack()->getDeclName(),
10106        FD->getDeclContext()->getRedeclContext()->lookup(FD->getDeclName())) {
tools/clang/lib/AST/ASTImporter.cpp
 1573   if (Error Err = importInto(Name, D->getDeclName()))
 2501         SearchName, D->getTypedefNameForAnonDecl()->getDeclName()))
 2596         SearchName, D->getTypedefNameForAnonDecl()->getDeclName()))
 3798   if (auto Imp = importSeq(D->getDeclName(), D->getLocation(), D->getType()))
 3844       D->getDeclName(), D->getLocation(), D->getType(), D->getInnerLocStart(),
 4485         << To->getDeclName();
 4488           << To->getSuperClass()->getDeclName();
 4495         << From->getSuperClass()->getDeclName();
 4754         << Iface->getDeclName();
 4760         << Impl->getSuperClass()->getDeclName();
 4767         << D->getSuperClass()->getDeclName();
 4909         << Property->getDeclName()
 4914         << D->getPropertyDecl()->getDeclName()
 4925         << Property->getDeclName()
 4926         << ToImpl->getPropertyIvarDecl()->getDeclName()
 4927         << Ivar->getDeclName();
 4930         << D->getPropertyIvarDecl()->getDeclName();
 4975       D->getDeclName(), D->getLocation(), D->getType(), D->getTypeSourceInfo(),
 4998   auto NameOrErr = import(D->getDeclName());
tools/clang/lib/AST/ASTImporterLookupTable.cpp
   72   DeclList &Decls = LookupTable[DC][ND->getDeclName()];
   78   DeclList &Decls = LookupTable[DC][ND->getDeclName()];
tools/clang/lib/AST/ASTStructuralEquivalence.cpp
  130             Context, Name1.getCXXDeductionGuideTemplate()->getDeclName(),
  131             Name2.getCXXDeductionGuideTemplate()->getDeclName()))
  968           << Field2->getDeclName();
  970           << Field1->getDeclName();
  983           << Field2->getDeclName() << Field2->getType();
  985           << Field1->getDeclName() << Field1->getType();
  998             << Field1->getDeclName() << Field1->getType()
 1001             << Field2->getDeclName();
 1004             << Field2->getDeclName() << Field2->getType()
 1007             << Field1->getDeclName();
 1025             << Field2->getDeclName() << Field2->getType() << Bits2;
 1027             << Field1->getDeclName() << Field1->getType() << Bits1;
 1110           << D1->getDeclName() << (unsigned)D1->getTagKind();
 1115   if (!D1->getDeclName() && !D2->getDeclName()) {
 1115   if (!D1->getDeclName() && !D2->getDeclName()) {
 1309             << Field1->getDeclName() << Field1->getType();
 1325           << Field2->getDeclName() << Field2->getType();
 1357             << EC1->getDeclName() << EC1->getInitVal().toString(10);
 1373             << EC2->getDeclName() << EC2->getInitVal().toString(10);
 1375             << EC1->getDeclName() << EC1->getInitVal().toString(10);
 1387           << EC2->getDeclName() << EC2->getInitVal().toString(10);
tools/clang/lib/AST/Decl.cpp
 1569   if (getDeclName() || isa<DecompositionDecl>(this))
 1692   assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
 1692   assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
 1909     if (!getDeclName() || typeIsPostfix(TInfo->getType()))
 2914   assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
 2915   assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
 2916          getDeclName().getCXXOverloadedOperator() == OO_Delete ||
 2917          getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
 2918          getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
 2937   if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName)
 2939   if (getDeclName().getCXXOverloadedOperator() != OO_New &&
 2940       getDeclName().getCXXOverloadedOperator() != OO_Delete &&
 2941       getDeclName().getCXXOverloadedOperator() != OO_Array_New &&
 2942       getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
 2973       (getDeclName().getCXXOverloadedOperator() == OO_Delete ||
 2974        getDeclName().getCXXOverloadedOperator() == OO_Array_Delete) &&
 3044       if (!Namespace->getDeclName())
 3430   if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
 3431     return getDeclName().getCXXOverloadedOperator();
 3439   if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
 3440     return getDeclName().getCXXLiteralIdentifier();
 3943   if (!isImplicit() || getDeclName())
 4328   return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
 4329     cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
 4329     cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
tools/clang/lib/AST/DeclBase.cpp
 1413   if (!D->getDeclName())
 1477     if (!ND->getDeclName())
 1484         StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
 1739       if (ND->getDeclName() == Name)
 1871           Map->find(D->getDeclName()) == Map->end())
 1872         Source->FindExternalVisibleDeclsByName(this, D->getDeclName());
 1875   StoredDeclsList &DeclNameEntries = (*Map)[D->getDeclName()];
tools/clang/lib/AST/DeclCXX.cpp
 1305     if (Shadow->getDeclName().getNameKind()
 1313     if (Using->getDeclName().getNameKind() ==
 1321     if (Using->getDeclName().getCXXOverloadedOperator() == OO_Equal)
 1974   OverloadedOperatorKind OOK = getDeclName().getCXXOverloadedOperator();
 2007   for (auto *ND : RD->lookup(getDeclName())) {
 2205   DeclContext::lookup_result R = getDeclContext()->lookup(getDeclName());
 2804     : NamedDecl(K, DC, Loc, Using ? Using->getDeclName() : DeclarationName()),
tools/clang/lib/AST/DeclPrinter.cpp
  638     Proto = GuideDecl->getDeducedTemplate()->getDeclName().getAsString();
 1254     Out << Param->getDeclName().getAsString();
 1594   Out << D->getDeclName();
 1601   Out << D->getDeclName();
 1654     if (D->getDeclName().getNameKind() == DeclarationName::CXXOperatorName) {
 1656           getOperatorSpelling(D->getDeclName().getCXXOverloadedOperator());
 1660       assert(D->getDeclName().isIdentifier());
tools/clang/lib/AST/DeclTemplate.cpp
  543   else if (getDeclName().isEmpty())
tools/clang/lib/AST/DeclarationName.cpp
  100     return compare(LHS.getCXXDeductionGuideTemplate()->getDeclName(),
  101                    RHS.getCXXDeductionGuideTemplate()->getDeclName());
  159     getCXXDeductionGuideTemplate()->getDeclName().print(OS, Policy);
tools/clang/lib/AST/Expr.cpp
  396   if (D->getDeclName().getNameKind()
  398     QualType T = D->getDeclName().getCXXNameType();
  552                 DeclarationNameInfo(D->getDeclName(), NameLoc),
 1650          MemberDecl->getDeclName() == NameInfo.getName());
tools/clang/lib/AST/ExprConstant.cpp
 6949         if (FD->getDeclName().getCXXOverloadedOperator() == OO_New ||
 6950             FD->getDeclName().getCXXOverloadedOperator() == OO_Array_New) {
tools/clang/lib/AST/ExternalASTMerger.cpp
   58   DeclarationName Name = ND->getDeclName();
tools/clang/lib/AST/ItaniumMangle.cpp
  472     mangleUnqualifiedName(ND, ND->getDeclName(), UnknownArity,
  597     if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage)
 1275         mangleSourceName(BD->getDeclName().getAsIdentifierInfo());
 1367       assert(D->getDeclName().getAsIdentifierInfo() &&
 1369       mangleSourceName(D->getDeclName().getAsIdentifierInfo());
 1865     mangleUnqualifiedName(nullptr, (*Overloaded->begin())->getDeclName(),
 3856                      ME->getMemberDecl()->getDeclName(),
tools/clang/lib/AST/JSONNodeDumper.cpp
  287     JOS.attribute("name", ND->getDeclName().getAsString());
  299     Ret["name"] = ND->getDeclName().getAsString();
  691   if (ND && ND->getDeclName())
 1172   JOS.attribute("name", VD && VD->getDeclName() ? VD->getNameAsString() : "");
tools/clang/lib/AST/MicrosoftMangle.cpp
  339     mangleUnqualifiedName(ND, ND->getDeclName());
  444     if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage)
  903         assert(D->getDeclName().getAsIdentifierInfo() &&
  905         mangleSourceName(D->getDeclName().getAsIdentifierInfo()->getName());
tools/clang/lib/AST/NSAPI.cpp
  512         TDT->getDecl()->getDeclName().getAsIdentifierInfo()->getName())
  567     if (TDT->getDecl()->getDeclName().getAsIdentifierInfo() == II)
tools/clang/lib/AST/ODRHash.cpp
  283     Hash.AddDeclarationName(D->getDeclName());
  599   AddDeclarationName(Enum->getDeclName());
  636   AddDeclarationName(ND->getDeclName());
tools/clang/lib/AST/QualTypeNames.cpp
  195     if (NS->getDeclName()) {
tools/clang/lib/AST/StmtPrinter.cpp
 1770   OS << Node->getPropertyDecl()->getDeclName();
tools/clang/lib/AST/TemplateBase.cpp
  410     if (ND->getDeclName()) {
tools/clang/lib/AST/TextNodeDumper.cpp
  420     OS << " '" << ND->getDeclName() << '\'';
  428   if (ND->getDeclName()) {
tools/clang/lib/AST/VTableBuilder.cpp
  499   DeclarationName LHSName = LHS->getDeclName();
  500   DeclarationName RHSName = RHS->getDeclName();
 2873         std::make_pair(ND->getDeclName(), Groups.size()));
tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
  376   if (Node.getDeclName()) {
tools/clang/lib/Analysis/BodyFarm.cpp
  221       DeclarationNameInfo(MemberDecl->getDeclName(), SourceLocation()),
tools/clang/lib/Analysis/LiveVariables.cpp
  655       llvm::errs() << " " << (*di)->getDeclName().getAsString()
tools/clang/lib/CodeGen/CGDebugInfo.cpp
  337       assert(D->getDeclName().getAsIdentifierInfo() &&
  339       return D->getDeclName().getAsIdentifierInfo()->getName();
 2314   assert(Getter->getDeclName().isObjCZeroArgSelector());
 2316          Getter->getDeclName().getObjCSelector().getNameForSlot(0);
 2326   assert(Setter->getDeclName().isObjCOneArgSelector());
 2328          Setter->getDeclName().getObjCSelector().getNameForSlot(0);
tools/clang/lib/CodeGen/CGObjCMac.cpp
 3801     if (!IVD->getDeclName())
 6821     if (!IVD->getDeclName())
tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
  824     if (!FD->getDeclName())
tools/clang/lib/CodeGen/CodeGenFunction.cpp
  611   if (!MD || !MD->getDeclName().getAsIdentifierInfo() ||
  612       !MD->getDeclName().getAsIdentifierInfo()->isStr("allocate") ||
 2210           << TargetDecl->getDeclName()
 2236           << FD->getDeclName() << TargetDecl->getDeclName() << MissingFeature;
 2236           << FD->getDeclName() << TargetDecl->getDeclName() << MissingFeature;
tools/clang/lib/CodeGen/CodeGenModule.cpp
 1843     auto Kind = FD->getDeclName().getCXXOverloadedOperator();
tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  877   if (!CatchParam || !CatchParam->getDeclName()) {
tools/clang/lib/Frontend/ASTUnit.cpp
  920     else if (DeclarationName Name = ND->getDeclName()) {
 2038     DeclarationName Name = Results[I].Declaration->getDeclName();
tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  857     if (RD && !RD->getDeclName().getAsIdentifierInfo()) {
 3607     if (!RD || !RD->getDeclName().getAsIdentifierInfo())
 3615     if (!ED || !ED->getDeclName().getAsIdentifierInfo())
 7012     if (!IVD->getDeclName())
 7498         if (RD && !RD->getDeclName().getAsIdentifierInfo()) {
tools/clang/lib/Index/CommentToXML.cpp
  900       if (DeclarationName DeclName = ND->getDeclName()) {
tools/clang/lib/Index/IndexDecl.cpp
  205       for (const NamedDecl *ND : Pattern->lookup(D->getDeclName())) {
tools/clang/lib/Index/IndexSymbol.cpp
  480     DeclarationName DeclName = ND->getDeclName();
tools/clang/lib/Index/IndexingContext.cpp
  222       for (const NamedDecl *BaseND : Pattern->lookup(ND->getDeclName())) {
  232         for (const NamedDecl *BaseECD : Pattern->lookup(ECD->getDeclName()))
  266   return (ND->getDeclName().isEmpty() && !isa<TagDecl>(ND) &&
tools/clang/lib/Index/USRGeneration.cpp
  240   D->getDeclName().print(Out, Policy);
tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  343          FD->getDeclName().getCXXOverloadedOperator() == OO_Delete ||
  344          FD->getDeclName().getCXXOverloadedOperator() == OO_Array_Delete)) {
  759         << VD->getDeclName()
  779   S.Diag(Loc, diag::note_var_fixit_add_initialization) << VD->getDeclName()
  817         << VD->getDeclName() << IsCapturedByBlock
  824       << VD->getDeclName() << IsCapturedByBlock
  960       << VD->getDeclName() << IsCapturedByBlock << DiagKind
  973         << VD->getDeclName() << IsCapturedByBlock
 1005             << VD->getDeclName() << VD->getLocation() << DRE->getSourceRange();
 1016           << VD->getDeclName()
 1027         << VD->getDeclName();
tools/clang/lib/Sema/CodeCompleteConsumer.cpp
  741   DeclarationName Name = Declaration->getDeclName();
tools/clang/lib/Sema/IdentifierResolver.cpp
  145   DeclarationName Name = D->getDeclName();
  170   DeclarationName Name = D->getDeclName();
  211   DeclarationName Name = D->getDeclName();
  417   void *InfoPtr = D->getDeclName().getFETokenInfo();
tools/clang/lib/Sema/Sema.cpp
  859         << isa<TypeAliasDecl>(TD) << TD->getDeclName();
 1158                   << DiagD->getDeclName();
 1166                   << DiagD->getDeclName();
 1169                    << /*function*/0 << DiagD->getDeclName();
 1174               << /*function*/0 << DiagD->getDeclName();
 1179               << DiagD->getDeclName();
 1187                 << /*variable*/1 << DiagD->getDeclName();
 1193                 << DiagD->getDeclName();
 1197               << /*variable*/1 << DiagD->getDeclName();
 1200               << DiagD->getDeclName();
 1220               << D->getDeclName();
tools/clang/lib/Sema/SemaAccess.cpp
  261   if (From->getDeclName() != To->getDeclName())
  261   if (From->getDeclName() != To->getDeclName())
  363   if (Context->getDeclName() != Friend->getDeclName())
  363   if (Context->getDeclName() != Friend->getDeclName())
  472     if (CTD->getDeclName() != Friend->getDeclName())
  472     if (CTD->getDeclName() != Friend->getDeclName())
 1267     << (D ? D->getDeclName() : DeclarationName())
tools/clang/lib/Sema/SemaCUDA.cpp
  769           << NewTarget << NewFD->getDeclName() << OldTarget << OldFD;
tools/clang/lib/Sema/SemaCast.cpp
  475           << DeclFrom->getDeclName();
  479           << DeclTo->getDeclName();
tools/clang/lib/Sema/SemaChecking.cpp
 4192       << FDecl->getDeclName();
 6188            << FDecl->getDeclName() << Arg->getSourceRange();
13110           CheckShadowInheritedFields(Param->getLocation(), Param->getDeclName(),
13366                             << ND->getDeclName());
tools/clang/lib/Sema/SemaCodeComplete.cpp
  738   if (!ND->getDeclName())
  959     auto DeclNameKind = ND->getDeclName().getNameKind();
 1087   ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName());
 1112     ShadowMap::iterator NamePos = SM->find(R.Declaration->getDeclName());
 1167   SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size());
 1323             CurContext, Method->getDeclName().getAsOpaqueInteger())];
 3111   DeclarationName Name = ND->getDeclName();
 3964     if (!P->getDeclName())
 5698     if (!Field->getDeclName())
tools/clang/lib/Sema/SemaDecl.cpp
 1222   LookupResult Result(*this, Found->getDeclName(), NameLoc, LookupOrdinaryName);
 1449   IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
 1467     for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) {
 1733   } else if (!D->getDeclName()) {
 1878     S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName();
 1901     if (!D->getDeclName()) continue;
 2258       << New->getDeclName();
 2353       << New->getDeclName();
 2374     << New->getDeclName();
 2650         S.Diag(VD->getLocation(), Diag) << VD->getDeclName();
 3178         << New->getDeclName();
 3190     Diag(New->getLocation(), diag::err_builtin_redeclare) << Old->getDeclName();
 3223         << New->getDeclName();
 3399         << New->getDeclName();
 3744   Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
 3822     << New->getDeclName() << New->getType() << Old->getType();
 3996         << New->getDeclName();
 4026     Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName();
 4035         << New->getDeclName();
 4064           << New->getDeclName();
 4068           << New->getDeclName();
 4087     Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
 4095     Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName();
 4101     Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName();
 4117     Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
 4141       Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
 4144       Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
 4152         << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic);
 4488     if (!Record->getDeclName() && Record->isCompleteDefinition() &&
 4524     if ((Tag && Tag->getDeclName()) ||
 4701         cast<NamedDecl>(D)->getDeclName()) {
 4703       if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
 4926             MemRecord->getDeclName()) {
 5407   if (Record && Record->getIdentifier() && Record->getDeclName() == Name) {
 5718   if (New->getDeclName() && AddToScope)
 6692             << Name << RD->getDeclName();
 6702         else if (!RD->getDeclName())
 6933         << 0 << NewVD->getDeclName()
 7372         << Shadow.VD->getDeclName()
 7376           << Shadow.VD->getDeclName() << /*explicitly*/ 0;
 7386   LookupResult R(*this, D->getDeclName(), D->getLocation(),
 7423   NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName());
 7460           S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName());
 7510       if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) {
 7808     DeclarationName Name = Method->getDeclName();
 7843   S.Diag(MD->getLocation(), DiagID) << MD->getDeclName();
 7967   DeclarationName Name = NewFD->getDeclName();
 8519           << OrigRecDecl->getDeclName();
 9132         << NewFD->getDeclName();
10445         if (NewFD->getDeclName() != Name) {
11133         << VDecl->getDeclName() << Type;
11248       VDecl, VDecl->getDeclName(), VDecl->getType(), VDecl->getTypeSourceInfo(),
11559       << Method->getDeclName() << Init->getSourceRange();
11647           << VDecl->getDeclName();
12063             << Var->getDeclName();
12176         << Var->getDeclName()
12304       << VD->getDeclName() << Error;
12893           << Deduced << DeducedDecl->getDeclName()
12894           << DT->getDeducedType() << D->getDeclName()
13077       << 1 << New->getDeclName()
13109     if (!Parameter->isReferenced() && Parameter->getDeclName() &&
13112         << Parameter->getDeclName();
13128           << D->getDeclName() << Size;
13140           << Parameter->getDeclName() << Size;
13427         << FD->getDeclName() << getLangOpts().CPlusPlus;
13429     Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
13587       if (NonParmDecl->getDeclName())
14371         << 2 << NewTD->getDeclName()
15106           if (Tag->getDeclName() == Name &&
16148           << NewFD->getDeclName() << EltTy;
16227           << FD->getParent()->isUnion() << FD->getDeclName() << member;
16432         if (IFD->getDeclName())
16473         << FD->getDeclName();
16487             << FD->getDeclName() << FD->getType() << Record->getTagKind();
16506           Diag(FD->getLocation(), DiagID) << FD->getDeclName()
16515               << FD->getDeclName() << Record->getTagKind();
16518             << FD->getDeclName() << Record->getTagKind();
16528             << FD->getDeclName() << FD->getType();
16558               << FD->getDeclName() << FD->getType();
16563               << FD->getDeclName();
17087   if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) {
tools/clang/lib/Sema/SemaDeclAttr.cpp
 3542         << isSize << Field->getDeclName() << FieldBits;
 5572           cast<NamedDecl>(D)->getDeclName().getCXXOverloadedOperator())) {
 7871         if (TD->getDeclName().isEmpty()) {
 8013           << ObjCProperty->getDeclName() << property_note_select;
 8018           << ObjCProperty->getDeclName() << property_note_select;
tools/clang/lib/Sema/SemaDeclCXX.cpp
   99              << Param->getDeclName() << DefaultArg->getSourceRange();
  107                << VDecl->getDeclName() << DefaultArg->getSourceRange();
  591           << New->getDeclName()
 1212         S.BuildReferenceType(T, E.get()->isLValue(), Loc, B->getDeclName());
 1217         B->getDeclName().getAsIdentifierInfo(), RefType,
 1240                                    DeclarationNameInfo(B->getDeclName(), Loc),
 1394                                   DeclarationNameInfo(FD->getDeclName(), Loc));
 1613           << (FD ? FD->getDeclName() : DeclarationName()) << T;
 1615           << !FD << (FD ? FD->getDeclName() : DeclarationName()) << T;
 2517       << CXXBaseDecl->getDeclName();
 2526       << CXXBaseDecl->getDeclName()
 2529         << CXXBaseDecl->getDeclName() << FA->getRange();
 3026       << MD->getDeclName();
 3048     Diag(MD->getLocation(), DiagID) << MD->getDeclName();
 3064     << New->getDeclName()
 3440       if (!FD->isImplicit() && FD->getDeclName() &&
 4620     LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
 4715       << 0 << Field->getDeclName();
 4725       << 1 << Field->getDeclName();
 5212         D << 0 << PrevInit->getAnyMember()->getDeclName();
 5217         D << 0 << Init->getAnyMember()->getDeclName();
 5246       << Field->getDeclName()
 5278           << Field->getDeclName()
 5408                             << Field->getDeclName()
 5577         << SO->second.front().Method->getDeclName() << RD->getDeclName();
 5577         << SO->second.front().Method->getDeclName() << RD->getDeclName();
 5846           << CD->getDeclName();
 6118   switch (FD->getDeclName().getCXXOverloadedOperator()) {
 6322           << F->getDeclName();
 6336     DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
 6344           << D->getDeclName();
 8211     DeclarationName Name = Method->getDeclName();
 8265   if (!MD->getDeclName().isIdentifier())
 8278   DeclContext::lookup_result R = DC->lookup(MD->getDeclName());
 8508       if (Param->getDeclName()) {
 8538   if (Param->getDeclName())
 8570   if (Param->getDeclName())
10111               DeclarationNameInfo(Using->getDeclName(), Using->getLocation())))
10267   if (Shadow->getDeclName().getNameKind() ==
10578         UsingName.setName(ND->getDeclName());
11402   DeclarationName Name = FD->getDeclName();
11551   DeclarationName Name = BaseCtor->getDeclName();
12564         << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
12574         << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
12593     LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
12932         << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
12942         << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
12960     LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
13524         ClassPattern->lookup(Field->getDeclName());
13599                               << VD->getDeclName() << VD->getType());
13683       << FnDecl->getDeclName();
13690       << FnDecl->getDeclName();
13716     << FnDecl->getDeclName() << ExpectedResultType;
13729     << FnDecl->getDeclName() << ExpectedResultType;
13735         << FnDecl->getDeclName();
13741       << FnDecl->getDeclName();
13747       << FnDecl->getDeclName() << ExpectedFirstParamType;
13760     << FnDecl->getDeclName() << ExpectedFirstParamType;
13791       << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
13867                   diag::err_operator_overload_static) << FnDecl->getDeclName();
13882         << FnDecl->getDeclName();
13896           << FnDecl->getDeclName() << Param->getDefaultArgRange();
13934       << FnDecl->getDeclName() << NumParams << ErrorKind;
13941       << FnDecl->getDeclName();
13948       << FnDecl->getDeclName();
14024       << FnDecl->getDeclName();
14173     = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
15179           Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName();
15229         FD->getDeclName().getCXXOverloadedOperator() != OO_Equal))) {
15350     << New->getDeclName() << New->getType() << Old->getType();
15386         << New->getDeclName() << NewTy << OldTy
15404                               New->getDeclName()))
15411           << New->getDeclName() << NewTy << OldTy
15424             New->getDeclName(), nullptr)) {
15439         << New->getDeclName() << NewTy << OldTy
15451         << New->getDeclName() << NewTy << OldTy
15478       << Method->getDeclName() << InitRange;
tools/clang/lib/Sema/SemaDeclObjC.cpp
  302           << ND->getDeclName();
  320         << ND->getDeclName();
  620                                    SuperClassDecl->getDeclName(),
  879                         << newTypeParam->getDeclName()
  881                         << prevTypeParam->getDeclName();
  906           << prevTypeParam->getDeclName();
  925         << newTypeParam->getDeclName()
  928         << (newTypeParam->getDeclName() == prevTypeParam->getDeclName())
  928         << (newTypeParam->getDeclName() == prevTypeParam->getDeclName())
  929         << prevTypeParam->getDeclName()
  936         << prevTypeParam->getDeclName();
  959         << newTypeParam->getDeclName()
  964         << prevTypeParam->getDeclName();
 1062         << PrevIDecl->getDeclName();
 1466           << proto->getDeclName();
 1507           << baseClass->getDeclName() << SourceRange(lAngleLoc, rAngleLoc)
 1761             << Method->getDeclName();
 1935       << IDecl->getDeclName();
 2018           << SDecl->getDeclName();
 2084       << IDecl->getDeclName()
 2085       << IDecl->getSuperClass()->getDeclName();
 2322           << MethodImpl->getDeclName()
 2382       << MethodImpl->getDeclName() << MethodDecl->getReturnType()
 2408             << MethodImpl->getDeclName();
 2412           << MethodImpl->getDeclName();
 2467     << MethodImpl->getDeclName() << IfaceTy << ImplTy;
 2635       << MethodDecl->getDeclName();
 3828             << ivar->getDeclName() << ivar->getType();
 3846           << ivar->getDeclName() << IvarTy
 3853             << ivar->getDeclName() << IvarTy;
 3881             << FirstIvar->getDeclName() << LastIvar->getDeclName()
 3881             << FirstIvar->getDeclName() << LastIvar->getDeclName()
 3882             << LastIvar->getType() << SuperClass->getDeclName();
 3884             << LastIvar->getDeclName();
 3923             << Method->getDeclName();
 3932               << Method->getDeclName();
 3947           << Method->getDeclName();
 3956               << Method->getDeclName();
 4680             << ObjCMethod->getDeclName();
 4707       << ObjCMethod->getDeclName();
tools/clang/lib/Sema/SemaExceptionSpec.cpp
  254       Decl->getDeclName().getCXXOverloadedOperator() != OO_Delete &&
  255       Decl->getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
  277   OverloadedOperatorKind OO = New->getDeclName().getCXXOverloadedOperator();
tools/clang/lib/Sema/SemaExpr.cpp
   93         S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName();
  244         << D->getDeclName();
  247         << D->getDeclName() << cast<VarDecl>(D)->getType();
  396     Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
  504   DeclarationName MemberName = IV->getDeclName();
 1774   DeclarationNameInfo NameInfo(D->getDeclName(), Loc);
 2527         Diag(Loc, diag::err_ivar_use_in_class_method) << IV->getDeclName();
 2535         Diag(Loc, diag::err_private_ivar_access) << IV->getDeclName();
 2547           Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
 2555       Diag(Loc, diag::err_ivar_use_in_class_method) << IV->getDeclName();
 2606     Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName();
 2880     S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName();
 2885     S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName();
 2890     S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName();
 4809       FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
 4985   DeclarationName FuncName = FDecl->getDeclName();
 5061       } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName())
 5100                  FDecl->getParamDecl(0)->getDeclName())
12459               << dcl->getDeclName() << dcl->getType();
13975         << MemberDecl->getDeclName()
13992           << MemberDecl->getDeclName()
14361             CXXScopeSpec(), DeclarationNameInfo(Var->getDeclName(), Loc), Var);
15330           << Param->getDeclName() << FD->getDeclName() << CCName;
15330           << Param->getDeclName() << FD->getDeclName() << CCName;
15755   if (IsLambda && !Var->getDeclName()) {
15768         << Var->getDeclName();
15781             << Var->getDeclName();
15783           << Var->getDeclName();
15794         << Var->getDeclName() << !IsLambda;
15796         << Var->getDeclName();
15828       << Var->getDeclName();
15842         << Var->getDeclName();
15979           << Var->getDeclName();
15991                                 Var->getDeclName()))
16107           Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
16109              << Var->getDeclName();
16173         Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
16175           << Var->getDeclName();
17169         << CE->getSourceRange() << FD->getDeclName() << T;
17171           << FD->getDeclName();
tools/clang/lib/Sema/SemaExprCXX.cpp
 1760     OverloadedOperatorKind Kind = FD.getDeclName().getCXXOverloadedOperator();
 2454       OperatorNew->getDeclName().getCXXOverloadedOperator() == OO_Array_New
 7555     R.setLookupName(ND->getDeclName());
tools/clang/lib/Sema/SemaExprMember.cpp
  851     DeclarationNameInfo memberNameInfo(field->getDeclName(), loc);
  869     DeclarationNameInfo memberNameInfo(field->getDeclName(), loc);
 1361                 << IDecl->getDeclName() << MemberName);
 1387             << IDecl->getDeclName() << MemberName
 1428               << IV->getDeclName();
 1432               << IV->getDeclName();
 1456         S.Diag(MemberLoc, diag::warn_direct_ivar_access) << IV->getDeclName();
tools/clang/lib/Sema/SemaExprObjC.cpp
 1143           << Method->getDeclName();
 1146         << MatchingMethodDecl->getDeclName();
 1985     << MemberName << QualType(OPT, 0) << Ivar->getDeclName()
 2239       << Method->getDeclName();
 2414           << Method->getDeclName();
 2510           << Method->getDeclName();
 2549           << Method->getDeclName();
 2557           << Method->getDeclName();
 2559         << CurMeth->getDeclName();
 2825               << Method->getDeclName();
 3094                     << SelMethod->getDeclName();
 3104                     << SelMethod->getDeclName();
tools/clang/lib/Sema/SemaInit.cpp
  536         CtorDecl->isExplicit() && R->getDeclName() &&
 3260     return (D ? D->getDeclName() : DeclarationName());
 3266     return Variable.VariableOrMember->getDeclName();
 6314     if (Entity.getDecl()->getDeclName())
 6316         << Entity.getDecl()->getDeclName();
 6324       << Entity.getMethodDecl()->getDeclName();
 7550             << VD->isImplicit() << VD->getDeclName()
 8873       << (BitField ? BitField->getDeclName() : DeclarationName())
tools/clang/lib/Sema/SemaLambda.cpp
 1510       CXXScopeSpec(), DeclarationNameInfo(Var->getDeclName(), Loc), Var);
tools/clang/lib/Sema/SemaLookup.cpp
 2721   if (Class->getDeclName() == Result.S.VAListTagName)
 3645     ShadowMaps.back()[ND->getDeclName()].push_back(ND);
 3672     ShadowMap::iterator Pos = SM->find(ND->getDeclName());
 5150     CorrectionName = CDecl->getDeclName();
tools/clang/lib/Sema/SemaModule.cpp
  653     if (ND->getDeclName() && ND->getFormalLinkage() == InternalLinkage) {
tools/clang/lib/Sema/SemaObjCProperty.cpp
  101     << property->getDeclName()
  117   DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
  238       DeclContext::lookup_result R = Super->lookup(Res->getDeclName());
  406     << NewProperty->getDeclName() << "atomic"
  471         << CCPrimary->getDeclName();
  757       << property->getDeclName()
  758       << ivar->getDeclName()
  764       << property->getDeclName()
  765       << ivar->getDeclName();
  770       << property->getDeclName()
  771       << ivar->getDeclName()
 1025   for (auto Found : OrigClass->lookup(Prop->getDeclName())) {
 1080       Diag(PropertyLoc, diag::err_bad_property_decl) << IDecl->getDeclName();
 1100         Diag(PropertyLoc, diag::err_category_property) << CD->getDeclName();
 1113         DeclContext::lookup_result R = Ext->lookup(property->getDeclName());
 1164       << Category->getDeclName();
 1187                             property->getDeclName())) {
 1323       << property->getDeclName() << Ivar->getDeclName()
 1323       << property->getDeclName() << Ivar->getDeclName()
 1324       << ClassDeclared->getDeclName();
 1348           << property->getDeclName() << PropType
 1349           << Ivar->getDeclName() << IvarType;
 1363             << property->getDeclName() << PropType
 1364             << Ivar->getDeclName() << IvarType;
 1373         << property->getDeclName() << Ivar->getDeclName();
 1373         << property->getDeclName() << Ivar->getDeclName();
 1382         << property->getDeclName() << Ivar->getDeclName();
 1382         << property->getDeclName() << Ivar->getDeclName();
 1595         << Property->getDeclName() << inheritedName;
 1599         << Property->getDeclName() << "copy" << inheritedName;
 1611           << Property->getDeclName() << "retain (or strong)" << inheritedName;
 1625       << Property->getDeclName() << "setter" << inheritedName;
 1630       << Property->getDeclName() << "getter" << inheritedName;
 1673             << property->getDeclName() << PropertyRValueType
 1688     << property->getDeclName()
 1965     S.Diag(IMPDecl->getLocation(), diag) << Prop->getDeclName() << Method;
 2104           << setterMethod->getSelector() << property->getDeclName();
 2252             << method->getDeclName() << spelling;
 2366         << property->getDeclName()
tools/clang/lib/Sema/SemaOpenMP.cpp
 4765         << FD->getDeclName() << (isa<CXXMethodDecl>(ADecl) ? 1 : 0);
 4820         << FD->getDeclName() << (isa<CXXMethodDecl>(ADecl) ? 1 : 0);
 4906         << FD->getDeclName() << (isa<CXXMethodDecl>(ADecl) ? 1 : 0);
tools/clang/lib/Sema/SemaOverload.cpp
  860   if (!shouldAddReversed(FD->getDeclName().getCXXOverloadedOperator()))
 5332             << Method->getDeclName() << FromRecordType << (CVR - 1)
 5335           << Method->getDeclName();
 5346           << Method->getDeclName() << FromClassification.isRValue()
 5349         << Method->getDeclName();
10159       Fn->getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
10210   if (modeCount == 1 && Fn->getParamDecl(0)->getDeclName())
10254         << ParamD->getDeclName();
10263         << ParamD->getDeclName()
10290         << ParamD->getDeclName() << Arg << NonCanonParam;
10311           << ParamD->getDeclName() << *DeductionFailure.getFirstArg() << T1
10324         << which << ParamD->getDeclName() << *DeductionFailure.getFirstArg()
10332     if (ParamD->getDeclName())
10335           << ParamD->getDeclName();
11577             << Matches[0].second->getDeclName(),
12866             FnDecl->getDeclName().getCXXOverloadedOperator();
13114                          << getOperatorSpelling(Best->Function->getDeclName()
13559           << MD->getDeclName() << isa<CXXDestructorDecl>(CurContext)
13560           << MD->getParent()->getDeclName();
13562       Diag(MD->getBeginLoc(), diag::note_previous_decl) << MD->getDeclName();
13565             << MD->getParent()->getDeclName() << MD->getDeclName();
13565             << MD->getParent()->getDeclName() << MD->getDeclName();
tools/clang/lib/Sema/SemaPseudoObject.cpp
 1243         AtIndexGetter->getDeclName();
tools/clang/lib/Sema/SemaStmt.cpp
  521     Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
 1223           UnhandledNames.push_back(EI->second->getDeclName());
 1567         PDiag << VD->getDeclName();
 1948             << D->getDeclName();
 3171         Str += NRVOCandidate->getDeclName().getAsString();
 3175             << NRVOCandidate->getDeclName() << ResultType << QT;
 3204             Str += FakeNRVOCandidate->getDeclName().getAsString();
 3208                 << FakeNRVOCandidate->getDeclName() << IsThrow;
 3597         << FD->getDeclName();
 3666           << CurDecl->getDeclName() << FunctionKind
 3695             << CurDecl->getDeclName() << isa<CXXDestructorDecl>(CurDecl)
 3712             << CurDecl->getDeclName() << FunctionKind
 3748       Diag(ReturnLoc, DiagID) << getCurMethodDecl()->getDeclName() << 1/*meth*/;
tools/clang/lib/Sema/SemaTemplate.cpp
  778         << /*member function*/ 1 << Instantiation->getDeclName()
  809           << /*static data member*/ 2 << Instantiation->getDeclName()
  840   Diag(Loc, DiagId) << cast<NamedDecl>(PrevDecl)->getDeclName();
 1875                               TTP->getDefaultArgumentLoc(), TTP->getDeclName());
 1964                             OldParam->getLocation(), OldParam->getDeclName());
 1971                                 OldParam->getDeclName());
 2974         << Template->getDeclName();
 2983         << 0 << (*I)->getDeclName();
 3260                           AliasTemplate->getDeclName());
 3757       if (Param->getDeclName())
 3759             << Param->getDeclName();
 3860                << FnTemplate->getDeclName();
 3893           << VarTemplate->getDeclName();
 4647                           Param->getDefaultArgumentLoc(), Param->getDeclName());
 4934                              NTTP->getDeclName());
 4939                              NTTP->getDeclName());
 6369         << Param->getDeclName() << Param->getType() << Arg->getType()
 7814         << ClassTemplate->getDeclName();
 8082   DeclarationNameInfo NameInfo(NewDecl->getDeclName(), NameLoc);
 8092          diag::err_redefinition_different_kind) << NewDecl->getDeclName();
 8487         << FD->getDeclName() << FDLookupContext;
 8501       PDiag(diag::err_function_template_spec_no_match) << FD->getDeclName(),
 8503           << FD->getDeclName() << (ExplicitTemplateArgs != nullptr),
 9331         << 0 << Record->getDeclName() << Record->getDeclContext();
 9556           << 2 << PrevTemplate->getDeclName();
 9942     EnableIfDecl->getDeclName().getAsIdentifierInfo();
10253                                           NTTP->getDeclName());
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 2573                         NTTP->getDeclName()).isNull())
 3093                   Function->getTypeSpecStartLoc(), Function->getDeclName());
 3130                                       Function->getDeclName(),
 3422                         Specialization->getDeclName());
 4622       << VDecl->getDeclName() << VDecl->getType() << Init->getSourceRange();
 4627       << VDecl->getDeclName() << VDecl->getType() << Init->getType()
tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
 1286                                               NTTP->getDeclName());
 1358                                      TemplateArgs, loc, parm->getDeclName());
 1361                                TemplateArgs, loc, parm->getDeclName());
 1399   DeclarationNameInfo NameInfo(PD->getDeclName(), Loc);
 1820                       OldParm->getLocation(), OldParm->getDeclName());
 1842                       OldParm->getDeclName());
 2862             ClassPattern->lookup(Field->getDeclName());
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  714                            D->getLocation(), D->getDeclName());
  814     DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
  827                                     D->getDeclName(), InstParams, AliasInst);
  878       D->getDeclName(), /*AllowDeducedTST*/true);
  943                            D->getLocation(), D->getDeclName());
  979   FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
 1002   if (!Field->getDeclName()) {
 1029                            D->getLocation(), D->getDeclName());
 1049       SemaRef.Context, Owner, D->getLocation(), D->getDeclName(), DI->getType(),
 1336     DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
 1363     LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
 1376         << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
 1503     = Owner->lookup(ClassTemplate->getDeclName());
 1535     DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
 1587   DeclContext::lookup_result Found = Owner->lookup(VarTemplate->getDeclName());
 1892                                                     Function->getDeclName(),
 1925       SemaRef, Function->getDeclName(), SourceLocation(),
 2201                                                     Method->getDeclName(),
 2416                           D->getDefaultArgumentLoc(), D->getDeclName());
 2447                             D->getLocation(), D->getDeclName());
 2492                                                   D->getDeclName());
 2517                                                      D->getDeclName());
 2532                            D->getLocation(), D->getDeclName());
 3058       /*S=*/nullptr, Owner, D->getDeclName(), ReductionTypes, D->getAccess(),
 3156       /*S=*/nullptr, Owner, D->getDeclName(), SubstMapperTy, D->getLocation(),
 3433                         D->getTypeSpecStartLoc(), D->getDeclName());
 3774       PartialSpec->getTypeSpecStartLoc(), PartialSpec->getDeclName());
 3829                                     D->getDeclName(),
 3925       FunctionParam->setDeclName(PatternParam->getDeclName());
 3935                                  FunctionParam->getDeclName());
 3955         FunctionParam->setDeclName(PatternParam->getDeclName());
 3960                                    FunctionParam->getDeclName());
 4463                 PatternDecl->getTypeSpecStartLoc(), PatternDecl->getDeclName());
 4530       *this, NewVar->getDeclName(), NewVar->getLocation(),
 4889       LookupResult R(*this, Var->getDeclName(), Var->getLocation(),
 4971                                               New->getDeclName());
 5006                                         New->getDeclName());
 5238     if (!Field->getDeclName()) {
 5251   return D->getDeclName() &&
 5252          D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
 5252          D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
 5517     if (auto Name = D->getDeclName()) {
 5564           << D->getDeclName()
 5577           << D->getDeclName()
tools/clang/lib/Sema/SemaType.cpp
  853       << objcClass->getDeclName()
  923           << objcClass->getDeclName()
  964           << typeArg << bound << typeParam->getDeclName();
  966         << typeParam->getDeclName();
  992           << typeArg << bound << typeParam->getDeclName();
  994         << typeParam->getDeclName();
 1022       << objcClass->getDeclName()
tools/clang/lib/Sema/TreeTransform.h
 2303     if (!Member->getDeclName()) {
 3154     DeclarationNameInfo NameInfo(Ivar->getDeclName(), IvarLoc);
 3174     DeclarationNameInfo NameInfo(Property->getDeclName(), PropertyLoc);
 9292       NameInfo.getName() == E->getDecl()->getDeclName() &&
tools/clang/lib/Serialization/ASTCommon.cpp
  449   if (D->getDeclName() || !isa<CXXRecordDecl>(D->getLexicalDeclContext()))
tools/clang/lib/Serialization/ASTReader.cpp
 1041                ->getDeclName().getAsIdentifierInfo();
 7621     if (DeclarationName Name = cast<NamedDecl>(D)->getDeclName()) {
 8067     if (ND->getDeclName() == Name)
 8088     Decls[ND->getDeclName()].push_back(ND);
 8292     pushExternalDeclIntoScope(D, D->getDeclName());
10159         if (ND->getDeclName() == D->getDeclName())
10159         if (ND->getDeclName() == D->getDeclName())
10428           DeclarationName FirstName = FirstDecl->getDeclName();
10429           DeclarationName SecondName = SecondDecl->getDeclName();
10963         auto FirstName = FirstMethod->getDeclName();
10964         auto SecondName = SecondMethod->getDeclName();
11132           DeclarationName FirstParamName = FirstParam->getDeclName();
11133           DeclarationName SecondParamName = SecondParam->getDeclName();
11314         auto FirstName = FirstTD->getDeclName();
11315         auto SecondName = SecondTD->getDeclName();
11345         auto FirstName = FirstVD->getDeclName();
11346         auto SecondName = SecondVD->getDeclName();
11849         if (FirstParam->getDeclName() != SecondParam->getDeclName()) {
11849         if (FirstParam->getDeclName() != SecondParam->getDeclName()) {
11852               << I + 1 << FirstParam->getDeclName();
11855               << I + 1 << SecondParam->getDeclName();
12080         if (FirstEnumConstant->getDeclName() !=
12081             SecondEnumConstant->getDeclName()) {
tools/clang/lib/Serialization/ASTReaderDecl.cpp
  856   ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName());
 1334   if (!FD->getDeclName()) {
 1593   ReadDeclarationNameLoc(D->DNLoc, D->getDeclName());
 1643   ReadDeclarationNameLoc(D->DNLoc, D->getDeclName());
 2937   assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!");
 2937   assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!");
 3184   DeclarationName Name = New->getDeclName();
 3289                                                : D->getDeclName();
 4118       if (Cat->getDeclName()) {
 4119         ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()];
 4135             << Interface->getDeclName() << Cat->getDeclName();
 4135             << Interface->getDeclName() << Cat->getDeclName();
 4161         if (Cat->getDeclName())
 4162           NameCategoryMap[Cat->getDeclName()] = Cat;
tools/clang/lib/Serialization/ASTReaderStmt.cpp
  588   ReadDeclarationNameLoc(E->DNLoc, E->getDecl()->getDeclName());
  796   Record.readDeclarationNameLoc(E->MemberDNLoc, E->MemberDecl->getDeclName());
tools/clang/lib/Serialization/ASTWriter.cpp
 4114           auto Name = ChildND->getDeclName();
 4180     Generator.insert(ConstructorDecls.front()->getDeclName(),
 4183     Generator.insert(ConversionDecls.front()->getDeclName(),
tools/clang/lib/Serialization/ASTWriterDecl.cpp
  359   Record.AddDeclarationName(D->getDeclName());
  391       D->getDeclName().getNameKind() == DeclarationName::Identifier)
  421     Record.AddIdentifierRef(TD->getDeclName().getAsIdentifierInfo());
  464       D->getDeclName().getNameKind() == DeclarationName::Identifier)
  499       D->getDeclName().getNameKind() == DeclarationName::Identifier)
  534   Record.AddDeclarationNameLoc(D->DNLoc, D->getDeclName());
  785       D->getDeclName())
  905   if (!D->getDeclName())
  922       D->getDeclName())
 1035       D->getDeclName().getNameKind() == DeclarationName::Identifier &&
 1235   Record.AddDeclarationNameLoc(D->DNLoc, D->getDeclName());
 1284   Record.AddDeclarationNameLoc(D->DNLoc, D->getDeclName());
 1345       D->getDeclName().getNameKind() == DeclarationName::Identifier &&
tools/clang/lib/Serialization/ASTWriterStmt.cpp
  494   DeclarationName::NameKind nk = (E->getDecl()->getDeclName().getNameKind());
  515   Record.AddDeclarationNameLoc(E->DNLoc, E->getDecl()->getDeclName());
  713                                E->getMemberDecl()->getDeclName());
tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
 1888     if (!Method->getDeclName().isIdentifier())
 1903     if (!Method->getDeclName().isIdentifier())
tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
  508   return (MethodDec && MethodDec->getDeclName().isIdentifier() &&
  518   if (MethodDec->getDeclName().isIdentifier()) {
tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
 3179         os << " (within a call to '" << ND->getDeclName() << "')";
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
  751     DR->getDecl()->getDeclName().print(os, PP);
 2365     Out << DR->getDecl()->getDeclName().getAsString();
 2562   Out << (IsAssuming ? "Assuming '" : "'") << VD->getDeclName() << "' is ";
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
  848   if (const IdentifierInfo *II = RD->getDeclName().getAsIdentifierInfo())
tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
  198           declName = ND->getDeclName().getAsString();
tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
  463   os << "code{" << getDecl()->getDeclName().getAsString() << '}';
tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
  719           const std::string &declName = ND->getDeclName().getAsString();
tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
  694     if (ND->getDeclName().isIdentifier())
  702     if (ND->getDeclName().isIdentifier())
tools/clang/lib/Tooling/Core/Lookup.cpp
   75     if (cast<NamespaceDecl>(*FromIter)->getDeclName() ==
   76         cast<NamespaceDecl>(*UseIter)->getDeclName())
tools/clang/lib/Tooling/Transformer/RangeSelector.cpp
  193       if (!D->getDeclName().isIdentifier())
tools/clang/tools/extra/clang-tidy/bugprone/AssertSideEffectCheck.cpp
   57       if (FuncDecl->getDeclName().isIdentifier() &&
tools/clang/tools/extra/clang-tidy/google/NonConstReferences.cpp
  130   if (Function->getDeclName().isIdentifier() && Function->getName() == "swap")
tools/clang/tools/extra/clang-tidy/misc/UnusedParametersCheck.cpp
  179     if (Param->isUsed() || Param->isReferenced() || !Param->getDeclName() ||
tools/clang/tools/extra/clang-tidy/performance/InefficientVectorOperationCheck.cpp
  262               << AppendCall->getMethodDecl()->getDeclName();
tools/clang/tools/extra/clang-tidy/readability/IdentifierNamingCheck.cpp
  588       return CXXRecordDecl::FindOrdinaryMember(S, P, Decl->getDeclName());
  873           DeclarationNameInfo(Decl->getDeclName(), Decl->getLocation())
tools/clang/tools/extra/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp
  120           DeclarationNameInfo((*OtherParamIt)->getDeclName(),
tools/clang/tools/extra/clang-tidy/utils/ExceptionAnalyzer.cpp
   81       if (TD->getDeclName().isIdentifier()) {
tools/clang/tools/extra/clangd/AST.cpp
  140   if (isAnonymous(ND.getDeclName())) {
  155   ND.getDeclName().print(Out, PP);
tools/clang/tools/extra/clangd/CodeComplete.cpp
  665   auto NameKind = D.getDeclName().getNameKind();
tools/clang/tools/extra/clangd/FindTarget.cpp
  106         for (const NamedDecl *BaseND : Parent->lookup(ND->getDeclName()))
  112           for (const NamedDecl *BaseECD : Pattern->lookup(ECD->getDeclName()))
  453       if (ND->getDeclName().isIdentifier() &&
  454           !ND->getDeclName().getAsIdentifierInfo())
tools/clang/tools/extra/clangd/SemanticHighlighting.cpp
  194     if (canHighlightName(ND->getDeclName()))
tools/clang/tools/extra/clangd/index/SymbolCollector.cpp
  206   if (ND.getDeclName().isEmpty())
tools/clang/tools/extra/modularize/Modularize.cpp
  629     if (!ND->getDeclName())
tools/clang/unittests/AST/ASTImporterTest.cpp
 2684     auto FromName = FromD->getDeclName();
 2693   auto ToName = ToD->getDeclName();
 2730   auto FromName = FromFriend->getDeclName();
 2739   auto ToName = ToFriend->getDeclName();
 2775   auto FromName = FromNormal->getDeclName();
 2784   auto ToName = ToNormal->getDeclName();
 2813   auto FromNormalName = FromNormalF->getDeclName();
 2814   auto FromFriendName = FromFriendF->getDeclName();
 2827   auto ToName = ToNormalF->getDeclName();
 3282     ASSERT_FALSE(FromField->getDeclName());
 4024   auto I = Map->find(A0->getDeclName());
 4278   auto Res = LT.lookup(ToTU, D->getDeclName());
 4286       if (ND->getDeclName() == Name)
 4309   DeclarationName FooName = Foo->getDeclName();
 4328   auto Res = LT.lookup(FooDC, Foo->getDeclName());
 4345   DeclarationName FooName = Foo->getDeclName();
 4364   auto Res = LT.lookup(FooDC, Foo->getDeclName());
 4374                               ->getDeclName();
 4411   DeclarationName Name = F0->getDeclName();
 4433   DeclarationName NamePlus = FPlus->getDeclName();
 4438   DeclarationName NameMinus = FMinus->getDeclName();
 4466   ASSERT_NE(ToPlus->getDeclName(), FromPlus->getDeclName());
 4466   ASSERT_NE(ToPlus->getDeclName(), FromPlus->getDeclName());
 4469   auto Res = LT.lookup(ToTU, ToPlus->getDeclName());
 4474   Res = LT.lookup(ToTU, FromPlus->getDeclName());
 4499   DeclarationName Name = RD->getDeclName();
 4524   DeclarationName Name = RD->getDeclName();
 4549   DeclarationName Name = Alias->getDeclName();
 4564   DeclarationName Name = F->getDeclName();
 4587   DeclarationName Name = F->getDeclName();
 4609   DeclarationName Name = F->getDeclName();
 4627   DeclarationName Name = F->getDeclName();
 4660   DeclarationName Name = FieldInSpec->getDeclName();
 4692   DeclarationName Name = F->getDeclName();
 4722   DeclarationName Name = X->getDeclName();
 4743   DeclarationName Name = A->getDeclName();
 4780   DeclarationName Name = A->getDeclName();
tools/lldb/source/Symbol/ClangASTContext.cpp
  176           clang::DeclarationName name = decl->getDeclName();
 1497       *ast, decl_ctx, func_decl->getLocation(), func_decl->getDeclName(),
 2329              named_decl->getDeclName().getAsString().c_str());
 2344            record_decl->getDeclName().getAsString().c_str(),
 2351              named_decl->getDeclName().getAsString().c_str());
 2395           clang::DeclarationName lhs_decl_name = lhs_named_decl->getDeclName();
 2396           clang::DeclarationName rhs_decl_name = rhs_named_decl->getDeclName();
 2421                   lhs_named_decl->getDeclName();
 2423                   rhs_named_decl->getDeclName();
 4643               name = cxx_method_decl->getDeclName().getAsString();
 7910           if (!Rec->getDeclName()) {
 8178   } else if (decl_name == cxx_record_decl->getDeclName()) {
 9889       return ConstString(nd->getDeclName().getAsString());
tools/lldb/source/Symbol/ClangASTImporter.cpp
  878     std::string namespace_string = decl->getDeclName().getAsString();