Searched refs:OMPSingleDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 276 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()
|
D | StmtProfile.cpp | 581 void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { in VisitOMPSingleDirective()
|
D | StmtPrinter.cpp | 1020 void StmtPrinter::VisitOMPSingleDirective(OMPSingleDirective *Node) { in VisitOMPSingleDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1126 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,
|
D | RecursiveASTVisitor.h | 2481 DEF_TRAVERSE_STMT(OMPSingleDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 204 def OMPSingleDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 203 EmitOMPSingleDirective(cast<OMPSingleDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2473 void EmitOMPSingleDirective(const OMPSingleDirective &S);
|
D | CGStmtOpenMP.cpp | 2309 void CodeGenFunction::EmitOMPSingleDirective(const OMPSingleDirective &S) { in EmitOMPSingleDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2575 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective() 3297 S = OMPSingleDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2260 void ASTStmtWriter::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1944 void VisitOMPSingleDirective(const OMPSingleDirective *D); 2620 void EnqueueVisitor::VisitOMPSingleDirective(const OMPSingleDirective *D) { in VisitOMPSingleDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5679 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPSingleDirective()
|
D | TreeTransform.h | 7289 TreeTransform<Derived>::TransformOMPSingleDirective(OMPSingleDirective *D) { in TransformOMPSingleDirective()
|