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

References

tools/clang/include/clang/Sema/Scope.h
  266   unsigned getDepth() const { return Depth; }
  454   bool Contains(const Scope& rhs) const { return Depth < rhs.Depth; }
  454   bool Contains(const Scope& rhs) const { return Depth < rhs.Depth; }
tools/clang/lib/Sema/Scope.cpp
   34     Depth = parent->Depth + 1;
   34     Depth = parent->Depth + 1;
   47     Depth = 0;
  190   OS << "Depth: " << Depth << '\n';