Searched refs:OMPClauseWithPreInit (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h108 class OMPClauseWithPreInit { class in namespace:clang
118 OMPClauseWithPreInit(const OMPClause *This) { function in class:clang::OMPClauseWithPreInit
140 static OMPClauseWithPreInit *get(OMPClause *C);
141 static const OMPClauseWithPreInit *get(const OMPClause *C);
146 class OMPClauseWithPostUpdate : public OMPClauseWithPreInit {
153 OMPClauseWithPostUpdate(const OMPClause *This) : OMPClauseWithPreInit(This) {
425 class OMPIfClause : public OMPClause, public OMPClauseWithPreInit {
472 : OMPClause(OMPC_if, StartLoc, EndLoc), OMPClauseWithPreInit(this),
481 OMPClauseWithPreInit(this) {}
525 class OMPFinalClause : public OMPClause, public OMPClauseWithPreInit {
[all...]
H A DRecursiveASTVisitor.h542 bool VisitOMPClauseWithPreInit(OMPClauseWithPreInit *Node);
2961 OMPClauseWithPreInit *Node) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp55 OMPClauseWithPreInit *OMPClauseWithPreInit::get(OMPClause *C) {
56 auto *Res = OMPClauseWithPreInit::get(const_cast<const OMPClause *>(C));
57 return Res ? const_cast<OMPClauseWithPreInit *>(Res) : nullptr;
60 const OMPClauseWithPreInit *OMPClauseWithPreInit::get(const OMPClause *C) {
H A DStmtProfile.cpp419 void VistOMPClauseWithPreInit(const OMPClauseWithPreInit *C);
424 const OMPClauseWithPreInit *C) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp6031 void VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C);
6048 void OMPClauseWriter::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) {
H A DASTReader.cpp11510 void VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C);
11734 void OMPClauseReader::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp35 if (const auto *CPI = OMPClauseWithPreInit::get(C)) {
198 if (const auto *CPI = OMPClauseWithPreInit::get(C)) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp3859 SmallVector<const OMPClauseWithPreInit *, 4> PICs;
3886 if (auto *C = OMPClauseWithPreInit::get(Clause))
3939 for (const clang::OMPClauseWithPreInit *C : PICs) {

Completed in 400 milliseconds