| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaFixItUtils.cpp | 50 bool ConversionFixItGenerator::tryToFixConversion(const Expr *FullExpr, in tryToFixConversion() argument 54 if (!FullExpr) in tryToFixConversion() 59 const SourceLocation Begin = FullExpr->getSourceRange().getBegin(); in tryToFixConversion() 60 const SourceLocation End = S.getLocForEndOfToken(FullExpr->getSourceRange() in tryToFixConversion() 65 const Expr* Expr = FullExpr->IgnoreImpCasts(); in tryToFixConversion() 85 isa<ParenExpr>(FullExpr) || in tryToFixConversion()
|
| H A D | SemaExprCXX.cpp | 8775 ExprResult FullExpr = FE; in ActOnFinishFullExpr() local 8777 if (!FullExpr.get()) in ActOnFinishFullExpr() 8780 if (!IsTemplateArgument && DiagnoseUnexpandedParameterPack(FullExpr.get())) in ActOnFinishFullExpr() 8786 FullExpr.get()->getType() == Context.UnknownAnyTy) { in ActOnFinishFullExpr() 8787 FullExpr = forceUnknownAnyToType(FullExpr.get(), Context.getObjCIdType()); in ActOnFinishFullExpr() 8788 if (FullExpr.isInvalid()) in ActOnFinishFullExpr() 8792 FullExpr = CheckPlaceholderExpr(FullExpr.get()); in ActOnFinishFullExpr() 8793 if (FullExpr.isInvalid()) in ActOnFinishFullExpr() 8796 FullExpr = IgnoredValueConversions(FullExpr.get()); in ActOnFinishFullExpr() 8797 if (FullExpr.isInvalid()) in ActOnFinishFullExpr() [all …]
|
| H A D | SemaStmt.cpp | 267 if (const FullExpr *Temps = dyn_cast<FullExpr>(E)) in DiagnoseUnusedExprResult() 1017 if (const auto *FE = dyn_cast<FullExpr>(E)) in GetTypeBeforeIntegralPromotion() 2200 ExprResult FullExpr = ActOnFinishFullExpr(E, /*DiscardedValue*/ false); in ActOnForEachLValueExpr() local 2201 if (FullExpr.isInvalid()) in ActOnForEachLValueExpr() 2203 return StmtResult(static_cast<Stmt*>(FullExpr.get())); in ActOnForEachLValueExpr()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | IgnoreExpr.h | 51 if (auto *FE = dyn_cast<FullExpr>(E)) in IgnoreImplicitCastsSingleStep() 78 if (auto *FE = dyn_cast<FullExpr>(E)) in IgnoreCastsSingleStep()
|
| H A D | ComputeDependence.h | 25 class FullExpr; variable 112 ExprDependence computeDependence(FullExpr *E);
|
| H A D | Expr.h | 1015 class FullExpr : public Expr { 1019 FullExpr(StmtClass SC, Expr *subexpr) in FullExpr() function 1025 FullExpr(StmtClass SC, EmptyShell Empty) in FullExpr() function 1044 : public FullExpr,
|
| H A D | ExprCXX.h | 3417 : public FullExpr,
|
| /openbsd-src/gnu/llvm/clang/lib/ARCMigrate/ |
| H A D | TransRetainReleaseDealloc.cpp | 256 isa<FullExpr>(OuterS))); in getPreviousAndNextStmt() 379 if (FullExpr *FE = dyn_cast<FullExpr>(Rec)) in checkForGCDOrXPC()
|
| H A D | TransAutoreleasePool.cpp | 406 if (FullExpr *FE = dyn_cast<FullExpr>(S)) in getEssential()
|
| H A D | Transforms.cpp | 77 if (const FullExpr *FE = dyn_cast<FullExpr>(E)) in isPlusOne()
|
| H A D | TransUnbridgedCasts.cpp | 374 } while (parent && isa<FullExpr>(parent)); in transformObjCToNonObjCCast()
|
| H A D | ObjCMT.cpp | 219 bool subscriptOperatorNeedsParens(const Expr *FullExpr) { in subscriptOperatorNeedsParens() argument 220 const Expr* Expr = FullExpr->IgnoreImpCasts(); in subscriptOperatorNeedsParens() 228 isa<ObjCIvarRefExpr>(Expr) || isa<ParenExpr>(FullExpr) || in subscriptOperatorNeedsParens()
|
| /openbsd-src/gnu/llvm/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 172 static bool subscriptOperatorNeedsParens(const Expr *FullExpr); 892 static bool subscriptOperatorNeedsParens(const Expr *FullExpr) { in subscriptOperatorNeedsParens() argument 893 const Expr* Expr = FullExpr->IgnoreImpCasts(); in subscriptOperatorNeedsParens() 907 isa<ParenExpr>(FullExpr) || in subscriptOperatorNeedsParens() 914 static bool castOperatorNeedsParens(const Expr *FullExpr) { in castOperatorNeedsParens() argument 915 const Expr* Expr = FullExpr->IgnoreImpCasts(); in castOperatorNeedsParens() 934 isa<ParenExpr>(FullExpr) || in castOperatorNeedsParens()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 104 def FullExpr : StmtNode<Expr, 1>; 105 def ConstantExpr : StmtNode<FullExpr>; 147 def ExprWithCleanups : StmtNode<FullExpr>;
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DeadStoresChecker.cpp | 387 while (const FullExpr *FE = dyn_cast<FullExpr>(E)) in observeStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ParentMap.cpp | 178 isa<FullExpr>(P))) { in isConsumedExpr()
|
| H A D | ParentMapContext.cpp | 209 if (isa<FullExpr>(E)) in AscendIgnoreUnlessSpelledInSource()
|
| H A D | ExprCXX.cpp | 980 if (auto *E = dyn_cast_if_present<FullExpr>(Init)) in getAdjustedRewrittenExpr() 1366 : FullExpr(ExprWithCleanupsClass, subexpr) { in ExprWithCleanups() 1383 : FullExpr(ExprWithCleanupsClass, empty) { in ExprWithCleanups()
|
| H A D | ComputeDependence.cpp | 24 ExprDependence clang::computeDependence(FullExpr *E) { in computeDependence()
|
| H A D | Expr.cpp | 378 : FullExpr(ConstantExprClass, SubExpr) { in ConstantExpr() 412 : FullExpr(ConstantExprClass, Empty) { in ConstantExpr() 1963 if (auto *Full = dyn_cast<FullExpr>(E)) in ignoreImplicitSemaNodes()
|
| H A D | Decl.cpp | 2901 if (auto *E = dyn_cast_or_null<FullExpr>(Arg)) in getDefaultArg()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | LiveVariables.cpp | 198 if (const FullExpr *FE = dyn_cast<FullExpr>(E)) { in LookThroughExpr()
|
| H A D | ThreadSafety.cpp | 1402 else if (const auto *FE = dyn_cast<FullExpr>(Cond)) in getTrylockCallExpr()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporterVisitors.cpp | 142 } else if (const auto *FE = dyn_cast<FullExpr>(E)) { in getDerefExpr() 2124 if (const auto *FE = dyn_cast<FullExpr>(Ex)) in peelOffOuterExpr()
|
| H A D | BugReporter.cpp | 1355 if (isa<FullExpr, CXXBindTemporaryExpr, SubstNonTypeTemplateParmExpr>(S)) in getStmtParent()
|