Searched defs:nexprs (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DExpr.cpp3227 Expr **exprs, unsigned nexprs,
3231 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
3233 Exprs = new (C) Stmt*[nexprs];
3234 for (unsigned i = 0; i != nexprs; ++i) {
3226 ParenListExpr(ASTContext& C, SourceLocation lparenloc, Expr **exprs, unsigned nexprs, SourceLocation rparenloc, QualType T) argument
/external/clang/lib/Sema/
H A DSemaExpr.cpp4391 unsigned nexprs = Val.size(); local
4395 if (nexprs == 1)
4398 expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R,
4399 exprs[nexprs-1]->getType());

Completed in 110 milliseconds