Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1885 SourceLocation CommaLoc; variable
1988 CommaLoc = SourceLocation(); in clear()
2564 bool isFirstDeclarator() const { return !CommaLoc.isValid(); } in isFirstDeclarator()
2565 SourceLocation getCommaLoc() const { return CommaLoc; } in getCommaLoc()
2566 void setCommaLoc(SourceLocation CL) { CommaLoc = CL; } in setCommaLoc()
H A DSema.h11030 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc);
11271 SourceLocation CommaLoc, SourceLocation EndLoc);
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp2104 SourceLocation CommaLoc; in ParseDeclGroup() local
2105 while (TryConsumeToken(tok::comma, CommaLoc)) { in ParseDeclGroup()
2118 D.setCommaLoc(CommaLoc); in ParseDeclGroup()
4213 SourceLocation CommaLoc; in ParseStructDeclaration() local
4216 DeclaratorInfo.D.setCommaLoc(CommaLoc); in ParseStructDeclaration()
4252 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseStructDeclaration()
4877 SourceLocation CommaLoc; in ParseEnumBody() local
4885 if (TryConsumeToken(tok::comma, CommaLoc)) in ParseEnumBody()
4895 Diag(CommaLoc, getLangOpts().CPlusPlus ? in ParseEnumBody()
4898 << FixItHint::CreateRemoval(CommaLoc); in ParseEnumBody()
[all …]
H A DParseDeclCXX.cpp3023 SourceLocation CommaLoc; in ParseCXXClassMemberDeclaration() local
3024 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseCXXClassMemberDeclaration()
3032 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseCXXClassMemberDeclaration()
3033 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseCXXClassMemberDeclaration()
3043 DeclaratorInfo.setCommaLoc(CommaLoc); in ParseCXXClassMemberDeclaration()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1517 SourceLocation CommaLoc; variable
1576 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
1600 SourceLocation KLoc, SourceLocation CommaLoc, in OMPScheduleClause() argument
1607 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPScheduleClause()
1653 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
6315 SourceLocation CommaLoc; variable
6338 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
6358 SourceLocation KLoc, SourceLocation CommaLoc, in OMPDistScheduleClause() argument
6364 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPDistScheduleClause()
6384 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp4269 SMLoc CommaLoc = getTok().getLoc(); in parseStructInitializer() local
4273 return Error(CommaLoc, "'" + Structure.Name + in parseStructInitializer()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1704 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPScheduleClause() argument
1707 CommaLoc, EndLoc); in RebuildOMPScheduleClause()
2035 SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPDistScheduleClause() argument
2037 Kind, ChunkSize, StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc); in RebuildOMPDistScheduleClause()
H A DSemaOpenMP.cpp14818 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in ActOnOpenMPScheduleClause() argument
14899 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind, in ActOnOpenMPScheduleClause()
20252 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc, in ActOnOpenMPDistScheduleClause() argument
20300 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, in ActOnOpenMPDistScheduleClause()