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

References

tools/clang/include/clang/Basic/SourceLocation.h
  206   SourceLocation getEnd() const { return E; }
  209   void setEnd(SourceLocation e) { E = e; }
  211   bool isValid() const { return B.isValid() && E.isValid(); }
  215     return B == X.B && E == X.E;
  215     return B == X.B && E == X.E;
  219     return B != X.B || E != X.E;
  219     return B != X.B || E != X.E;
tools/clang/lib/Basic/SourceLocation.cpp
  121   if (B != E) {
  123     PrintDifference(OS, SM, E, PrintedLoc);