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

References

tools/clang/lib/Sema/SemaOpenMP.cpp
 5425     assert(!LB && !UB && !Step);
 5429          (LB && LB->isValueDependent()) || (UB && UB->isValueDependent()) ||
 5429          (LB && LB->isValueDependent()) || (UB && UB->isValueDependent()) ||
 5438          UB == nullptr && Step == nullptr && !TestIsLessOp && !TestIsStrictOp);
 5460   assert(LCDecl != nullptr && LB != nullptr && UB == nullptr &&
 5464   UB = NewUB;
 5470   CondDependOnLC = doesDependOnLoopCounter(UB, /*IsInitializer=*/false);
 5511     if (UB && (IsConstZero ||
 5953     Expr *UBVal = UB;
 6213   Expr *LBExpr = TestIsLessOp.getValue() ? LB : UB;
 6214   Expr *UBExpr = TestIsLessOp.getValue() ? UB : LB;
 6341   ExprResult NewUB = tryBuildCapture(SemaRef, UB, Captures);
 6427                       : tryBuildCapture(SemaRef, UB, Captures).get();