1. ef82254 Update Clang for rebase to r212749. by Stephen Hines · 10 years ago
  2. 6bcf27b Update Clang for 3.5 rebase (r209713). by Stephen Hines · 10 years ago
  3. 651f13c Updated to Clang 3.5a. by Stephen Hines · 10 years ago
  4. d4315fe libclang does not depend directly on clangFormat; but clangIndex does by Dmitri Gribenko · 11 years ago
  5. 86cfda2 Documentation parsing: move comment-to-XML conversion routines to libIndex by Dmitri Gribenko · 11 years ago
  6. e845834 Avoid using the 'index' namespace as scope. by Argyrios Kyrtzidis · 11 years ago
  7. 2845a67 Rename libIDE to libIndex. by Argyrios Kyrtzidis · 11 years ago
  8. 87e154c Remove the unused, unmaintained, incomplete 'Index' library. by Douglas Gregor · 12 years ago
  9. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  10. 067cc40 Unbreak the CMake builds following the CallGraph change. by Anna Zaks · 12 years ago
  11. 190f600 [analyzer] Rename clang::CallGraph into clang::idx::CallGraph + rename by Anna Zaks · 12 years ago
  12. 3026348 More dead code removal (using -Wunreachable-code) by David Blaikie · 12 years ago
  13. 561d3ab Remove unnecessary default cases in switches over enums. by David Blaikie · 12 years ago
  14. 60ef308 Replace all comparisons between ObjCInterfaceDecl pointers with calls by Douglas Gregor · 12 years ago
  15. b8989f2 Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 13 years ago
  16. eb2d1f1 Removing a bunch of dead returns/breaks after llvm_unreachables. by David Blaikie · 13 years ago
  17. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  18. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  19. 686775d now that we have a centralized place to do so, add some using declarations for by Chris Lattner · 13 years ago
  20. 10620eb Modify some deleted function methods to better reflect reality: by Sean Hunt · 13 years ago
  21. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  22. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  23. 7502c1d Give some convenient idiomatic accessors to Stmt::child_range and by John McCall · 13 years ago
  24. 886e160 CMake: LLVM_NO_RTTI must be obsolete now! by NAKAMURA Takumi · 13 years ago
  25. b3decb6 Fix CMake clangIndex library dependencies, from Logan Chien by Douglas Gregor · 14 years ago
  26. 560a921 Revert "CMake: Update to use standard CMake dependency tracking facilities instead" by Michael J. Spencer · 14 years ago
  27. 5a7f349 CMake: Update to use standard CMake dependency tracking facilities instead by Michael J. Spencer · 14 years ago
  28. ec9bf47 Clean up CMake dependencies by Douglas Gregor · 14 years ago
  29. bfae8bd Clean up some of the CMake dependencies by Douglas Gregor · 14 years ago
  30. d931b08 De-memberify the VarDecl and FunctionDecl StorageClass enums. by John McCall · 14 years ago
  31. 9a90d79 Remove unused location-to-AST-node resolver. libclang's implementation supercedes it by Douglas Gregor · 14 years ago
  32. 9638eef BUILD_ARCHIVE is the default for libraries, no need to set it. by Chris Lattner · 14 years ago
  33. dc01a15 Collect function definitions in the Indexer when indexing through the ASTs. by Zhongxing Xu · 14 years ago
  34. 6c47a9b Local variables have no linkage, make invalid Entities. by Zhongxing Xu · 14 years ago
  35. 8d26bb7 Refrase comments. by Zhongxing Xu · 14 years ago
  36. c8822e0 Although in C++ class name has external linkage, usually the definition of the by Zhongxing Xu · 14 years ago
  37. 423030c Make FieldDecl an invalid Entity since it has no linkage. by Zhongxing Xu · 14 years ago
  38. 139d0b3 Indexer: make FieldDecl an internal Entity. by Zhongxing Xu · 14 years ago
  39. 6d956df Change CallGraph::Prog to be a reference. idx::Program means to be a global object to the Index library. by Zhongxing Xu · 14 years ago
  40. f24f3d1 Simplify libIndex Makefile, which doesn't need to worry about altivec support. by Daniel Dunbar · 14 years ago
  41. c4dec1c Makefiles: Set Clang CPP compiler flags in a single location, instead of scattered throughout the project Makefiles. by Daniel Dunbar · 14 years ago
  42. afed099 Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile. by Daniel Dunbar · 14 years ago
  43. bd054db Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRange -> getSourceRange for TypeLoc. by Abramo Bagnara · 14 years ago
  44. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  45. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 14 years ago
  46. 900fc63 Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 14 years ago
  47. 3352406 Allow users to set CPPFLAGS and CXXFLAGS on the make command line. by Jeffrey Yasskin · 14 years ago
  48. 2781deb Cleanup using StringRef by Kovarththanan Rajaratnam · 14 years ago
  49. c2350e5 Extend ObjCMessageExpr for class method sends with the source location by Douglas Gregor · 14 years ago
  50. 0bb46d2 -fno-rtti is now the default. by Chris Lattner · 14 years ago
  51. f2c87bd Add -cursor-at=file:line:column command line option to c-index-test, by Douglas Gregor · 14 years ago
  52. 3cdff23 Add the BlockDecl to the DeclContext. by Ted Kremenek · 14 years ago
  53. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  54. 459cc23 Update CMake for CallGraph.cpp move. by Daniel Dunbar · 15 years ago
  55. 8fd57fe Fix layering violation by moving Analysis/CallGraph to Index by Daniel Dunbar · 15 years ago
  56. 85b4521 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 15 years ago
  57. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  58. 6490ae5 Silence some warnings produced by Clang, and add a missing header by Douglas Gregor · 15 years ago
  59. 5ab7517 Preserve type source information in sizeof/alignof expressions, and pass it by John McCall · 15 years ago
  60. f96b524 Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <rdar://problem/7310688>. by Steve Naroff · 15 years ago
  61. ba6a9bd Preserve type source information in TypedefDecls. Preserve it across by John McCall · 15 years ago
  62. 54e14c4 When building types from declarators, instead of building two types (one for by John McCall · 15 years ago
  63. 6a6de8b Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searching). Without a 'relativeDecl', the algorithm is n-squared. For example, running the following command on 'Large.m' takes hours without a 'relatvieDecl'. by Steve Naroff · 15 years ago
  64. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  65. 51bd803 Clone the full Type hierarchy into the TypeLoc hierarchy. Normalize by John McCall · 15 years ago
  66. 14ea569 Installation of Clang libraries and headers, from Axel Naumann! by Douglas Gregor · 15 years ago
  67. 0c41180 Pull TypeLocVisitor into its own header file. by Argyrios Kyrtzidis · 15 years ago
  68. b116884 Keep track of type references in DeclReferenceMap. by Argyrios Kyrtzidis · 15 years ago
  69. 09d8a95 In ASTVisitor, call the correct base methods. by Argyrios Kyrtzidis · 15 years ago
  70. 5a70ea6 Resolve a source location inside the return type of a functon. by Argyrios Kyrtzidis · 15 years ago
  71. ef6cd67 Resolve a source location that is inside a type declarator. by Argyrios Kyrtzidis · 15 years ago
  72. f4526e3 Modify ASTLocation and apart from being a Decl or Stmt, allow it to also be: by Argyrios Kyrtzidis · 15 years ago
  73. 1ebd740 Add more const-goodness to ASTLocation. by Argyrios Kyrtzidis · 15 years ago
  74. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  75. 7ebe971 Don't install Clang libraries. by Douglas Gregor · 15 years ago
  76. 8c4dc1f For a CXXOperatorCallExpr, fix the order that StmtLocResolver uses to check subexpressions. by Argyrios Kyrtzidis · 15 years ago
  77. 4b5acc5 Lexically order files. by Ted Kremenek · 15 years ago
  78. ab5f311 Fix Selector <-> GlobalSelector conversion. by Argyrios Kyrtzidis · 15 years ago
  79. bebc467 Fix gcc warning. by Eli Friedman · 15 years ago
  80. 19b732a Add support for ObjC message expressions, in the Analyzer: by Argyrios Kyrtzidis · 15 years ago
  81. 1e16847 Update CMake. by Argyrios Kyrtzidis · 15 years ago
  82. 87bcb50 Support ObjC methods as Entities. by Argyrios Kyrtzidis · 15 years ago
  83. d88284b Index the selectors and provide the translation units that contain them by Argyrios Kyrtzidis · 15 years ago
  84. 557b1d2 Introduce SelectorMap whose purpose is to map selectors to objc methods and message exprs, by Argyrios Kyrtzidis · 15 years ago
  85. ad6e5d1 Find references inside blocks. by Argyrios Kyrtzidis · 15 years ago
  86. 81e8456 Use helper class ASTVisitor to fully traverse an AST. by Argyrios Kyrtzidis · 15 years ago
  87. 27bd0dc Introduce the GlobalSelector class in the Indexing library. by Argyrios Kyrtzidis · 15 years ago
  88. dc1792c Use an IdentifierTable for names used for Entities. by Argyrios Kyrtzidis · 15 years ago
  89. 7f4656e -Introduce the idx::Analyzer class used for getting indexing information, like finding by Argyrios Kyrtzidis · 15 years ago
  90. 40c0e73 Introduce TULocation and TULocationHandler classes. by Argyrios Kyrtzidis · 15 years ago
  91. 52f1d47 Modify the Indexer class so that it can return the TranslationUnit that internal by Argyrios Kyrtzidis · 15 years ago
  92. 6dbbc0e Constify ASTLocation::print. by Argyrios Kyrtzidis · 15 years ago
  93. 94431b5 Introduce a helper template for the Handler classes and use it instead by Argyrios Kyrtzidis · 15 years ago
  94. daf253d Add an assert. by Argyrios Kyrtzidis · 15 years ago
  95. 16d8bcf Accept Handler objects in parameters as references. by Argyrios Kyrtzidis · 15 years ago
  96. 77b4a79 Rename EntityHandler::HandleEntity to Handle. by Argyrios Kyrtzidis · 15 years ago
  97. b17dc46 -Make IndexProvider an abstract interface for getting indexing information. by Argyrios Kyrtzidis · 15 years ago
  98. 6d8f56f Constify methods. by Zhongxing Xu · 15 years ago
  99. f785643 constify methods. by Zhongxing Xu · 15 years ago
  100. 4c7c5a1 Remove the ASTContext parameter from Entity::getPrintableName(). by Argyrios Kyrtzidis · 15 years ago