clang 23.0.0git
OMPInclusiveClause Class Referencefinal

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

#include "clang/AST/OpenMPClause.h"

Inheritance diagram for OMPInclusiveClause:
[legend]

Public Member Functions

child_range children ()
const_child_range children () const
child_range used_children ()
const_child_range used_children () const

Static Public Member Functions

static OMPInclusiveClauseCreate (const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef< Expr * > VL)
 Creates clause with a list of variables VL.
static OMPInclusiveClauseCreateEmpty (const ASTContext &C, unsigned N)
 Creates an empty clause with the place for N variables.
static bool classof (const OMPClause *T)

Friends

class OMPClauseReader

Detailed Description

This represents clause 'inclusive' in the '#pragma omp scan' directive.

#pragma omp scan inclusive(a,b)

In this example directive '#pragma omp scan' has clause 'inclusive' with the variables 'a' and 'b'.

Definition at line 9150 of file OpenMPClause.h.

Member Function Documentation

◆ children() [1/2]

child_range OMPInclusiveClause::children ( )
inline

Definition at line 9195 of file OpenMPClause.h.

Referenced by children().

◆ children() [2/2]

const_child_range OMPInclusiveClause::children ( ) const
inline

Definition at line 9200 of file OpenMPClause.h.

References children().

◆ classof()

bool OMPInclusiveClause::classof ( const OMPClause * T)
inlinestatic

Definition at line 9211 of file OpenMPClause.h.

◆ Create()

OMPInclusiveClause * OMPInclusiveClause::Create ( const ASTContext & C,
SourceLocation StartLoc,
SourceLocation LParenLoc,
SourceLocation EndLoc,
ArrayRef< Expr * > VL )
static

Creates clause with a list of variables VL.

Parameters
CAST context.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.
VLList of references to the original variables.

Definition at line 1659 of file OpenMPClause.cpp.

References clang::C.

Referenced by clang::SemaOpenMP::ActOnOpenMPInclusiveClause().

◆ CreateEmpty()

OMPInclusiveClause * OMPInclusiveClause::CreateEmpty ( const ASTContext & C,
unsigned N )
static

Creates an empty clause with the place for N variables.

Parameters
CAST context.
NThe number of variables.

Definition at line 1671 of file OpenMPClause.cpp.

References clang::C.

Referenced by clang::OMPClauseReader::readClause().

◆ used_children() [1/2]

child_range OMPInclusiveClause::used_children ( )
inline

Definition at line 9204 of file OpenMPClause.h.

◆ used_children() [2/2]

const_child_range OMPInclusiveClause::used_children ( ) const
inline

Definition at line 9207 of file OpenMPClause.h.

◆ OMPClauseReader

friend class OMPClauseReader
friend

Definition at line 9153 of file OpenMPClause.h.

References OMPClauseReader.

Referenced by OMPClauseReader.


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