Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Sema/
H A DDeclSpec.h1891 SourceLocation CommaLoc; variable
2018 CommaLoc = SourceLocation(); in clear()
2605 bool isFirstDeclarator() const { return !CommaLoc.isValid(); } in isFirstDeclarator()
2606 SourceLocation getCommaLoc() const { return CommaLoc; } in getCommaLoc()
2607 void setCommaLoc(SourceLocation CL) { CommaLoc = CL; } in setCommaLoc()
H A DSema.h11504 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc);
11763 SourceLocation CommaLoc, SourceLocation EndLoc);
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseDecl.cpp2193 SourceLocation CommaLoc; in ParseDeclGroup() local
2194 while (TryConsumeToken(tok::comma, CommaLoc)) { in ParseDeclGroup()
2207 D.setCommaLoc(CommaLoc); in ParseDeclGroup()
4370 SourceLocation CommaLoc; in ParseStructDeclaration() local
4373 DeclaratorInfo.D.setCommaLoc(CommaLoc); in ParseStructDeclaration()
4409 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseStructDeclaration()
5034 SourceLocation CommaLoc; in ParseEnumBody() local
5042 if (TryConsumeToken(tok::comma, CommaLoc)) in ParseEnumBody()
5052 Diag(CommaLoc, getLangOpts().CPlusPlus ? in ParseEnumBody()
5055 << FixItHint::CreateRemoval(CommaLoc); in ParseEnumBody()
[all …]
H A DParseDeclCXX.cpp3034 SourceLocation CommaLoc; in ParseCXXClassMemberDeclaration() local
3035 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseCXXClassMemberDeclaration()
3043 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseCXXClassMemberDeclaration()
3044 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseCXXClassMemberDeclaration()
3054 DeclaratorInfo.setCommaLoc(CommaLoc); in ParseCXXClassMemberDeclaration()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOpenMPClause.h1593 SourceLocation CommaLoc; variable
1652 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
1676 SourceLocation KLoc, SourceLocation CommaLoc, in OMPScheduleClause() argument
1683 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPScheduleClause()
1729 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
6446 SourceLocation CommaLoc; variable
6469 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
6489 SourceLocation KLoc, SourceLocation CommaLoc, in OMPDistScheduleClause() argument
6495 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPDistScheduleClause()
6515 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DMasmParser.cpp4231 SMLoc CommaLoc = getTok().getLoc(); in parseStructInitializer() local
4235 return Error(CommaLoc, "'" + Structure.Name + in parseStructInitializer()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h1728 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPScheduleClause() argument
1731 CommaLoc, EndLoc); in RebuildOMPScheduleClause()
2058 SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPDistScheduleClause() argument
2060 Kind, ChunkSize, StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc); in RebuildOMPDistScheduleClause()
H A DSemaOpenMP.cpp16880 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in ActOnOpenMPScheduleClause() argument
16961 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind, in ActOnOpenMPScheduleClause()
22362 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc, in ActOnOpenMPDistScheduleClause() argument
22410 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, in ActOnOpenMPDistScheduleClause()