Home | History | Annotate | Download | only in Sema

Lines Matching refs:Level

216                       unsigned Level);
218 /// \brief Returns true if the directive at level \Level matches in the
222 unsigned Level);
351 assert(Stack.size() > 1 && "Target level is 0");
692 unsigned Level) {
696 ++Level;
700 if (std::distance(StartI, EndI) <= (int)Level)
702 std::advance(StartI, Level);
709 unsigned Level) {
711 ++Level;
714 if (std::distance(StartI, EndI) <= (int)Level)
716 std::advance(StartI, Level);
880 bool Sema::isOpenMPPrivateVar(VarDecl *VD, unsigned Level) {
883 VD, [](OpenMPClauseKind K) -> bool { return K == OMPC_private; }, Level);
886 bool Sema::isOpenMPTargetCapturedVar(VarDecl *VD, unsigned Level) {
888 // Return true if the current level is no longer enclosed in a target region.
891 DSAStack->hasExplicitDirective(isOpenMPTargetDirective, Level);