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.h1995 SourceLocation CommaLoc; variable
2125 CommaLoc = SourceLocation(); in clear()
2721 bool isFirstDeclarator() const { return !CommaLoc.isValid(); } in isFirstDeclarator()
2722 SourceLocation getCommaLoc() const { return CommaLoc; } in getCommaLoc()
2723 void setCommaLoc(SourceLocation CL) { CommaLoc = CL; } in setCommaLoc()
H A DSemaOpenMP.h955 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc);
1246 SourceLocation CommaLoc, SourceLocation EndLoc);
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp2527 SourceLocation CommaLoc; in ParseDeclGroup() local
2528 while (TryConsumeToken(tok::comma, CommaLoc)) { in ParseDeclGroup()
2533 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseDeclGroup()
2534 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseDeclGroup()
2545 Diag(CommaLoc, diag::err_multiple_template_declarators) in ParseDeclGroup()
2551 D.setCommaLoc(CommaLoc); in ParseDeclGroup()
4940 SourceLocation CommaLoc; in ParseStructDeclaration() local
4943 DeclaratorInfo.D.setCommaLoc(CommaLoc); in ParseStructDeclaration()
4986 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseStructDeclaration()
5702 SourceLocation CommaLoc; in ParseEnumBody() local
[all …]
H A DParseDeclCXX.cpp3339 SourceLocation CommaLoc; in ParseCXXClassMemberDeclaration() local
3340 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseCXXClassMemberDeclaration()
3348 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseCXXClassMemberDeclaration()
3349 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseCXXClassMemberDeclaration()
3360 Diag(CommaLoc, diag::err_multiple_template_declarators) in ParseCXXClassMemberDeclaration()
3369 DeclaratorInfo.setCommaLoc(CommaLoc); in ParseCXXClassMemberDeclaration()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1657 SourceLocation CommaLoc; variable
1716 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
1740 SourceLocation KLoc, SourceLocation CommaLoc, in OMPScheduleClause() argument
1747 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPScheduleClause()
1793 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
6660 SourceLocation CommaLoc; variable
6683 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
6703 SourceLocation KLoc, SourceLocation CommaLoc, in OMPDistScheduleClause() argument
6709 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPDistScheduleClause()
6729 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp4214 SMLoc CommaLoc = getTok().getLoc(); in parseStructInitializer() local
4218 return Error(CommaLoc, "'" + Structure.Name + in parseStructInitializer()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1818 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPScheduleClause() argument
1821 CommaLoc, EndLoc); in RebuildOMPScheduleClause()
2154 SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPDistScheduleClause() argument
2156 Kind, ChunkSize, StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc); in RebuildOMPDistScheduleClause()
H A DSemaOpenMP.cpp16238 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in ActOnOpenMPScheduleClause() argument
16319 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind, in ActOnOpenMPScheduleClause()
21933 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc, in ActOnOpenMPDistScheduleClause() argument
21981 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, in ActOnOpenMPDistScheduleClause()