Home
last modified time | relevance | path

Searched refs:OMPSingleDirective (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp267 OMPSingleDirective *OMPSingleDirective::Create(const ASTContext &C, in Create()
272 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSingleDirective), in Create()
276 OMPSingleDirective *Dir = in Create()
277 new (Mem) OMPSingleDirective(StartLoc, EndLoc, Clauses.size()); in Create()
283 OMPSingleDirective *OMPSingleDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
286 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSingleDirective), in CreateEmpty()
290 return new (Mem) OMPSingleDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp519 void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { in VisitOMPSingleDirective()
DStmtPrinter.cpp956 void StmtPrinter::VisitOMPSingleDirective(OMPSingleDirective *Node) { in VisitOMPSingleDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1045 class OMPSingleDirective : public OMPExecutableDirective {
1053 OMPSingleDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSingleDirective() function
1062 explicit OMPSingleDirective(unsigned NumClauses) in OMPSingleDirective() function
1076 static OMPSingleDirective *
1086 static OMPSingleDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2377 DEF_TRAVERSE_STMT(OMPSingleDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td203 def OMPSingleDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp203 EmitOMPSingleDirective(cast<OMPSingleDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2322 void EmitOMPSingleDirective(const OMPSingleDirective &S);
DCGStmtOpenMP.cpp1801 void CodeGenFunction::EmitOMPSingleDirective(const OMPSingleDirective &S) { in EmitOMPSingleDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2325 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
2995 S = OMPSingleDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2127 void ASTStmtWriter::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
/external/clang/tools/libclang/
DCIndex.cpp1925 void VisitOMPSingleDirective(const OMPSingleDirective *D);
2547 void EnqueueVisitor::VisitOMPSingleDirective(const OMPSingleDirective *D) { in VisitOMPSingleDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp4303 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPSingleDirective()
DTreeTransform.h7179 TreeTransform<Derived>::TransformOMPSingleDirective(OMPSingleDirective *D) { in TransformOMPSingleDirective()