/external/clang/include/clang/AST/ |
D | DeclGroup.h | 86 Decl *getSingleDecl() { in getSingleDecl() function 90 const Decl *getSingleDecl() const { in getSingleDecl() function 91 return const_cast<DeclGroupRef*>(this)->getSingleDecl(); in getSingleDecl()
|
D | StmtCXX.h | 337 return cast<VarDecl>(cast<DeclStmt>(getPromiseDeclStmt())->getSingleDecl()); in getPromiseDecl()
|
D | Stmt.h | 461 const Decl *getSingleDecl() const { return DG.getSingleDecl(); } in getSingleDecl() function 462 Decl *getSingleDecl() { return DG.getSingleDecl(); } in getSingleDecl() function
|
/external/clang/lib/AST/ |
D | StmtCXX.cpp | 71 VarDecl *RangeDecl = dyn_cast_or_null<VarDecl>(RangeStmt->getSingleDecl()); in getRangeInit() 81 Decl *LV = cast<DeclStmt>(getLoopVarStmt())->getSingleDecl(); in getLoopVariable()
|
D | Stmt.cpp | 783 return cast<VarDecl>(DS->getSingleDecl()); in getConditionVariable() 814 return cast<VarDecl>(DS->getSingleDecl()); in getConditionVariable() 842 return cast<VarDecl>(DS->getSingleDecl()); in getConditionVariable() 876 return cast<VarDecl>(DS->getSingleDecl()); in getConditionVariable()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | UndefinedAssignmentChecker.cpp | 79 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in checkBind()
|
D | VLASizeChecker.cpp | 85 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in checkPreStmt()
|
D | NullabilityChecker.cpp | 1024 auto *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in matchValueExprForBind() 1060 auto *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in isARCNilInitializedLocal()
|
D | BasicObjCFoundationChecks.cpp | 924 const VarDecl *ElemDecl = cast<VarDecl>(DS->getSingleDecl()); in checkElementNonNil()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CheckerHelpers.cpp | 91 VD = dyn_cast_or_null<VarDecl>(PD->getSingleDecl()); in parseAssignment()
|
D | ExprEngineObjC.cpp | 79 const VarDecl *elemD = cast<VarDecl>(DS->getSingleDecl()); in VisitObjCForCollectionStmt()
|
D | ExprEngineCXX.cpp | 118 if (const auto *Var = dyn_cast<VarDecl>(DS->getSingleDecl())) { in getRegionForConstructedObject()
|
D | BugReporterVisitors.cpp | 432 if (DS->getSingleDecl() != VR->getDecl()) in isInitializationOfVar() 605 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); in VisitNode()
|
D | PathDiagnostic.cpp | 820 DS->getSingleDecl()->getLocation()); in genRange()
|
D | ExprEngine.cpp | 1689 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
|
/external/clang/lib/ARCMigrate/ |
D | TransRetainReleaseDealloc.cpp | 226 if (DS->isSingleDecl() && DS->getSingleDecl() == RefD) { in isPlusOneAssignToVar() 366 VarDecl *VD = dyn_cast_or_null<VarDecl>(DeclS->getSingleDecl()); in checkForGCDOrXPC()
|
D | TransAutoreleasePool.cpp | 172 if (VarDecl *VD = dyn_cast<VarDecl>(DclS->getSingleDecl())) { in VisitCompoundStmt()
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 291 if (const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl())) { in Visit() 387 VD = cast<VarDecl>(DS->getSingleDecl()); in VisitObjCForCollectionStmt()
|
D | UninitializedValues.cpp | 686 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); in VisitObjCForCollectionStmt()
|
D | CFG.cpp | 2075 VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in VisitDeclSubExpr() 4020 DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P; in StmtPrinterHelper() 4128 VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); in VisitDeclStmt()
|
D | Consumed.cpp | 858 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(DeclS->getSingleDecl())) in VisitDeclStmt()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 90 Decl *decl = DG.getSingleDecl(); in ActOnForEachDeclStmt() 1785 VarDecl *D = dyn_cast<VarDecl>(DS->getSingleDecl()); in ActOnObjCForCollectionStmt() 1980 Decl *LoopVar = DS->getSingleDecl(); in ActOnCXXForRangeStmt() 2184 VarDecl *RangeVar = cast<VarDecl>(RangeDS->getSingleDecl()); in BuildCXXForRangeStmt() 2188 VarDecl *LoopVar = cast<VarDecl>(LoopVarDS->getSingleDecl()); in BuildCXXForRangeStmt()
|
D | SemaTemplateInstantiateDecl.cpp | 2590 auto *NewDRD = cast<OMPDeclareReductionDecl>(DRD.get().getSingleDecl()); in VisitOMPDeclareReductionDecl()
|
/external/clang/lib/CodeGen/ |
D | CGObjC.cpp | 1468 variable = EmitAutoVarAlloca(*cast<VarDecl>(SD->getSingleDecl())); in EmitObjCForCollectionStmt() 1625 const VarDecl* D = cast<VarDecl>(SD->getSingleDecl()); in EmitObjCForCollectionStmt()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 2792 const Decl *FoundDecl = Node.getSingleDecl(); in AST_MATCHER_P()
|