Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1998 SourceLocation CommaLoc; variable
2128 CommaLoc = SourceLocation(); in clear()
2724 bool isFirstDeclarator() const { return !CommaLoc.isValid(); } in isFirstDeclarator()
2725 SourceLocation getCommaLoc() const { return CommaLoc; } in getCommaLoc()
2726 void setCommaLoc(SourceLocation CL) { CommaLoc = CL; } in setCommaLoc()
H A DSemaOpenMP.h1000 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc);
1316 SourceLocation CommaLoc, SourceLocation EndLoc);
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp2364 SourceLocation CommaLoc; in ParseDeclGroup() local
2365 while (TryConsumeToken(tok::comma, CommaLoc)) { in ParseDeclGroup()
2370 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseDeclGroup()
2371 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseDeclGroup()
2382 Diag(CommaLoc, diag::err_multiple_template_declarators) in ParseDeclGroup()
2388 D.setCommaLoc(CommaLoc); in ParseDeclGroup()
4719 SourceLocation CommaLoc; in ParseStructDeclaration() local
4722 DeclaratorInfo.D.setCommaLoc(CommaLoc); in ParseStructDeclaration()
4765 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseStructDeclaration()
5428 SourceLocation CommaLoc; in ParseEnumBody() local
[all …]
H A DParseDeclCXX.cpp3263 SourceLocation CommaLoc; in ParseCXXClassMemberDeclaration() local
3264 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseCXXClassMemberDeclaration()
3272 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseCXXClassMemberDeclaration()
3273 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseCXXClassMemberDeclaration()
3284 Diag(CommaLoc, diag::err_multiple_template_declarators) in ParseCXXClassMemberDeclaration()
3293 DeclaratorInfo.setCommaLoc(CommaLoc); in ParseCXXClassMemberDeclaration()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1954 SourceLocation CommaLoc; variable
2013 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
2037 SourceLocation KLoc, SourceLocation CommaLoc, in OMPScheduleClause() argument
2044 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPScheduleClause()
2090 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
7246 SourceLocation CommaLoc; variable
7269 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
7289 SourceLocation KLoc, SourceLocation CommaLoc, in OMPDistScheduleClause() argument
7295 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPDistScheduleClause()
7315 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp3738 SMLoc CommaLoc = getTok().getLoc(); in parseStructInitializer() local
3742 return Error(CommaLoc, "'" + Structure.Name + in parseStructInitializer()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1835 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPScheduleClause() argument
1838 CommaLoc, EndLoc); in RebuildOMPScheduleClause()
2179 SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPDistScheduleClause() argument
2181 Kind, ChunkSize, StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc); in RebuildOMPDistScheduleClause()
H A DSemaOpenMP.cpp16821 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in ActOnOpenMPScheduleClause() argument
16902 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind, in ActOnOpenMPScheduleClause()
22842 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc, in ActOnOpenMPDistScheduleClause() argument
22891 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, in ActOnOpenMPDistScheduleClause()