Home
last modified time | relevance | path

Searched refs:CommaLoc (Results 1 – 3 of 3) sorted by relevance

/external/clang/include/clang/Sema/
DDeclSpec.h1514 SourceLocation CommaLoc; variable
1607 CommaLoc = SourceLocation(); in clear()
1908 bool isFirstDeclarator() const { return !CommaLoc.isValid(); } in isFirstDeclarator()
1909 SourceLocation getCommaLoc() const { return CommaLoc; } in getCommaLoc()
1910 void setCommaLoc(SourceLocation CL) { CommaLoc = CL; } in setCommaLoc()
/external/clang/lib/Parse/
DParseDecl.cpp1477 SourceLocation CommaLoc = ConsumeToken(); in ParseDeclGroup() local
1483 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseDeclGroup()
1484 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseDeclGroup()
1491 D.setCommaLoc(CommaLoc); in ParseDeclGroup()
2862 SourceLocation CommaLoc; in ParseStructDeclaration() local
2865 DeclaratorInfo.D.setCommaLoc(CommaLoc); in ParseStructDeclaration()
2900 CommaLoc = ConsumeToken(); in ParseStructDeclaration()
3436 SourceLocation CommaLoc = ConsumeToken(); in ParseEnumBody() local
3440 Diag(CommaLoc, getLangOpts().CPlusPlus ? in ParseEnumBody()
3443 << FixItHint::CreateRemoval(CommaLoc); in ParseEnumBody()
[all …]
DParseDeclCXX.cpp2132 SourceLocation CommaLoc = ConsumeToken(); in ParseCXXClassMemberDeclaration() local
2139 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseCXXClassMemberDeclaration()
2140 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseCXXClassMemberDeclaration()
2151 DeclaratorInfo.setCommaLoc(CommaLoc); in ParseCXXClassMemberDeclaration()