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

Overridden By

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h
  131   unsigned computeComplexity() const override {
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
  272   unsigned computeComplexity() const override {
  348   unsigned computeComplexity() const override {
  391   unsigned computeComplexity() const override {
  435   unsigned computeComplexity() const override {

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
  274       Complexity = 1 + Operand->computeComplexity();
  350       Complexity = 1 + LHS->computeComplexity();
  393       Complexity = 1 + RHS->computeComplexity();
  437       Complexity = RHS->computeComplexity() + LHS->computeComplexity();
  437       Complexity = RHS->computeComplexity() + LHS->computeComplexity();
tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
   69     if (!CondS || CondS->computeComplexity() > ComplexityThreshold)
tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
  390       (symLHS->computeComplexity() + symRHS->computeComplexity()) <  MaxComp)
  390       (symLHS->computeComplexity() + symRHS->computeComplexity()) <  MaxComp)
  393   if (symLHS && symLHS->computeComplexity() < MaxComp)
  397   if (symRHS && symRHS->computeComplexity() < MaxComp)