Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h927 class OMPSingleDirective : public OMPExecutableDirective {
935 OMPSingleDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSingleDirective() function
944 explicit OMPSingleDirective(unsigned NumClauses) in OMPSingleDirective() function
958 static OMPSingleDirective *
968 static OMPSingleDirective *CreateEmpty(const ASTContext &C,
DDataRecursiveASTVisitor.h2327 DEF_TRAVERSE_STMT(OMPSingleDirective,
DRecursiveASTVisitor.h2357 DEF_TRAVERSE_STMT(OMPSingleDirective,
/external/clang/lib/AST/
DStmt.cpp1799 OMPSingleDirective *OMPSingleDirective::Create(const ASTContext &C, in Create()
1804 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSingleDirective), in Create()
1808 OMPSingleDirective *Dir = in Create()
1809 new (Mem) OMPSingleDirective(StartLoc, EndLoc, Clauses.size()); in Create()
1815 OMPSingleDirective *OMPSingleDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1818 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSingleDirective), in CreateEmpty()
1822 return new (Mem) OMPSingleDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp465 void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { in VisitOMPSingleDirective()
DStmtPrinter.cpp854 void StmtPrinter::VisitOMPSingleDirective(OMPSingleDirective *Node) { in VisitOMPSingleDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td190 def OMPSingleDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1219 void CodeGenFunction::EmitOMPSingleDirective(const OMPSingleDirective &S) { in EmitOMPSingleDirective()
DCGStmt.cpp196 EmitOMPSingleDirective(cast<OMPSingleDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2126 void EmitOMPSingleDirective(const OMPSingleDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2126 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
2739 S = OMPSingleDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp1978 void ASTStmtWriter::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
/external/clang/tools/libclang/
DCIndex.cpp1872 void VisitOMPSingleDirective(const OMPSingleDirective *D);
2435 void EnqueueVisitor::VisitOMPSingleDirective(const OMPSingleDirective *D) { in VisitOMPSingleDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3128 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPSingleDirective()
DTreeTransform.h6771 TreeTransform<Derived>::TransformOMPSingleDirective(OMPSingleDirective *D) { in TransformOMPSingleDirective()