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

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
   31     assert(from <= to);
   34     return *first <= v && v <= *second;
   34     return *first <= v && v <= *second;
tools/clang/lib/AST/ExprConstant.cpp
 2576   case BO_LE: Result = LHS <= RHS; return true;
 4431     if (LHS <= Value && Value <= RHS) {
 4431     if (LHS <= Value && Value <= RHS) {
tools/clang/lib/Analysis/CFG.cpp
 1023         return TryResult(Value1 <= Value2);
tools/clang/lib/Lex/PPExpressions.cpp
  716       Res = LHS.Val <= RHS.Val;
tools/clang/lib/Sema/SemaChecking.cpp
10544   bool isContiguous() const { return PromotedMin <= PromotedMax; }
10574       if (Value <= PromotedMax) return InRange;
tools/clang/lib/Sema/SemaInit.cpp
 2930   while (DesignatedStartIndex <= DesignatedEndIndex) {
tools/clang/lib/Sema/SemaOverload.cpp
 2132             (FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
 2138         if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {
tools/clang/lib/Sema/SemaStmt.cpp
 1059             LoVal <= ConstantCondValue &&
 1060             ConstantCondValue <= HiVal)
 1097         if (i && CRLo <= HiVals[i-1]) {
 1217           if (EI->first <= Hi)
tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
  255       assert(Min <= Max);
  289       assert(MinusInf <= Left);
  297       assert(Right <= PlusInf);
  306       assert(Min <= Max);
tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
  275       return &getTruthValue( V1 <= V2 );
tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
   84       if (Lower <= Upper)
  135       if (Lower <= Upper)
  164   if (Lower <= Upper)
tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
  123     bool IsInRange = IntVal >= From && IntVal <= To;
tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
  352   return (I <= Max) && (I >= -Max);