Searched refs:CommaLocs (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 1558 CommaLocsTy CommaLocs; in ParsePostfixExpressionSuffix() local 1568 if (ParseExpressionList(ArgExprs, CommaLocs, [&] { in ParsePostfixExpressionSuffix() 1600 ArgExprs.size()-1 == CommaLocs.size())&& in ParsePostfixExpressionSuffix() 2394 CommaLocsTy CommaLocs; in ParseParenExpression() local 2396 if (!ParseSimpleExpressionList(ArgExprs, CommaLocs)) { in ParseParenExpression() 2656 SmallVectorImpl<SourceLocation> &CommaLocs, in ParseExpressionList() argument 2688 CommaLocs.push_back(ConsumeToken()); in ParseExpressionList() 2711 SmallVectorImpl<SourceLocation> &CommaLocs) { in ParseSimpleExpressionList() argument 2723 CommaLocs.push_back(ConsumeToken()); in ParseSimpleExpressionList()
|
D | ParseExprCXX.cpp | 1691 CommaLocsTy CommaLocs; in ParseCXXTypeConstructExpression() local 1694 if (ParseExpressionList(Exprs, CommaLocs, [&] { in ParseCXXTypeConstructExpression() 1711 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&& in ParseCXXTypeConstructExpression() 2777 CommaLocsTy CommaLocs; in ParseCXXNewExpression() local 2778 if (ParseExpressionList(ConstructorArgs, CommaLocs, [&] { in ParseCXXNewExpression() 2880 CommaLocsTy CommaLocs; in ParseExpressionListOrTypeId() local 2881 return ParseExpressionList(PlacementArgs, CommaLocs); in ParseExpressionListOrTypeId()
|
D | ParseDecl.cpp | 2093 CommaLocsTy CommaLocs; in ParseDeclarationAfterDeclaratorAndAttributes() local 2100 if (ParseExpressionList(Exprs, CommaLocs, [&] { in ParseDeclarationAfterDeclaratorAndAttributes() 2116 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() && in ParseDeclarationAfterDeclaratorAndAttributes()
|
D | ParseDeclCXX.cpp | 3315 CommaLocsTy CommaLocs; in ParseMemInitializer() local 3316 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) { in ParseMemInitializer()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1460 SmallVectorImpl<SourceLocation> &CommaLocs, 1466 SmallVectorImpl<SourceLocation> &CommaLocs);
|