Searched refs:CommaLocs (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 1321 CommaLocsTy CommaLocs; in ParsePostfixExpressionSuffix() local 1331 if (ParseExpressionList(ArgExprs, CommaLocs, &Sema::CodeCompleteCall, in ParsePostfixExpressionSuffix() 1346 ArgExprs.size()-1 == CommaLocs.size())&& in ParsePostfixExpressionSuffix() 2114 CommaLocsTy CommaLocs; in ParseParenExpression() local 2116 if (!ParseSimpleExpressionList(ArgExprs, CommaLocs)) { in ParseParenExpression() 2307 SmallVectorImpl<SourceLocation> &CommaLocs, in ParseExpressionList() argument 2339 CommaLocs.push_back(ConsumeToken()); in ParseExpressionList() 2353 SmallVectorImpl<SourceLocation> &CommaLocs) { in ParseSimpleExpressionList() argument 2365 CommaLocs.push_back(ConsumeToken()); in ParseSimpleExpressionList()
|
D | ParseExprCXX.cpp | 1546 CommaLocsTy CommaLocs; in ParseCXXTypeConstructExpression() local 1549 if (ParseExpressionList(Exprs, CommaLocs)) { in ParseCXXTypeConstructExpression() 1562 assert((Exprs.size() == 0 || Exprs.size()-1 == CommaLocs.size())&& in ParseCXXTypeConstructExpression() 2595 CommaLocsTy CommaLocs; in ParseCXXNewExpression() local 2596 if (ParseExpressionList(ConstructorArgs, CommaLocs)) { in ParseCXXNewExpression() 2691 CommaLocsTy CommaLocs; in ParseExpressionListOrTypeId() local 2692 return ParseExpressionList(PlacementArgs, CommaLocs); in ParseExpressionListOrTypeId()
|
D | ParseDeclCXX.cpp | 2913 CommaLocsTy CommaLocs; in ParseMemInitializer() local 2914 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) { in ParseMemInitializer()
|
D | ParseDecl.cpp | 1869 CommaLocsTy CommaLocs; in ParseDeclarationAfterDeclaratorAndAttributes() local 1876 if (ParseExpressionList(Exprs, CommaLocs)) { in ParseDeclarationAfterDeclaratorAndAttributes() 1888 assert(!Exprs.empty() && Exprs.size()-1 == CommaLocs.size() && in ParseDeclarationAfterDeclaratorAndAttributes()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1377 SmallVectorImpl<SourceLocation> &CommaLocs, 1385 SmallVectorImpl<SourceLocation> &CommaLocs);
|