Searched refs:PLE (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp545 Expr *PLE = ParenListExpr::Create(Context, FD->getLocation(), local
549 VD->getLocation(), /*DirectInit=*/true, PLE);
H A DSemaExpr.cpp6803 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr); local
6805 && castType->isVectorType() && (PE || PLE)) {
6806 if (PLE && PLE->getNumExprs() == 0) {
6807 Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer);
6810 if (PE || PLE->getNumExprs() == 1) {
6811 Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0));
H A DSemaExprCXX.cpp1725 if (ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init))
1726 return PLE->getNumExprs() == 0;
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DItaniumMangle.cpp3824 } else if (const ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init)) {
3825 for (unsigned i = 0, e = PLE->getNumExprs(); i != e; ++i)
3826 mangleExpression(PLE->getExpr(i));

Completed in 152 milliseconds