Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DOpenMPClause.h968 SourceLocation CommaLoc; variable
1027 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
1051 SourceLocation KLoc, SourceLocation CommaLoc, in OMPScheduleClause() argument
1057 LParenLoc(LParenLoc), Kind(Kind), KindLoc(KLoc), CommaLoc(CommaLoc), in OMPScheduleClause()
1104 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
4657 SourceLocation CommaLoc; variable
4680 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
4700 SourceLocation KLoc, SourceLocation CommaLoc, in OMPDistScheduleClause() argument
4706 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPDistScheduleClause()
4725 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseDecl.cpp2052 SourceLocation CommaLoc; in ParseDeclGroup() local
2053 while (TryConsumeToken(tok::comma, CommaLoc)) { in ParseDeclGroup()
2066 D.setCommaLoc(CommaLoc); in ParseDeclGroup()
3926 SourceLocation CommaLoc; in ParseStructDeclaration() local
3929 DeclaratorInfo.D.setCommaLoc(CommaLoc); in ParseStructDeclaration()
3960 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseStructDeclaration()
4554 SourceLocation CommaLoc; in ParseEnumBody() local
4562 if (TryConsumeToken(tok::comma, CommaLoc)) in ParseEnumBody()
4572 Diag(CommaLoc, getLangOpts().CPlusPlus ? in ParseEnumBody()
4575 << FixItHint::CreateRemoval(CommaLoc); in ParseEnumBody()
[all …]
H A DParseDeclCXX.cpp2851 SourceLocation CommaLoc; in ParseCXXClassMemberDeclaration() local
2852 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseCXXClassMemberDeclaration()
2860 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseCXXClassMemberDeclaration()
2861 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseCXXClassMemberDeclaration()
2871 DeclaratorInfo.setCommaLoc(CommaLoc); in ParseCXXClassMemberDeclaration()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h1832 SourceLocation CommaLoc; variable
1931 CommaLoc = SourceLocation(); in clear()
2450 bool isFirstDeclarator() const { return !CommaLoc.isValid(); } in isFirstDeclarator()
2451 SourceLocation getCommaLoc() const { return CommaLoc; } in getCommaLoc()
2452 void setCommaLoc(SourceLocation CL) { CommaLoc = CL; } in setCommaLoc()
H A DSema.h9189 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc);
9362 SourceLocation CommaLoc, SourceLocation EndLoc);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h1593 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPScheduleClause() argument
1596 CommaLoc, EndLoc); in RebuildOMPScheduleClause()
1885 SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPDistScheduleClause() argument
1887 Kind, ChunkSize, StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc); in RebuildOMPDistScheduleClause()
H A DSemaOpenMP.cpp9356 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in ActOnOpenMPScheduleClause() argument
9435 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind, in ActOnOpenMPScheduleClause()
13507 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc, in ActOnOpenMPDistScheduleClause() argument
13555 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, in ActOnOpenMPDistScheduleClause()