Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h1920 SourceLocation CommaLoc; variable
2047 CommaLoc = SourceLocation(); in clear()
2634 bool isFirstDeclarator() const { return !CommaLoc.isValid(); } in isFirstDeclarator()
2635 SourceLocation getCommaLoc() const { return CommaLoc; } in getCommaLoc()
2636 void setCommaLoc(SourceLocation CL) { CommaLoc = CL; } in setCommaLoc()
H A DSema.h11847 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc);
12125 SourceLocation CommaLoc, SourceLocation EndLoc);
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseDecl.cpp2208 SourceLocation CommaLoc; in ParseDeclGroup() local
2209 while (TryConsumeToken(tok::comma, CommaLoc)) { in ParseDeclGroup()
2214 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseDeclGroup()
2215 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseDeclGroup()
2222 D.setCommaLoc(CommaLoc); in ParseDeclGroup()
4459 SourceLocation CommaLoc; in ParseStructDeclaration() local
4462 DeclaratorInfo.D.setCommaLoc(CommaLoc); in ParseStructDeclaration()
4498 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseStructDeclaration()
5131 SourceLocation CommaLoc; in ParseEnumBody() local
5132 if (Tok.isNot(tok::r_brace) && !TryConsumeToken(tok::comma, CommaLoc)) { in ParseEnumBody()
[all …]
H A DParseDeclCXX.cpp3123 SourceLocation CommaLoc; in ParseCXXClassMemberDeclaration() local
3124 if (!TryConsumeToken(tok::comma, CommaLoc)) in ParseCXXClassMemberDeclaration()
3132 Diag(CommaLoc, diag::err_expected_semi_declaration) in ParseCXXClassMemberDeclaration()
3133 << FixItHint::CreateReplacement(CommaLoc, ";"); in ParseCXXClassMemberDeclaration()
3143 DeclaratorInfo.setCommaLoc(CommaLoc); in ParseCXXClassMemberDeclaration()
/openbsd-src/gnu/llvm/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()
6524 SourceLocation CommaLoc; variable
6547 void setCommaLoc(SourceLocation Loc) { CommaLoc = Loc; } in setCommaLoc()
6567 SourceLocation KLoc, SourceLocation CommaLoc, in OMPDistScheduleClause() argument
6573 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPDistScheduleClause()
6593 SourceLocation getCommaLoc() { return CommaLoc; } in getCommaLoc()
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DMasmParser.cpp4245 SMLoc CommaLoc = getTok().getLoc(); in parseStructInitializer() local
4249 return Error(CommaLoc, "'" + Structure.Name + in parseStructInitializer()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h1769 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPScheduleClause() argument
1772 CommaLoc, EndLoc); in RebuildOMPScheduleClause()
2104 SourceLocation CommaLoc, SourceLocation EndLoc) { in RebuildOMPDistScheduleClause() argument
2106 Kind, ChunkSize, StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc); in RebuildOMPDistScheduleClause()
H A DSemaOpenMP.cpp17158 SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) { in ActOnOpenMPScheduleClause() argument
17239 OMPScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, Kind, in ActOnOpenMPScheduleClause()
22685 SourceLocation LParenLoc, SourceLocation KindLoc, SourceLocation CommaLoc, in ActOnOpenMPDistScheduleClause() argument
22733 OMPDistScheduleClause(StartLoc, LParenLoc, KindLoc, CommaLoc, EndLoc, in ActOnOpenMPDistScheduleClause()