Home
last modified time | relevance | path

Searched refs:FullExpr (Results 1 – 4 of 4) sorted by relevance

/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaFixItUtils.cpp51 bool ConversionFixItGenerator::tryToFixConversion(const Expr *FullExpr, in tryToFixConversion() argument
55 if (!FullExpr) in tryToFixConversion()
60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin(); in tryToFixConversion()
61 const SourceLocation End = S.PP.getLocForEndOfToken(FullExpr->getSourceRange() in tryToFixConversion()
66 const Expr* Expr = FullExpr->IgnoreImpCasts(); in tryToFixConversion()
86 isa<ParenExpr>(FullExpr) || in tryToFixConversion()
HDSemaExprCXX.cpp5932 ExprResult FullExpr = Owned(FE); in ActOnFinishFullExpr() local
5934 if (!FullExpr.get()) in ActOnFinishFullExpr()
5953 DiagnoseUnexpandedParameterPack(FullExpr.get())) in ActOnFinishFullExpr()
5958 FullExpr.get()->getType() == Context.UnknownAnyTy) { in ActOnFinishFullExpr()
5959 FullExpr = forceUnknownAnyToType(FullExpr.take(), Context.getObjCIdType()); in ActOnFinishFullExpr()
5960 if (FullExpr.isInvalid()) in ActOnFinishFullExpr()
5965 FullExpr = CheckPlaceholderExpr(FullExpr.take()); in ActOnFinishFullExpr()
5966 if (FullExpr.isInvalid()) in ActOnFinishFullExpr()
5969 FullExpr = IgnoredValueConversions(FullExpr.take()); in ActOnFinishFullExpr()
5970 if (FullExpr.isInvalid()) in ActOnFinishFullExpr()
[all …]
HDSemaStmt.cpp1579 ExprResult FullExpr = ActOnFinishFullExpr(E); in ActOnForEachLValueExpr() local
1580 if (FullExpr.isInvalid()) in ActOnForEachLValueExpr()
1582 return StmtResult(static_cast<Stmt*>(FullExpr.take())); in ActOnForEachLValueExpr()
/trueos/contrib/llvm/tools/clang/lib/Edit/
HDRewriteObjCFoundationAPI.cpp172 static bool subscriptOperatorNeedsParens(const Expr *FullExpr);
889 static bool subscriptOperatorNeedsParens(const Expr *FullExpr) { in subscriptOperatorNeedsParens() argument
890 const Expr* Expr = FullExpr->IgnoreImpCasts(); in subscriptOperatorNeedsParens()
904 isa<ParenExpr>(FullExpr) || in subscriptOperatorNeedsParens()
911 static bool castOperatorNeedsParens(const Expr *FullExpr) { in castOperatorNeedsParens() argument
912 const Expr* Expr = FullExpr->IgnoreImpCasts(); in castOperatorNeedsParens()
931 isa<ParenExpr>(FullExpr) || in castOperatorNeedsParens()