Searched refs:OMPSingleDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 927 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,
|
D | DataRecursiveASTVisitor.h | 2327 DEF_TRAVERSE_STMT(OMPSingleDirective,
|
D | RecursiveASTVisitor.h | 2357 DEF_TRAVERSE_STMT(OMPSingleDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1799 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()
|
D | StmtProfile.cpp | 465 void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { in VisitOMPSingleDirective()
|
D | StmtPrinter.cpp | 854 void StmtPrinter::VisitOMPSingleDirective(OMPSingleDirective *Node) { in VisitOMPSingleDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 190 def OMPSingleDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1219 void CodeGenFunction::EmitOMPSingleDirective(const OMPSingleDirective &S) { in EmitOMPSingleDirective()
|
D | CGStmt.cpp | 196 EmitOMPSingleDirective(cast<OMPSingleDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2126 void EmitOMPSingleDirective(const OMPSingleDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2126 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective() 2739 S = OMPSingleDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1978 void ASTStmtWriter::VisitOMPSingleDirective(OMPSingleDirective *D) { in VisitOMPSingleDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1872 void VisitOMPSingleDirective(const OMPSingleDirective *D); 2435 void EnqueueVisitor::VisitOMPSingleDirective(const OMPSingleDirective *D) { in VisitOMPSingleDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3128 return OMPSingleDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPSingleDirective()
|
D | TreeTransform.h | 6771 TreeTransform<Derived>::TransformOMPSingleDirective(OMPSingleDirective *D) { in TransformOMPSingleDirective()
|