Home | History | Annotate | Download | only in Sema

Lines Matching refs:EndLoc

1124                                                 SourceLocation EndLoc) {
1156 EndLoc);
1159 Res = ActOnOpenMPSimdDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc,
1163 Res = ActOnOpenMPForDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc,
1168 EndLoc);
1173 Res = ActOnOpenMPSectionDirective(AStmt, StartLoc, EndLoc);
1177 EndLoc);
1181 EndLoc, VarsWithInheritedDSA);
1185 StartLoc, EndLoc);
1209 SourceLocation EndLoc) {
1221 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses,
1759 SourceLocation EndLoc,
1769 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
1775 SourceLocation EndLoc,
1785 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,
1792 SourceLocation EndLoc) {
1819 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses,
1825 SourceLocation EndLoc) {
1830 return OMPSectionDirective::Create(Context, StartLoc, EndLoc, AStmt);
1836 SourceLocation EndLoc) {
1838 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt);
1843 SourceLocation EndLoc,
1862 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc,
1869 SourceLocation EndLoc) {
1897 return OMPParallelSectionsDirective::Create(Context, StartLoc, EndLoc,
1904 SourceLocation EndLoc) {
1908 Res = ActOnOpenMPIfClause(Expr, StartLoc, LParenLoc, EndLoc);
1911 Res = ActOnOpenMPNumThreadsClause(Expr, StartLoc, LParenLoc, EndLoc);
1914 Res = ActOnOpenMPSafelenClause(Expr, StartLoc, LParenLoc, EndLoc);
1917 Res = ActOnOpenMPCollapseClause(Expr, StartLoc, LParenLoc, EndLoc);
1942 SourceLocation EndLoc) {
1955 return new (Context) OMPIfClause(ValExpr, StartLoc, LParenLoc, EndLoc);
2005 SourceLocation EndLoc) {
2030 OMPNumThreadsClause(ValExpr, StartLoc, LParenLoc, EndLoc);
2054 SourceLocation EndLoc) {
2062 OMPSafelenClause(Safelen.get(), StartLoc, LParenLoc, EndLoc);
2068 SourceLocation EndLoc) {
2079 OMPCollapseClause(NumForLoopsResult.get(), StartLoc, LParenLoc, EndLoc);
2084 SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) {
2090 ArgumentLoc, StartLoc, LParenLoc, EndLoc);
2095 LParenLoc, EndLoc);
2124 SourceLocation EndLoc) {
2161 OMPDefaultClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
2168 SourceLocation EndLoc) {
2192 OMPProcBindClause(Kind, KindKwLoc, StartLoc, LParenLoc, EndLoc);
2199 SourceLocation EndLoc) {
2205 LParenLoc, ArgumentLoc, CommaLoc, EndLoc);
2234 SourceLocation EndLoc) {
2284 EndLoc, Kind, ValExpr);
2289 SourceLocation EndLoc) {
2293 Res = ActOnOpenMPOrderedClause(StartLoc, EndLoc);
2296 Res = ActOnOpenMPNowaitClause(StartLoc, EndLoc);
2322 SourceLocation EndLoc) {
2323 return new (Context) OMPOrderedClause(StartLoc, EndLoc);
2327 SourceLocation EndLoc) {
2328 return new (Context) OMPNowaitClause(StartLoc, EndLoc);
2334 SourceLocation EndLoc, CXXScopeSpec &ReductionIdScopeSpec,
2339 Res = ActOnOpenMPPrivateClause(VarList, StartLoc, LParenLoc, EndLoc);
2342 Res = ActOnOpenMPFirstprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
2345 Res = ActOnOpenMPLastprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
2348 Res = ActOnOpenMPSharedClause(VarList, StartLoc, LParenLoc, EndLoc);
2352 EndLoc, ReductionIdScopeSpec, ReductionId);
2356 ColonLoc, EndLoc);
2360 ColonLoc, EndLoc);
2363 Res = ActOnOpenMPCopyinClause(VarList, StartLoc, LParenLoc, EndLoc);
2366 Res = ActOnOpenMPCopyprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
2387 SourceLocation EndLoc) {
2512 return OMPPrivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
2518 SourceLocation EndLoc) {
2618 // If StartLoc and EndLoc are invalid - this is an implicit firstprivate
2620 if (StartLoc.isValid() && EndLoc.isValid()) {
2697 return OMPFirstprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
2704 SourceLocation EndLoc) {
2852 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc,
2859 SourceLocation EndLoc) {
2914 return OMPSharedClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
2950 SourceLocation ColonLoc, SourceLocation EndLoc,
3234 Context, StartLoc, LParenLoc, ColonLoc, EndLoc, Vars,
3242 SourceLocation EndLoc) {
3361 return OMPLinearClause::Create(Context, StartLoc, LParenLoc, ColonLoc, EndLoc,
3367 SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc) {
3437 EndLoc, Vars, Alignment);
3443 SourceLocation EndLoc) {
3520 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);
3526 SourceLocation EndLoc) {
3624 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars);