Searched refs:OMPSectionsDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 229 OMPSectionsDirective *OMPSectionsDirective::Create( in Create() 233 llvm::alignTo(sizeof(OMPSectionsDirective), llvm::alignOf<OMPClause *>()); in Create() 236 OMPSectionsDirective *Dir = in Create() 237 new (Mem) OMPSectionsDirective(StartLoc, EndLoc, Clauses.size()); in Create() 244 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 248 llvm::alignTo(sizeof(OMPSectionsDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty() 251 return new (Mem) OMPSectionsDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 573 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
|
D | StmtPrinter.cpp | 1010 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 996 class OMPSectionsDirective : public OMPExecutableDirective { 1008 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSectionsDirective() function 1018 explicit OMPSectionsDirective(unsigned NumClauses) in OMPSectionsDirective() function 1037 static OMPSectionsDirective * 1047 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2475 DEF_TRAVERSE_STMT(OMPSectionsDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 202 def OMPSectionsDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 197 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 2271 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections() 2288 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
|
D | CodeGenFunction.h | 2471 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2561 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective() 3288 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2245 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1942 void VisitOMPSectionsDirective(const OMPSectionsDirective *D); 2612 void EnqueueVisitor::VisitOMPSectionsDirective(const OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5632 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()
|
D | TreeTransform.h | 7267 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()
|