clang  5.0.0
Public Member Functions | Static Public Member Functions | Friends | List of all members
OMPHintClause Class Reference

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

#include "clang/AST/OpenMPClause.h"

Inheritance diagram for OMPHintClause:
[legend]
Collaboration diagram for OMPHintClause:
[legend]

Public Member Functions

 OMPHintClause (Expr *Hint, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'hint' clause with expression Hint. More...
 
 OMPHintClause ()
 Build an empty clause. More...
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('. More...
 
SourceLocation getLParenLoc () const
 Returns the location of '('. More...
 
Expr * getHint () const
 Returns number of threads. More...
 
child_range children ()
 

Static Public Member Functions

static bool classof (const OMPClause *T)
 

Friends

class OMPClauseReader
 

Detailed Description

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

#pragma omp critical (name) hint(6)

In this example directive '#pragma omp critical' has name 'name' and clause 'hint' with argument '6'.

Definition at line 4008 of file OpenMPClause.h.

Constructor & Destructor Documentation

OMPHintClause::OMPHintClause ( Expr *  Hint,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'hint' clause with expression Hint.

Parameters
HintHint expression.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.

Definition at line 4027 of file OpenMPClause.h.

OMPHintClause::OMPHintClause ( )
inline

Build an empty clause.

Definition at line 4034 of file OpenMPClause.h.

Member Function Documentation

child_range OMPHintClause::children ( )
inline

Definition at line 4050 of file OpenMPClause.h.

static bool OMPHintClause::classof ( const OMPClause T)
inlinestatic

Definition at line 4046 of file OpenMPClause.h.

Expr* OMPHintClause::getHint ( ) const
inline

Returns number of threads.

Definition at line 4044 of file OpenMPClause.h.

SourceLocation OMPHintClause::getLParenLoc ( ) const
inline

Returns the location of '('.

Definition at line 4041 of file OpenMPClause.h.

void OMPHintClause::setLParenLoc ( SourceLocation  Loc)
inline

Sets the location of '('.

Definition at line 4039 of file OpenMPClause.h.

Friends And Related Function Documentation

friend class OMPClauseReader
friend

Definition at line 4009 of file OpenMPClause.h.


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