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

References

tools/clang/include/clang/Sema/DeclSpec.h
 1899   SourceRange getSourceRange() const LLVM_READONLY { return Range; }
 1900   SourceLocation getBeginLoc() const LLVM_READONLY { return Range.getBegin(); }
 1901   SourceLocation getEndLoc() const LLVM_READONLY { return Range.getEnd(); }
 1903   void SetSourceRange(SourceRange R) { Range = R; }
 1908       Range.setBegin(Loc);
 1913       Range.setEnd(Loc);
 1920     if (Range.getBegin().isInvalid())
 1921       Range.setBegin(SR.getBegin());
 1923       Range.setEnd(SR.getEnd());
 1930     Range = DS.getSourceRange();
tools/clang/lib/Sema/DeclSpec.cpp
  289   Range.setEnd(RSquareLoc);