Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1936 SourceLocation CommaLoc; variable
2064 CommaLoc = SourceLocation(); in clear()
2643 bool isFirstDeclarator() const { return !CommaLoc.isValid(); } in isFirstDeclarator()
2644 SourceLocation getCommaLoc() const { return CommaLoc; } in getCommaLoc()
2645 void setCommaLoc(SourceLocation CL) { CommaLoc = CL; } in setCommaLoc()
H A DSema.h12235 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc);
12522 SourceLocation CommaLoc, SourceLocation EndLoc);
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp2349 SourceLocation CommaLoc; in ParseDeclGroup() local
2350 while (TryConsumeToken(tok::comma, CommaLoc)) { in ParseDeclGroup()
2363 D.setCommaLoc(CommaLoc); in ParseDeclGroup()
4640 SourceLocation CommaLoc; in ParseStructDeclaration() local
4643 DeclaratorInfo.D.setCommaLoc(CommaLoc); in ParseStructDeclaration()
4679 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseStructDeclaration()
5319 SourceLocation CommaLoc; in ParseEnumBody() local
5327 if (TryConsumeToken(tok::comma, CommaLoc)) in ParseEnumBody()
5337 Diag(CommaLoc, getLangOpts().CPlusPlus ? in ParseEnumBody()
5340 << FixItHint::CreateRemoval(CommaLoc); in ParseEnumBody()
[all …]
H A DParseDeclCXX.cpp3172 SourceLocation CommaLoc; in ParseCXXClassMemberDeclaration() local
3173 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseCXXClassMemberDeclaration()
3181 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseCXXClassMemberDeclaration()
3182 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseCXXClassMemberDeclaration()
3192 DeclaratorInfo.setCommaLoc(CommaLoc); in ParseCXXClassMemberDeclaration()
/freebsd-14.2/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()
6620 SourceLocation CommaLoc; variable
6643 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
6663 SourceLocation KLoc, SourceLocation CommaLoc, in OMPDistScheduleClause() argument
6669 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPDistScheduleClause()
6689 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp4213 SMLoc CommaLoc = getTok().getLoc(); in parseStructInitializer() local
4217 return Error(CommaLoc, "'" + Structure.Name + in parseStructInitializer()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1795 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPScheduleClause() argument
1798 CommaLoc, EndLoc); in RebuildOMPScheduleClause()
2128 SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPDistScheduleClause() argument
2130 Kind, ChunkSize, StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc); in RebuildOMPDistScheduleClause()
H A DSemaOpenMP.cpp17461 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in ActOnOpenMPScheduleClause() argument
17542 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind, in ActOnOpenMPScheduleClause()
23100 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc, in ActOnOpenMPDistScheduleClause() argument
23148 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, in ActOnOpenMPDistScheduleClause()