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

References

tools/clang/tools/extra/clang-tidy/readability/ContainerSizeEmptyCheck.cpp
  141         Value = Literal->getValue().getLimitedValue();
  145       Value =
  152     if (Value > 1)
  155     if (Value == 1 && (OpCode == BinaryOperatorKind::BO_EQ ||
  160     if ((OpCode == BinaryOperatorKind::BO_GE && Value == 0 && ContainerIsLHS) ||
  161         (OpCode == BinaryOperatorKind::BO_LE && Value == 0 && !ContainerIsLHS))
  165     if (Value == 1) {
  174     if (OpCode == BinaryOperatorKind::BO_NE && Value == 0)