Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtProfile.cpp550 void OMPClauseProfiler::VisitOMPReadClause(const OMPReadClause *) {} in VisitOMPReadClause() argument
H A DOpenMPClause.cpp1828 void OMPClausePrinter::VisitOMPReadClause(OMPReadClause *) { OS << "read"; } in VisitOMPReadClause() argument
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOpenMPClause.h1980 class OMPReadClause : public OMPClause {
1986 OMPReadClause(SourceLocation StartLoc, SourceLocation EndLoc) in OMPReadClause() function
1990 OMPReadClause() in OMPReadClause() function
H A DRecursiveASTVisitor.h3345 bool RecursiveASTVisitor<Derived>::VisitOMPReadClause(OMPReadClause *) {
/llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td197 def OMPC_Read : Clause<"read"> { let clangClass = "OMPReadClause"; }
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp11569 C = new (Context) OMPReadClause(); in readClause()
11936 void OMPClauseReader::VisitOMPReadClause(OMPReadClause *) {} in VisitOMPReadClause() argument
H A DASTWriter.cpp6318 void OMPClauseWriter::VisitOMPReadClause(OMPReadClause *) {} in VisitOMPReadClause() argument
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2368 void OMPClauseEnqueue::VisitOMPReadClause(const OMPReadClause *) {} in VisitOMPReadClause() argument
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h9586 OMPClause *TreeTransform<Derived>::TransformOMPReadClause(OMPReadClause *C) { in TransformOMPReadClause()
H A DSemaOpenMP.cpp17127 return new (Context) OMPReadClause(StartLoc, EndLoc); in ActOnOpenMPReadClause()