1. b8e08860 Add dump() method for SourceRange by Stephen Kelly · 7 years ago
  2. 3124ce7 Add a newline to SourceLocation dump output by Stephen Kelly · 7 years ago
  3. 6907ce2 Remove trailing space by Fangrui Song · 7 years ago
  4. b5f8171 PR37189 Fix incorrect end source location and spelling for a split '>>' token. by Richard Smith · 7 years ago
  5. 25cae5a2 [Basic] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC). by Eugene Zelenko · 8 years ago
  6. fb4a045 Revert "Revert "[NFC] Refactor DiagnosticRenderer to use FullSourceLoc"" by Christof Douma · 8 years ago
  7. cc1c112 Revert "[NFC] Refactor DiagnosticRenderer to use FullSourceLoc" by Christof Douma · 8 years ago
  8. f9d86db [NFC] Refactor DiagnosticRenderer to use FullSourceLoc by Christof Douma · 8 years ago
  9. 9670f84 [NFC] Header cleanup by Mehdi Amini · 9 years ago
  10. 825fb3c Removing spurious semi colons; NFC. by Aaron Ballman · 10 years ago
  11. b694a0d Inline function into only use. by Rafael Espindola · 11 years ago
  12. ef6b007 Only mark dump() function definitions 'used' in debug builds by Alp Toker · 12 years ago
  13. adaf795 PR14581: Make SourceLocation::printToString work, or it will always return an empty string. by Benjamin Kramer · 13 years ago
  14. dc6bb49 Add a SourceLocation::printToString() that returns in a std::string what dump() by Argyrios Kyrtzidis · 13 years ago
  15. e60db7b Move FullSourceLoc::dump into the .cpp file, the used attribute made us emit this into every TU that includes SourceLocation.h. by Benjamin Kramer · 14 years ago
  16. 64ee782 Clean up as many of the comments in Basic I can find to talk in terms of by Chandler Carruth · 14 years ago
  17. d48db21 Rename getInstantiationLineNumber to getExpansionLineNumber in both by Chandler Carruth · 14 years ago
  18. 42f35f9 Rename getInstantiationColumnNumber to getExpansionColumnNumber in both by Chandler Carruth · 14 years ago
  19. 35f5320 Mechanically rename SourceManager::getInstantiationLoc and by Chandler Carruth · 14 years ago
  20. 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
  21. 1cb0de1 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 15 years ago
  22. 453b012 Make sure to always check the result of by Douglas Gregor · 15 years ago
  23. a71b9d0 Update get*LineNumber() and get*ColumnNumber() functions to pass the by Douglas Gregor · 16 years ago
  24. 42fe858 Audit all callers of SourceManager::getCharacterData(); update some of by Douglas Gregor · 16 years ago
  25. 4fb7fbe Audit all getBuffer() callers (for both the FullSourceLoc and by Douglas Gregor · 16 years ago
  26. 0ca3c62 Switch another function to StringRef instead of char pointer pairs. by Benjamin Kramer · 16 years ago
  27. 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  28. 48db39d Remove the serialization code that predates precompiled by Douglas Gregor · 16 years ago
  29. 4095d89 Remove some now-unneeded calls to llvm::errs().flush(). by Daniel Dunbar · 17 years ago
  30. 3ceb7ca Add FullSourceLoc::getDecomposedLoc. by Ted Kremenek · 17 years ago
  31. bd61a95 Include information about compound statements when crashing in sema or the by Chris Lattner · 17 years ago
  32. c25d8a7 improve compatibility with GCC 4.4, patch by Michel Salim (PR3697) by Chris Lattner · 17 years ago
  33. 88ea93e lower the interface to getLineNumber like we did for by Chris Lattner · 17 years ago
  34. e4ad417 make SM::getColumnNumber take a predecomposed FileID/offset, which by Chris Lattner · 17 years ago
  35. bf16554 Add method FullSourceLoc::getBufferData(). by Ted Kremenek · 17 years ago
  36. f1ca7d3 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 17 years ago
  37. cbc35ecb Rename SourceManager::getCanonicalFileID -> getFileID. There is by Chris Lattner · 17 years ago
  38. f809bbd remove the SourceManager:: and FullSourceLoc::getFileEntryForLoc methods. by Chris Lattner · 17 years ago
  39. 91fda39 some minor cleanups to SourceManager, and eliminate the by Chris Lattner · 17 years ago
  40. 71dc14b Rename SourceLocation::getFileID to getChunkID, because it returns by Chris Lattner · 17 years ago
  41. d32480d this massive patch introduces a simple new abstraction: it makes by Chris Lattner · 17 years ago
  42. fb1fd91 Make FullSourceLoc derive from SourceLocation instead of by Chris Lattner · 17 years ago
  43. fcc0a5a elimiante FullSourceLoc::getCanonicalFileID by Chris Lattner · 17 years ago
  44. 7067b4f remove FullSourceLoc::isFileID by Chris Lattner · 17 years ago
  45. 8a42586 more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 17 years ago
  46. 53e384f Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 17 years ago
  47. d9a663a Make some methods const, add some helpers to FullSourceLoc, by Chris Lattner · 17 years ago
  48. 4c31164 * Remove isInSystemHeader() from DiagClient, move it to SourceManager by Nico Weber · 17 years ago
  49. 17acade Added "getCanonicalID()", "isFromSameFile", and "isFromMainFile" to compare by Ted Kremenek · 17 years ago
  50. 406192d Added "getLogicalLineNumber" and "getLogicalColumnNumber" to FullSourceLoc. by Ted Kremenek · 17 years ago
  51. 7a51313 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 18 years ago[Renamed from clang/Basic/SourceLocation.cpp]
  52. 5b12ab8 Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
  53. 1daa3cf TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 18 years ago
  54. 5e2eb26 Simplified Serialization code for SourceLocation and SourceRange, and by Ted Kremenek · 18 years ago
  55. 4edcb4d Implemented serialization of SourceLocation and SourceRange objects. by Ted Kremenek · 18 years ago