| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | DeclGroup.h | 83 Decl *getSingleDecl() { in getSingleDecl() function 87 const Decl *getSingleDecl() const { in getSingleDecl() function 88 return const_cast<DeclGroupRef*>(this)->getSingleDecl(); in getSingleDecl()
|
| H A D | StmtCXX.h | 386 return cast<VarDecl>(cast<DeclStmt>(getPromiseDeclStmt())->getSingleDecl()); in getPromiseDecl()
|
| H A D | Stmt.h | 1306 const Decl *getSingleDecl() const { return DG.getSingleDecl(); } in getSingleDecl() function 1307 Decl *getSingleDecl() { return DG.getSingleDecl(); } in getSingleDecl() function
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | StmtCXX.cpp | 67 VarDecl *RangeDecl = dyn_cast_or_null<VarDecl>(RangeStmt->getSingleDecl()); in getRangeInit() 77 Decl *LV = cast<DeclStmt>(getLoopVarStmt())->getSingleDecl(); in getLoopVariable()
|
| H A D | Stmt.cpp | 971 return cast<VarDecl>(DS->getSingleDecl()); in getConditionVariable() 1024 return cast<VarDecl>(DS->getSingleDecl()); in getConditionVariable() 1089 return cast<VarDecl>(DS->getSingleDecl()); in getConditionVariable() 1150 return cast<VarDecl>(DS->getSingleDecl()); in getConditionVariable()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | VLASizeChecker.cpp | 260 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in checkPreStmt() 264 else if (const auto *TND = dyn_cast<TypedefNameDecl>(DS->getSingleDecl())) in checkPreStmt()
|
| H A D | UndefinedAssignmentChecker.cpp | 88 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); in checkBind()
|
| H A D | NullabilityChecker.cpp | 1038 auto *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in matchValueExprForBind() 1074 auto *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in isARCNilInitializedLocal()
|
| H A D | BasicObjCFoundationChecks.cpp | 896 const VarDecl *ElemDecl = cast<VarDecl>(DS->getSingleDecl()); in checkElementNonNil()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransRetainReleaseDealloc.cpp | 230 if (DS->isSingleDecl() && DS->getSingleDecl() == RefD) { in isPlusOneAssignToVar() 370 VarDecl *VD = dyn_cast_or_null<VarDecl>(DeclS->getSingleDecl()); in checkForGCDOrXPC()
|
| H A D | TransAutoreleasePool.cpp | 171 if (VarDecl *VD = dyn_cast<VarDecl>(DclS->getSingleDecl())) { in VisitCompoundStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | CheckerHelpers.cpp | 95 VD = cast<VarDecl>(PD->getSingleDecl()); in parseAssignment()
|
| H A D | ExprEngineObjC.cpp | 118 const VarDecl *elemD = cast<VarDecl>(DS->getSingleDecl()); in VisitObjCForCollectionStmt()
|
| H A D | BugReporterVisitors.cpp | 881 if (const auto *VD = dyn_cast<VarDecl>(DS->getSingleDecl())) in matchAssignment() 1246 if (DS->getSingleDecl() != VR->getDecl()) in isInitializationOfVar() 1294 const auto *VD = cast<VarDecl>(DS->getSingleDecl()); in showBRDiagnostics()
|
| H A D | ExprEngineCXX.cpp | 126 const auto *Var = cast<VarDecl>(DS->getSingleDecl()); in computeObjectUnderConstruction()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | ConstructionContext.cpp | 111 assert(!cast<VarDecl>(DS->getSingleDecl())->getType().getCanonicalType() in createBoundTemporaryFromLayers()
|
| H A D | LiveVariables.cpp | 249 if (const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl())) { in Visit() 401 VD = cast<VarDecl>(DS->getSingleDecl()); in VisitObjCForCollectionStmt()
|
| H A D | UninitializedValues.cpp | 692 const auto *VD = cast<VarDecl>(DS->getSingleDecl()); in VisitObjCForCollectionStmt()
|
| H A D | CFG.cpp | 2841 if (const auto *TND = dyn_cast<TypedefNameDecl>(DS->getSingleDecl())) { in VisitDeclSubExpr() 2859 VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in VisitDeclSubExpr() 5144 DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P; in StmtPrinterHelper() 5249 VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); in VisitDeclStmt()
|
| H A D | PathDiagnostic.cpp | 788 DS->getSingleDecl()->getLocation()); in genRange()
|
| H A D | Consumed.cpp | 844 if (const auto *Var = dyn_cast_or_null<VarDecl>(DeclS->getSingleDecl())) in VisitDeclStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGCoroutine.cpp | 355 VarDecl const*VD = static_cast<VarDecl const*>(PM->getSingleDecl()); in addCopy() 494 auto *GroVarDecl = cast<VarDecl>(GroDeclStmt->getSingleDecl()); in EmitGroAlloca()
|
| /netbsd-src/external/mit/isl/dist/interface/ |
| H A D | extract_interface.cc | 162 decl = D.getSingleDecl(); in HandleTopLevelDecl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 91 Decl *decl = DG.getSingleDecl(); in ActOnForEachDeclStmt() 2259 VarDecl *D = dyn_cast<VarDecl>(DS->getSingleDecl()); in ActOnObjCForCollectionStmt() 2461 Decl *LoopVar = DS->getSingleDecl(); in ActOnCXXForRangeStmt() 2711 VarDecl *RangeVar = cast<VarDecl>(RangeDS->getSingleDecl()); in BuildCXXForRangeStmt() 2715 VarDecl *LoopVar = cast<VarDecl>(LoopVarDS->getSingleDecl()); in BuildCXXForRangeStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseTemplate.cpp | 215 return usingDeclPtr.get().getSingleDecl(); in ParseSingleDeclarationAfterTemplate()
|