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

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

#include <OpenMPClause.h>

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

Public Member Functions

 OMPProcBindClause (OpenMPProcBindClauseKind A, SourceLocation ALoc, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'proc_bind' clause with argument A ('master', 'close' or 'spread'). More...
 
 OMPProcBindClause ()
 Build an empty clause. More...
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('. More...
 
SourceLocation getLParenLoc () const
 Returns the location of '('. More...
 
OpenMPProcBindClauseKind getProcBindKind () const
 Returns kind of the clause. More...
 
SourceLocation getProcBindKindKwLoc () const
 Returns location of clause kind. 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 'proc_bind' clause in the '#pragma omp ...' directive.

#pragma omp parallel proc_bind(master)

In this example directive '#pragma omp parallel' has simple 'proc_bind' clause with kind 'master'.

Definition at line 496 of file OpenMPClause.h.

Constructor & Destructor Documentation

clang::OMPProcBindClause::OMPProcBindClause ( OpenMPProcBindClauseKind  A,
SourceLocation  ALoc,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'proc_bind' clause with argument A ('master', 'close' or 'spread').

Parameters
AArgument of the clause ('master', 'close' or 'spread').
ALocStarting location of the argument.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.

Definition at line 527 of file OpenMPClause.h.

clang::OMPProcBindClause::OMPProcBindClause ( )
inline

Build an empty clause.

Definition at line 535 of file OpenMPClause.h.

Member Function Documentation

StmtRange clang::OMPProcBindClause::children ( )
inline

Definition at line 555 of file OpenMPClause.h.

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

Definition at line 551 of file OpenMPClause.h.

References clang::OMPClause::getClauseKind().

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

Returns the location of '('.

Definition at line 543 of file OpenMPClause.h.

OpenMPProcBindClauseKind clang::OMPProcBindClause::getProcBindKind ( ) const
inline

Returns kind of the clause.

Definition at line 546 of file OpenMPClause.h.

SourceLocation clang::OMPProcBindClause::getProcBindKindKwLoc ( ) const
inline

Returns location of clause kind.

Definition at line 549 of file OpenMPClause.h.

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

Sets the location of '('.

Definition at line 541 of file OpenMPClause.h.

Friends And Related Function Documentation

friend class OMPClauseReader
friend

Definition at line 497 of file OpenMPClause.h.


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