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

References

gen/tools/clang/include/clang/AST/StmtDataCollectors.inc
  191     addData(S->getIdentKind());
tools/clang/lib/AST/ASTImporter.cpp
 6247                                 E->getIdentKind(), ToFunctionName);
tools/clang/lib/AST/Expr.cpp
  616   assert((getIdentKind() == IK) &&
tools/clang/lib/AST/JSONNodeDumper.cpp
 1146   JOS.attribute("name", PredefinedExpr::getIdentKindName(PE->getIdentKind()));
tools/clang/lib/AST/StmtPrinter.cpp
 1034   OS << PredefinedExpr::getIdentKindName(Node->getIdentKind());
tools/clang/lib/AST/StmtProfile.cpp
 1051   ID.AddInteger(S->getIdentKind());
tools/clang/lib/AST/TextNodeDumper.cpp
  758   OS << " " << PredefinedExpr::getIdentKindName(Node->getIdentKind());
tools/clang/lib/CodeGen/CGExpr.cpp
 2762       PredefinedExpr::getIdentKindName(E->getIdentKind()), FnName};
tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
 1244   return getSema().BuildPredefinedExpr(E->getLocation(), E->getIdentKind());
tools/clang/lib/Sema/TreeTransform.h
 9253                                             E->getIdentKind());
tools/clang/lib/Serialization/ASTWriterStmt.cpp
  472   Record.push_back(E->getIdentKind()); // FIXME: stable encoding
tools/clang/tools/extra/clang-tidy/bugprone/LambdaFunctionNameCheck.cpp
   75   if (E->getIdentKind() != PredefinedExpr::Func &&
   76       E->getIdentKind() != PredefinedExpr::Function) {
   93       << PredefinedExpr::getIdentKindName(E->getIdentKind());