Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h481 class OMPSingleDirective : public OMPExecutableDirective {
489 OMPSingleDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSingleDirective() function
498 explicit OMPSingleDirective(unsigned NumClauses) in OMPSingleDirective() function
512 static OMPSingleDirective *
522 static OMPSingleDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2319 DEF_TRAVERSE_STMT(OMPSingleDirective,
DDataRecursiveASTVisitor.h2297 DEF_TRAVERSE_STMT(OMPSingleDirective,
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp89 void CodeGenFunction::EmitOMPSingleDirective(const OMPSingleDirective &) { in EmitOMPSingleDirective() argument
DCGStmt.cpp195 EmitOMPSingleDirective(cast<OMPSingleDirective>(*S)); in EmitStmt()
DCodeGenFunction.h1905 void EmitOMPSingleDirective(const OMPSingleDirective &S);
/external/clang/lib/AST/
DStmt.cpp1455 OMPSingleDirective *OMPSingleDirective::Create(const ASTContext &C, in Create()
1460 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSingleDirective), in Create()
1464 OMPSingleDirective *Dir = in Create()
1465 new (Mem) OMPSingleDirective(StartLoc, EndLoc, Clauses.size()); in Create()
1471 OMPSingleDirective *OMPSingleDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1474 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSingleDirective), in CreateEmpty()
1478 return new (Mem) OMPSingleDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp379 void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { in VisitOMPSingleDirective()
DStmtPrinter.cpp813 void StmtPrinter::VisitOMPSingleDirective(OMPSingleDirective *Node) { in VisitOMPSingleDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td186 def OMPSingleDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1939 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
2469 S = OMPSingleDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp1847 void ASTStmtWriter::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
/external/clang/tools/libclang/
DCIndex.cpp1862 void VisitOMPSingleDirective(const OMPSingleDirective *D);
2312 void EnqueueVisitor::VisitOMPSingleDirective(const OMPSingleDirective *D) { in VisitOMPSingleDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp1838 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPSingleDirective()
DTreeTransform.h6477 TreeTransform<Derived>::TransformOMPSingleDirective(OMPSingleDirective *D) { in TransformOMPSingleDirective()