Searched defs:FullExpr (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp51 bool ConversionFixItGenerator::tryToFixConversion(const Expr *FullExpr, argument
55 if (!FullExpr)
60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin();
61 const SourceLocation End = S.PP.getLocForEndOfToken(FullExpr->getSourceRange()
66 const Expr* Expr = FullExpr->IgnoreImpCasts();
86 isa<ParenExpr>(FullExpr) ||
H A DSemaExprCXX.cpp5925 ExprResult FullExpr = FE; local
5927 if (!FullExpr.get())
5946 DiagnoseUnexpandedParameterPack(FullExpr.get()))
5951 FullExpr.get()->getType() == Context.UnknownAnyTy) {
5952 FullExpr = forceUnknownAnyToType(FullExpr.get(), Context.getObjCIdType());
5953 if (FullExpr.isInvalid())
5958 FullExpr = CheckPlaceholderExpr(FullExpr.get());
5959 if (FullExpr
[all...]
H A DSemaStmt.cpp1646 ExprResult FullExpr = ActOnFinishFullExpr(E); local
1647 if (FullExpr.isInvalid())
1649 return StmtResult(static_cast<Stmt*>(FullExpr.get()));
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp172 static bool subscriptOperatorNeedsParens(const Expr *FullExpr);
889 static bool subscriptOperatorNeedsParens(const Expr *FullExpr) { argument
890 const Expr* Expr = FullExpr->IgnoreImpCasts();
904 isa<ParenExpr>(FullExpr) ||
911 static bool castOperatorNeedsParens(const Expr *FullExpr) { argument
912 const Expr* Expr = FullExpr->IgnoreImpCasts();
931 isa<ParenExpr>(FullExpr) ||

Completed in 309 milliseconds