Searched refs:CommaLocs (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 1448 CommaLocsTy CommaLocs; in ParsePostfixExpressionSuffix() local 1458 if (ParseExpressionList(ArgExprs, CommaLocs, [&] { in ParsePostfixExpressionSuffix() 1478 ArgExprs.size()-1 == CommaLocs.size())&& in ParsePostfixExpressionSuffix() 2260 CommaLocsTy CommaLocs; in ParseParenExpression() local 2262 if (!ParseSimpleExpressionList(ArgExprs, CommaLocs)) { in ParseParenExpression() 2517 SmallVectorImpl<SourceLocation> &CommaLocs, in ParseExpressionList() argument 2549 CommaLocs.push_back(ConsumeToken()); in ParseExpressionList() 2572 SmallVectorImpl<SourceLocation> &CommaLocs) { in ParseSimpleExpressionList() argument 2584 CommaLocs.push_back(ConsumeToken()); in ParseSimpleExpressionList()
|
D | ParseExprCXX.cpp | 1608 CommaLocsTy CommaLocs; in ParseCXXTypeConstructExpression() local 1611 if (ParseExpressionList(Exprs, CommaLocs, [&] { in ParseCXXTypeConstructExpression() 1628 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&& in ParseCXXTypeConstructExpression() 2693 CommaLocsTy CommaLocs; in ParseCXXNewExpression() local 2694 if (ParseExpressionList(ConstructorArgs, CommaLocs, [&] { in ParseCXXNewExpression() 2796 CommaLocsTy CommaLocs; in ParseExpressionListOrTypeId() local 2797 return ParseExpressionList(PlacementArgs, CommaLocs); in ParseExpressionListOrTypeId()
|
D | ParseDeclCXX.cpp | 3216 CommaLocsTy CommaLocs; in ParseMemInitializer() local 3217 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) { in ParseMemInitializer()
|
D | ParseDecl.cpp | 1990 CommaLocsTy CommaLocs; in ParseDeclarationAfterDeclaratorAndAttributes() local 1997 if (ParseExpressionList(Exprs, CommaLocs, [&] { in ParseDeclarationAfterDeclaratorAndAttributes() 2013 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() && in ParseDeclarationAfterDeclaratorAndAttributes()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1365 SmallVectorImpl<SourceLocation> &CommaLocs, 1371 SmallVectorImpl<SourceLocation> &CommaLocs);
|