Searched refs:CommaLocs (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 1510 CommaLocsTy CommaLocs; in ParsePostfixExpressionSuffix() local 1520 if (ParseExpressionList(ArgExprs, CommaLocs, [&] { in ParsePostfixExpressionSuffix() 1552 ArgExprs.size()-1 == CommaLocs.size())&& in ParsePostfixExpressionSuffix() 2346 CommaLocsTy CommaLocs; in ParseParenExpression() local 2348 if (!ParseSimpleExpressionList(ArgExprs, CommaLocs)) { in ParseParenExpression() 2608 SmallVectorImpl<SourceLocation> &CommaLocs, in ParseExpressionList() argument 2640 CommaLocs.push_back(ConsumeToken()); in ParseExpressionList() 2663 SmallVectorImpl<SourceLocation> &CommaLocs) { in ParseSimpleExpressionList() argument 2675 CommaLocs.push_back(ConsumeToken()); in ParseSimpleExpressionList()
|
D | ParseExprCXX.cpp | 1623 CommaLocsTy CommaLocs; in ParseCXXTypeConstructExpression() local 1626 if (ParseExpressionList(Exprs, CommaLocs, [&] { in ParseCXXTypeConstructExpression() 1643 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&& in ParseCXXTypeConstructExpression() 2701 CommaLocsTy CommaLocs; in ParseCXXNewExpression() local 2702 if (ParseExpressionList(ConstructorArgs, CommaLocs, [&] { in ParseCXXNewExpression() 2804 CommaLocsTy CommaLocs; in ParseExpressionListOrTypeId() local 2805 return ParseExpressionList(PlacementArgs, CommaLocs); in ParseExpressionListOrTypeId()
|
D | ParseDeclCXX.cpp | 3292 CommaLocsTy CommaLocs; in ParseMemInitializer() local 3293 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) { in ParseMemInitializer()
|
D | ParseDecl.cpp | 2056 CommaLocsTy CommaLocs; in ParseDeclarationAfterDeclaratorAndAttributes() local 2063 if (ParseExpressionList(Exprs, CommaLocs, [&] { in ParseDeclarationAfterDeclaratorAndAttributes() 2079 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() && in ParseDeclarationAfterDeclaratorAndAttributes()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1438 SmallVectorImpl<SourceLocation> &CommaLocs, 1444 SmallVectorImpl<SourceLocation> &CommaLocs);
|