Searched refs:OMPAtomicDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1583 class OMPAtomicDirective : public OMPExecutableDirective { 1611 OMPAtomicDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPAtomicDirective() function 1621 explicit OMPAtomicDirective(unsigned NumClauses) in OMPAtomicDirective() function 1658 static OMPAtomicDirective * 1669 static OMPAtomicDirective *CreateEmpty(const ASTContext &C,
|
D | DataRecursiveASTVisitor.h | 2365 DEF_TRAVERSE_STMT(OMPAtomicDirective,
|
D | RecursiveASTVisitor.h | 2395 DEF_TRAVERSE_STMT(OMPAtomicDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 2089 OMPAtomicDirective *OMPAtomicDirective::Create( in Create() 2093 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPAtomicDirective), in Create() 2097 OMPAtomicDirective *Dir = in Create() 2098 new (Mem) OMPAtomicDirective(StartLoc, EndLoc, Clauses.size()); in Create() 2110 OMPAtomicDirective *OMPAtomicDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 2113 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPAtomicDirective), in CreateEmpty() 2117 return new (Mem) OMPAtomicDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 517 void StmtProfiler::VisitOMPAtomicDirective(const OMPAtomicDirective *S) { in VisitOMPAtomicDirective()
|
D | StmtPrinter.cpp | 921 void StmtPrinter::VisitOMPAtomicDirective(OMPAtomicDirective *Node) { in VisitOMPAtomicDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 202 def OMPAtomicDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1663 void CodeGenFunction::EmitOMPAtomicDirective(const OMPAtomicDirective &S) { in EmitOMPAtomicDirective()
|
D | CGStmt.cpp | 232 EmitOMPAtomicDirective(cast<OMPAtomicDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2138 void EmitOMPAtomicDirective(const OMPAtomicDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2195 void ASTStmtReader::VisitOMPAtomicDirective(OMPAtomicDirective *D) { in VisitOMPAtomicDirective() 2799 S = OMPAtomicDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2024 void ASTStmtWriter::VisitOMPAtomicDirective(OMPAtomicDirective *D) { in VisitOMPAtomicDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1884 void VisitOMPAtomicDirective(const OMPAtomicDirective *D); 2488 void EnqueueVisitor::VisitOMPAtomicDirective(const OMPAtomicDirective *D) { in VisitOMPAtomicDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3948 return OMPAtomicDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPAtomicDirective()
|
D | TreeTransform.h | 6902 TreeTransform<Derived>::TransformOMPAtomicDirective(OMPAtomicDirective *D) { in TransformOMPAtomicDirective()
|