clang API Documentation
This represents 'if' clause in the '#pragma omp ...' directive. More...
#include <OpenMPClause.h>
Public Member Functions | |
OMPIfClause (Expr *Cond, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) | |
Build 'if' clause with condition Cond. | |
OMPIfClause () | |
Build an empty clause. | |
void | setLParenLoc (SourceLocation Loc) |
Sets the location of '('. | |
SourceLocation | getLParenLoc () const |
Returns the location of '('. | |
Expr * | getCondition () const |
Returns condition. | |
StmtRange | children () |
Static Public Member Functions | |
static bool | classof (const OMPClause *T) |
Friends | |
class | OMPClauseReader |
This represents 'if' clause in the '#pragma omp ...' directive.
#pragma omp parallel if(a > 5)
In this example directive '#pragma omp parallel' has simple 'if' clause with condition 'a > 5'.
Definition at line 154 of file OpenMPClause.h.
clang::OMPIfClause::OMPIfClause | ( | Expr * | Cond, |
SourceLocation | StartLoc, | ||
SourceLocation | LParenLoc, | ||
SourceLocation | EndLoc | ||
) | [inline] |
Build 'if' clause with condition Cond.
StartLoc | Starting location of the clause. |
LParenLoc | Location of '('. |
Cond | Condition of the clause. |
EndLoc | Ending location of the clause. |
Definition at line 173 of file OpenMPClause.h.
clang::OMPIfClause::OMPIfClause | ( | ) | [inline] |
Build an empty clause.
Definition at line 180 of file OpenMPClause.h.
StmtRange clang::OMPIfClause::children | ( | ) | [inline] |
Reimplemented from clang::OMPClause.
Definition at line 196 of file OpenMPClause.h.
static bool clang::OMPIfClause::classof | ( | const OMPClause * | T | ) | [inline, static] |
Reimplemented from clang::OMPClause.
Definition at line 192 of file OpenMPClause.h.
References clang::OMPClause::getClauseKind().
Expr* clang::OMPIfClause::getCondition | ( | ) | const [inline] |
Returns condition.
Definition at line 190 of file OpenMPClause.h.
SourceLocation clang::OMPIfClause::getLParenLoc | ( | ) | const [inline] |
Returns the location of '('.
Definition at line 187 of file OpenMPClause.h.
void clang::OMPIfClause::setLParenLoc | ( | SourceLocation | Loc | ) | [inline] |
Sets the location of '('.
Definition at line 185 of file OpenMPClause.h.
friend class OMPClauseReader [friend] |
Definition at line 155 of file OpenMPClause.h.