clang  3.9.0
Public Member Functions | Static Public Member Functions | List of all members
clang::OMPNowaitClause Class Reference

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

#include <OpenMPClause.h>

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

Public Member Functions

 OMPNowaitClause (SourceLocation StartLoc, SourceLocation EndLoc)
 Build 'nowait' clause. More...
 
 OMPNowaitClause ()
 Build an empty clause. More...
 
child_range 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
 
child_range children ()
 
const_child_range 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 *)
 

Additional Inherited Members

- Public Types inherited from clang::OMPClause
typedef StmtIterator child_iterator
 
typedef ConstStmtIterator const_child_iterator
 
typedef llvm::iterator_range
< child_iterator
child_range
 
typedef llvm::iterator_range
< const_child_iterator
const_child_range
 
- Protected Member Functions inherited from clang::OMPClause
 OMPClause (OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc)
 

Detailed Description

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

#pragma omp for nowait

In this example directive '#pragma omp for' has 'nowait' clause.

Definition at line 929 of file OpenMPClause.h.

Constructor & Destructor Documentation

clang::OMPNowaitClause::OMPNowaitClause ( SourceLocation  StartLoc,
SourceLocation  EndLoc 
)
inline

Build 'nowait' clause.

Parameters
StartLocStarting location of the clause.
EndLocEnding location of the clause.

Definition at line 936 of file OpenMPClause.h.

clang::OMPNowaitClause::OMPNowaitClause ( )
inline

Build an empty clause.

Definition at line 941 of file OpenMPClause.h.

Member Function Documentation

child_range clang::OMPNowaitClause::children ( )
inline

Definition at line 948 of file OpenMPClause.h.

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

Definition at line 944 of file OpenMPClause.h.

References clang::OMPClause::getClauseKind().


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