/external/clang/include/clang/AST/ |
StmtOpenMP.h | 31 class OMPClause { 39 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc) 61 return const_cast<OMPClause *>(this)->children(); 63 static bool classof(const OMPClause *T) { 132 class OMPDefaultClause : public OMPClause { 164 : OMPClause(OMPC_default, StartLoc, EndLoc), LParenLoc(LParenLoc), 170 : OMPClause(OMPC_default, SourceLocation(), SourceLocation()), 185 static bool classof(const OMPClause *T) { 202 class OMPPrivateClause : public OMPClause, public OMPVarList<OMPPrivateClause> { 212 : OMPClause(OMPC_private, StartLoc, EndLoc) [all...] |
StmtVisitor.h | 188 /// \brief This class implements a simple visitor for OMPClause 201 RetTy Visit(PTR(OMPClause) S) { 202 // Top switch clause: visit each OMPClause. 211 RetTy VisitOMPClause(PTR(OMPClause) Node) { return RetTy(); }
|
RecursiveASTVisitor.h | 422 bool TraverseOMPClause(OMPClause *C); [all...] |
/external/clang/lib/Parse/ |
ParseOpenMP.cpp | 84 SmallVector<OMPClause *, 5> Clauses; 85 SmallVector<llvm::PointerIntPair<OMPClause *, 1, bool>, NUM_OPENMP_CLAUSES> 118 OMPClause *Clause = ParseOpenMPClause(DKind, CKind, 250 OMPClause *Parser::ParseOpenMPClause(OpenMPDirectiveKind DKind, 252 OMPClause *Clause = 0; 296 OMPClause *Parser::ParseOpenMPSimpleClause(OpenMPClauseKind Kind) { 326 OMPClause *Parser::ParseOpenMPVarListClause(OpenMPClauseKind Kind) {
|
/external/clang/lib/Sema/ |
SemaOpenMP.cpp | 203 ArrayRef<OMPClause *> Clauses, 222 StmtResult Sema::ActOnOpenMPParallelDirective(ArrayRef<OMPClause *> Clauses, 232 OMPClause *Sema::ActOnOpenMPSimpleClause(OpenMPClauseKind Kind, 238 OMPClause *Res = 0; 254 OMPClause *Sema::ActOnOpenMPDefaultClause(OpenMPDefaultClauseKind Kind, 286 OMPClause *Sema::ActOnOpenMPVarListClause(OpenMPClauseKind Kind, 291 OMPClause *Res = 0; 305 OMPClause *Sema::ActOnOpenMPPrivateClause(ArrayRef<Expr *> VarList,
|
TreeTransform.h | 325 OMPClause *TransformOMPClause(OMPClause *S); 609 OMPClause *Transform ## Class(Class *S); [all...] |
/external/clang/lib/AST/ |
Stmt.cpp | [all...] |
StmtPrinter.cpp | 628 ArrayRef<OMPClause *> Clauses = Node->clauses(); 629 for (ArrayRef<OMPClause *>::iterator I = Clauses.begin(), E = Clauses.end(); [all...] |
StmtProfile.cpp | 282 ArrayRef<OMPClause *> Clauses = S->clauses(); 283 for (ArrayRef<OMPClause *>::iterator I = Clauses.begin(), E = Clauses.end(); [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 48 class OMPClause; [all...] |
/external/clang/tools/libclang/ |
RecursiveASTVisitor.h | 409 bool TraverseOMPClause(OMPClause *C); [all...] |
CIndex.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTReaderStmt.cpp | [all...] |
ASTWriterStmt.cpp | [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | 142 class OMPClause; [all...] |