Searched defs:CorrectDelayedTyposInExpr (Results 1 - 2 of 2) sorted by relevance
/external/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 6667 Sema::CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl, function in class:Sema 6676 assert(TyposInContext < ~0U && "Recursive call of CorrectDelayedTyposInExpr"); 6737 FullExpr = CorrectDelayedTyposInExpr(FullExpr.get());
|
/external/clang/include/clang/Sema/ |
H A D | Sema.h | 2868 CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl = nullptr, 2873 CorrectDelayedTyposInExpr(Expr *E, function in class:clang::Sema 2875 return CorrectDelayedTyposInExpr(E, nullptr, Filter); 2879 CorrectDelayedTyposInExpr(ExprResult ER, VarDecl *InitDecl = nullptr, function in class:clang::Sema 2882 return ER.isInvalid() ? ER : CorrectDelayedTyposInExpr(ER.get(), Filter); 2886 CorrectDelayedTyposInExpr(ExprResult ER, function in class:clang::Sema 2888 return CorrectDelayedTyposInExpr(ER, nullptr, Filter);
|
Completed in 71 milliseconds