Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp276 OMPSingleDirective *OMPSingleDirective::Create(const ASTContext &C, in Create()
282 llvm::alignTo(sizeof(OMPSingleDirective), llvm::alignOf<OMPClause *>()); in Create()
285 OMPSingleDirective *Dir = in Create()
286 new (Mem) OMPSingleDirective(StartLoc, EndLoc, Clauses.size()); in Create()
292 OMPSingleDirective *OMPSingleDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
296 llvm::alignTo(sizeof(OMPSingleDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
299 return new (Mem) OMPSingleDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp581 void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { in VisitOMPSingleDirective()
DStmtPrinter.cpp1020 void StmtPrinter::VisitOMPSingleDirective(OMPSingleDirective *Node) { in VisitOMPSingleDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1126 class OMPSingleDirective : public OMPExecutableDirective {
1134 OMPSingleDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSingleDirective() function
1143 explicit OMPSingleDirective(unsigned NumClauses) in OMPSingleDirective() function
1157 static OMPSingleDirective *
1167 static OMPSingleDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2481 DEF_TRAVERSE_STMT(OMPSingleDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td204 def OMPSingleDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp203 EmitOMPSingleDirective(cast<OMPSingleDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2473 void EmitOMPSingleDirective(const OMPSingleDirective &S);
DCGStmtOpenMP.cpp2309 void CodeGenFunction::EmitOMPSingleDirective(const OMPSingleDirective &S) { in EmitOMPSingleDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2575 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
3297 S = OMPSingleDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2260 void ASTStmtWriter::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
/external/clang/tools/libclang/
DCIndex.cpp1944 void VisitOMPSingleDirective(const OMPSingleDirective *D);
2620 void EnqueueVisitor::VisitOMPSingleDirective(const OMPSingleDirective *D) { in VisitOMPSingleDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5679 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPSingleDirective()
DTreeTransform.h7289 TreeTransform<Derived>::TransformOMPSingleDirective(OMPSingleDirective *D) { in TransformOMPSingleDirective()