Searched refs:OMPTargetDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1717 class OMPTargetDirective : public OMPExecutableDirective { 1725 OMPTargetDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTargetDirective() function 1734 explicit OMPTargetDirective(unsigned NumClauses) in OMPTargetDirective() function 1748 static OMPTargetDirective * 1758 static OMPTargetDirective *CreateEmpty(const ASTContext &C,
|
D | DataRecursiveASTVisitor.h | 2368 DEF_TRAVERSE_STMT(OMPTargetDirective,
|
D | RecursiveASTVisitor.h | 2398 DEF_TRAVERSE_STMT(OMPTargetDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 2120 OMPTargetDirective *OMPTargetDirective::Create(const ASTContext &C, in Create() 2125 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTargetDirective), in Create() 2129 OMPTargetDirective *Dir = in Create() 2130 new (Mem) OMPTargetDirective(StartLoc, EndLoc, Clauses.size()); in Create() 2136 OMPTargetDirective *OMPTargetDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 2139 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTargetDirective), in CreateEmpty() 2143 return new (Mem) OMPTargetDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 521 void StmtProfiler::VisitOMPTargetDirective(const OMPTargetDirective *S) { in VisitOMPTargetDirective()
|
D | StmtPrinter.cpp | 926 void StmtPrinter::VisitOMPTargetDirective(OMPTargetDirective *Node) { in VisitOMPTargetDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 203 def OMPTargetDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1687 void CodeGenFunction::EmitOMPTargetDirective(const OMPTargetDirective &) { in EmitOMPTargetDirective() argument
|
D | CGStmt.cpp | 235 EmitOMPTargetDirective(cast<OMPTargetDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2139 void EmitOMPTargetDirective(const OMPTargetDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2208 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective() 2804 S = OMPTargetDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2037 void ASTStmtWriter::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1885 void VisitOMPTargetDirective(const OMPTargetDirective *D); 2492 void EnqueueVisitor::VisitOMPTargetDirective(const OMPTargetDirective *D) { in VisitOMPTargetDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3991 return OMPTargetDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTargetDirective()
|
D | TreeTransform.h | 6913 TreeTransform<Derived>::TransformOMPTargetDirective(OMPTargetDirective *D) { in TransformOMPTargetDirective()
|