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

Declarations

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
   38 class BlockCounter;

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h
   46     BlockCounter GetEmptyCounter();
   47     BlockCounter IncrementCount(BlockCounter BC,
   47     BlockCounter IncrementCount(BlockCounter BC,
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
   85   BlockCounter::Factory BCounterFactory;
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
   29   BlockCounter counter;
   34   WorkListUnit(ExplodedNode *N, BlockCounter C,
   41   explicit WorkListUnit(ExplodedNode *N, BlockCounter C)
   51   BlockCounter getBlockCounter() const { return counter; }
   61   BlockCounter CurrentCounter;
   79   void setBlockCounter(BlockCounter C) { CurrentCounter = C; }
   80   BlockCounter getBlockCounter() const { return CurrentCounter; }
tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp
   72 BlockCounter
   73 BlockCounter::Factory::IncrementCount(BlockCounter BC,
   81 BlockCounter
tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
  282   BlockCounter Counter = WList->getBlockCounter();