Home | History | Annotate | Download | only in Sema

Lines Matching refs:getClauseKind

653           if (CNew->getClauseKind() == CPrev->getClauseKind()) {
656 << getOpenMPClauseName(CNew->getClauseKind());
659 << getOpenMPClauseName(CPrev->getClauseKind());
2547 if (C->getClauseKind() != OMPC_reduction)
2572 if (C->getClauseKind() != OMPC_reduction)
3288 << "target" << getOpenMPClauseName(CNew->getClauseKind());
3296 << "atomic" << getOpenMPClauseName(CNew->getClauseKind());
4431 if (Clause->getClauseKind() == OMPC_ordered)
4433 else if (Clause->getClauseKind() == OMPC_order) {
4482 Clause->getClauseKind() == OMPC_in_reduction) {
4490 if (isOpenMPPrivate(Clause->getClauseKind()) ||
4491 Clause->getClauseKind() == OMPC_copyprivate ||
4494 Clause->getClauseKind() == OMPC_copyin)) {
4495 DSAStack->setForceVarCapturing(Clause->getClauseKind() == OMPC_copyin);
4516 if (Clause->getClauseKind() == OMPC_schedule)
4518 else if (Clause->getClauseKind() == OMPC_ordered)
4520 else if (Clause->getClauseKind() == OMPC_linear)
5068 return isOpenMPPrivate(C->getClauseKind());
5072 if (Cl->getClauseKind() == OMPC_private) {
5077 } else if (Cl->getClauseKind() == OMPC_firstprivate) {
5082 } else if (Cl->getClauseKind() == OMPC_lastprivate) {
5087 } else if (Cl->getClauseKind() == OMPC_linear) {
5092 } else if (Cl->getClauseKind() == OMPC_reduction) {
5097 } else if (Cl->getClauseKind() == OMPC_task_reduction) {
5102 } else if (Cl->getClauseKind() == OMPC_in_reduction) {
6178 switch (C->getClauseKind()) {
9588 if (Clause->getClauseKind() == OMPC_safelen)
9590 else if (Clause->getClauseKind() == OMPC_simdlen)
9867 if (Clause->getClauseKind() == OMPC_nowait)
9869 else if (Clause->getClauseKind() == OMPC_copyprivate)
9916 if (C->getClauseKind() == OMPC_hint) {
10118 if (C->getClauseKind() == OMPC_detach ||
10119 C->getClauseKind() == OMPC_mergeable) {
10122 } else if (PrevClause->getClauseKind() != C->getClauseKind()) {
10124 << getOpenMPClauseName(C->getClauseKind())
10125 << getOpenMPClauseName(PrevClause->getClauseKind());
10127 << getOpenMPClauseName(PrevClause->getClauseKind());
10198 if (C->getClauseKind() == OMPC_flush)
10206 if (C->getClauseKind() == OMPC_acq_rel ||
10207 C->getClauseKind() == OMPC_acquire ||
10208 C->getClauseKind() == OMPC_release) {
10216 MemOrderKind = C->getClauseKind();
10223 << getOpenMPClauseName(OrderClause->getClauseKind());
10225 << getOpenMPClauseName(OrderClause->getClauseKind());
10237 } else if (Clauses[0]->getClauseKind() != OMPC_depobj) {
10318 } else if (C->getClauseKind() == OMPC_threads) {
10320 } else if (C->getClauseKind() == OMPC_simd) {
10334 << getOpenMPClauseName(TC ? TC->getClauseKind() : SC->getClauseKind());
10638 if (C->getClauseKind() == OMPC_read || C->getClauseKind() == OMPC_write ||
10639 C->getClauseKind() == OMPC_update ||
10640 C->getClauseKind() == OMPC_capture) {
10647 AtomicKind = C->getClauseKind();
10651 if (C->getClauseKind() == OMPC_seq_cst ||
10652 C->getClauseKind() == OMPC_acq_rel ||
10653 C->getClauseKind() == OMPC_acquire ||
10654 C->getClauseKind() == OMPC_release ||
10655 C->getClauseKind() == OMPC_relaxed) {
10663 MemOrderKind = C->getClauseKind();
11248 Clauses, [K](const OMPClause *C) { return C->getClauseKind() == K; });
11453 if (C->getClauseKind() == OMPC_grainsize ||
11454 C->getClauseKind() == OMPC_num_tasks) {
11457 else if (PrevClause->getClauseKind() != C->getClauseKind()) {
11459 << getOpenMPClauseName(C->getClauseKind())
11460 << getOpenMPClauseName(PrevClause->getClauseKind());
11462 << getOpenMPClauseName(PrevClause->getClauseKind());
11475 if (C->getClauseKind() == OMPC_reduction) {
11481 if (C->getClauseKind() == OMPC_nogroup) {
14799 OpenMPClauseKind ClauseKind = C->getClauseKind();