clang  3.7.0
Public Member Functions | Static Public Member Functions | Friends | List of all members
clang::OMPFinalClause Class Reference

This represents 'final' clause in the '#pragma omp ...' directive. More...

#include <OpenMPClause.h>

Inheritance diagram for clang::OMPFinalClause:
[legend]
Collaboration diagram for clang::OMPFinalClause:
[legend]

Public Member Functions

 OMPFinalClause (Expr *Cond, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'final' clause with condition Cond. More...
 
 OMPFinalClause ()
 Build an empty clause. More...
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('. More...
 
SourceLocation getLParenLoc () const
 Returns the location of '('. More...
 
ExprgetCondition () const
 Returns condition. More...
 
StmtRange children ()
 
- Public Member Functions inherited from clang::OMPClause
SourceLocation getLocStart () const
 Returns the starting location of the clause. More...
 
SourceLocation getLocEnd () const
 Returns the ending location of the clause. More...
 
void setLocStart (SourceLocation Loc)
 Sets the starting location of the clause. More...
 
void setLocEnd (SourceLocation Loc)
 Sets the ending location of the clause. More...
 
OpenMPClauseKind getClauseKind () const
 Returns kind of OpenMP clause (private, shared, reduction, etc.). More...
 
bool isImplicit () const
 
StmtRange children ()
 
ConstStmtRange children () const
 

Static Public Member Functions

static bool classof (const OMPClause *T)
 
- Static Public Member Functions inherited from clang::OMPClause
static bool classof (const OMPClause *)
 

Friends

class OMPClauseReader
 

Additional Inherited Members

- Protected Member Functions inherited from clang::OMPClause
 OMPClause (OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc)
 

Detailed Description

This represents 'final' clause in the '#pragma omp ...' directive.

#pragma omp task final(a > 5)

In this example directive '#pragma omp task' has simple 'final' clause with condition 'a > 5'.

Definition at line 207 of file OpenMPClause.h.

Constructor & Destructor Documentation

clang::OMPFinalClause::OMPFinalClause ( Expr Cond,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'final' clause with condition Cond.

Parameters
StartLocStarting location of the clause.
LParenLocLocation of '('.
CondCondition of the clause.
EndLocEnding location of the clause.

Definition at line 226 of file OpenMPClause.h.

clang::OMPFinalClause::OMPFinalClause ( )
inline

Build an empty clause.

Definition at line 233 of file OpenMPClause.h.

Member Function Documentation

StmtRange clang::OMPFinalClause::children ( )
inline

Definition at line 249 of file OpenMPClause.h.

static bool clang::OMPFinalClause::classof ( const OMPClause T)
inlinestatic

Definition at line 245 of file OpenMPClause.h.

References clang::OMPClause::getClauseKind().

Expr* clang::OMPFinalClause::getCondition ( ) const
inline

Returns condition.

Definition at line 243 of file OpenMPClause.h.

SourceLocation clang::OMPFinalClause::getLParenLoc ( ) const
inline

Returns the location of '('.

Definition at line 240 of file OpenMPClause.h.

void clang::OMPFinalClause::setLParenLoc ( SourceLocation  Loc)
inline

Sets the location of '('.

Definition at line 238 of file OpenMPClause.h.

Friends And Related Function Documentation

friend class OMPClauseReader
friend

Definition at line 208 of file OpenMPClause.h.


The documentation for this class was generated from the following file: