Home
last modified time | relevance | path

Searched refs:OMPReadClause (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h2022 class OMPReadClause : public OMPClause {
2028 OMPReadClause(SourceLocation StartLoc, SourceLocation EndLoc) in OMPReadClause() function
2032 OMPReadClause() in OMPReadClause() function
H A DRecursiveASTVisitor.h3444 bool RecursiveASTVisitor<Derived>::VisitOMPReadClause(OMPReadClause *) {
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp575 void OMPClauseProfiler::VisitOMPReadClause(const OMPReadClause *) {} in VisitOMPReadClause() argument
H A DOpenMPClause.cpp1908 void OMPClausePrinter::VisitOMPReadClause(OMPReadClause *) { OS << "read"; } in VisitOMPReadClause() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td362 let clangClass = "OMPReadClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10447 C = new (Context) OMPReadClause(); in readClause()
10844 void OMPClauseReader::VisitOMPReadClause(OMPReadClause *) {} in VisitOMPReadClause() argument
H A DASTWriter.cpp7207 void OMPClauseWriter::VisitOMPReadClause(OMPReadClause *) {} in VisitOMPReadClause() argument
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h10206 OMPClause *TreeTransform<Derived>::TransformOMPReadClause(OMPReadClause *C) { in TransformOMPReadClause()
H A DSemaOpenMP.cpp16498 return new (getASTContext()) OMPReadClause(StartLoc, EndLoc); in ActOnOpenMPReadClause()