reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/ASTNodeTraverser.h
  602     for (const auto *C : Node->clauses())
tools/clang/include/clang/AST/StmtOpenMP.h
  196     return getClausesOfKind<SpecificClause>(clauses());
  247   OMPClause *getClause(unsigned i) const { return clauses()[i]; }
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 6716   ArrayRef<OMPClause *> Clauses = Node.clauses();
tools/clang/lib/AST/StmtProfile.cpp
  778   ArrayRef<OMPClause *> Clauses = S->clauses();
tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
  468           S, D->clauses(),
tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
   29     for (const auto *C : S.clauses()) {
  191     for (const auto *C : S.clauses()) {
 4084   for (const OMPClause *C : S.clauses()) {
tools/clang/lib/Sema/SemaOpenMP.cpp
 2156     for (OMPClause *C : D->clauses()) {
 2196       checkAllocateClauses(*this, DSAStack, D->clauses());
tools/clang/tools/libclang/CIndex.cpp
 2750   for (ArrayRef<OMPClause *>::iterator I = D->clauses().begin(),
 2751                                        E = D->clauses().end();