Home | History | Annotate | Download | only in Support

Lines Matching refs:SMLoc

52                                    SMLoc IncludeLoc,
72 int SourceMgr::FindBufferContainingLoc(SMLoc Loc) const {
84 unsigned SourceMgr::FindLineNumber(SMLoc Loc, int BufferID) const {
108 for (; SMLoc::getFromPointer(Ptr) != Loc; ++Ptr)
124 void SourceMgr::PrintIncludeStack(SMLoc IncludeLoc, raw_ostream &OS) const {
125 if (IncludeLoc == SMLoc()) return; // Top of stack.
143 SMDiagnostic SourceMgr::GetMessage(SMLoc Loc, SourceMgr::DiagKind Kind,
180 R.Start = SMLoc::getFromPointer(LineStart);
182 R.End = SMLoc::getFromPointer(LineEnd);
184 // Translate from SMLoc ranges to column ranges.
195 void SourceMgr::PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind,
218 SMDiagnostic::SMDiagnostic(const SourceMgr &sm, SMLoc L, const std::string &FN,