Home
last modified time | relevance | path

Searched refs:getClauseKind (Results 1 – 11 of 11) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDOpenMPClause.h56 OpenMPClauseKind getClauseKind() const { return Kind; } in getClauseKind() function
193 return T->getClauseKind() == OMPC_if; in classof()
246 return T->getClauseKind() == OMPC_final; in classof()
300 return T->getClauseKind() == OMPC_num_threads; in classof()
356 return T->getClauseKind() == OMPC_safelen; in classof()
412 return T->getClauseKind() == OMPC_collapse; in classof()
481 return T->getClauseKind() == OMPC_default; in classof()
552 return T->getClauseKind() == OMPC_proc_bind; in classof()
676 return T->getClauseKind() == OMPC_schedule; in classof()
707 return T->getClauseKind() == OMPC_ordered; in classof()
[all …]
HDStmtVisitor.h203 switch (S->getClauseKind()) { in Visit()
HDStmtOpenMP.h140 return clause->getClauseKind() == Kind; in operator()
HDDataRecursiveASTVisitor.h2416 switch (C->getClauseKind()) { in TraverseOMPClause()
HDRecursiveASTVisitor.h2448 switch (C->getClauseKind()) { in TraverseOMPClause()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp1361 if (isOpenMPPrivate(Clause->getClauseKind()) || in ActOnOpenMPRegionEnd()
1362 Clause->getClauseKind() == OMPC_copyprivate || in ActOnOpenMPRegionEnd()
1365 Clause->getClauseKind() == OMPC_copyin)) { in ActOnOpenMPRegionEnd()
1366 DSAStack->setForceVarCapturing(Clause->getClauseKind() == OMPC_copyin); in ActOnOpenMPRegionEnd()
1375 Clause->getClauseKind() == OMPC_schedule) { in ActOnOpenMPRegionEnd()
3472 return C->getClauseKind() == OMPC_collapse; in GetCollapseNumberExpr()
3617 if (Clause->getClauseKind() == OMPC_nowait) in ActOnOpenMPSingleDirective()
3619 else if (Clause->getClauseKind() == OMPC_copyprivate) in ActOnOpenMPSingleDirective()
4066 if (C->getClauseKind() == OMPC_read || C->getClauseKind() == OMPC_write || in ActOnOpenMPAtomicDirective()
4067 C->getClauseKind() == OMPC_update || in ActOnOpenMPAtomicDirective()
[all …]
HDTreeTransform.h2937 switch (S->getClauseKind()) { in TransformOMPClause()
6837 getDerived().getSema().StartOpenMPClause((*I)->getClauseKind()); in TransformOMPExecutableDirective()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmtOpenMP.cpp2061 if (C->getClauseKind() != OMPC_seq_cst) { in EmitOMPAtomicDirective()
2062 Kind = C->getClauseKind(); in EmitOMPAtomicDirective()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmtPrinter.cpp806 OS << getOpenMPSimpleClauseTypeName(Node->getClauseKind(), in VisitOMPDependClause()
HDStmt.cpp1177 switch(getClauseKind()) { in children()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTWriterStmt.cpp1714 Record.push_back(C->getClauseKind()); in writeClause()