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

References

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 3544   if (Node.isSingleDecl()) {
tools/clang/include/clang/Analysis/CFG.h
 1345     assert(Synthetic->isSingleDecl() && "Can handle single declarations only");
tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
  170         if (DclS->isSingleDecl()) {
tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
  230       if (DS->isSingleDecl() && DS->getSingleDecl() == RefD) {
  368     if (!DeclS->isSingleDecl())
tools/clang/lib/AST/OpenMPClause.cpp
  228     assert(DS->isSingleDecl() && "Only single expression must be captured.");
tools/clang/lib/Analysis/CFG.cpp
 2783   if (DS->isSingleDecl())
 2810   assert(DS->isSingleDecl() && "Can handle single declarations only.");
 3413           assert(DS->isSingleDecl());
 3743         assert(DS->isSingleDecl());
tools/clang/lib/Analysis/Consumed.cpp
  843   if (DeclS->isSingleDecl())
tools/clang/lib/Analysis/PathDiagnostic.cpp
  769           if (DS->isSingleDecl()) {
tools/clang/lib/CodeGen/CGCoroutine.cpp
  354       assert(PM->isSingleDecl());
tools/clang/lib/Sema/SemaOpenMP.cpp
 5680     if (DS->isSingleDecl()) {
tools/clang/lib/Sema/SemaStmt.cpp
 1913       if (!DS->isSingleDecl())
 2112   if (!DS->isSingleDecl()) {
tools/clang/lib/Sema/TreeTransform.h
 2082       if (RangeStmt->isSingleDecl()) {
tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
  996     if (DS->isSingleDecl()) {
 1030   if (!DS || !DS->isSingleDecl())
tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
   83   if (!DS->isSingleDecl())
tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
   93     assert(PD->isSingleDecl() && "We process decls one by one");
tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
  604       assert(DS->isSingleDecl());
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertUtils.cpp
  800   if (!AliasDecl && S->isSingleDecl() &&
tools/clang/tools/extra/clang-tidy/performance/UnnecessaryCopyInitialization.cpp
   98       Result.Nodes.getNodeAs<DeclStmt>("declStmt")->isSingleDecl() &&
tools/clang/tools/extra/clang-tidy/readability/IsolateDeclarationCheck.cpp
   21 AST_MATCHER(DeclStmt, isSingleDecl) { return Node.isSingleDecl(); }