1. 3cdff23 Add the BlockDecl to the DeclContext. by Ted Kremenek · 15 years ago
  2. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  3. 459cc23 Update CMake for CallGraph.cpp move. by Daniel Dunbar · 15 years ago
  4. 8fd57fe Fix layering violation by moving Analysis/CallGraph to Index by Daniel Dunbar · 15 years ago
  5. 85b4521 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 15 years ago
  6. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  7. 6490ae5 Silence some warnings produced by Clang, and add a missing header by Douglas Gregor · 15 years ago
  8. 5ab7517 Preserve type source information in sizeof/alignof expressions, and pass it by John McCall · 15 years ago
  9. f96b524 Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <rdar://problem/7310688>. by Steve Naroff · 15 years ago
  10. ba6a9bd Preserve type source information in TypedefDecls. Preserve it across by John McCall · 15 years ago
  11. 54e14c4 When building types from declarators, instead of building two types (one for by John McCall · 15 years ago
  12. 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
  13. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  14. 51bd803 Clone the full Type hierarchy into the TypeLoc hierarchy. Normalize by John McCall · 15 years ago
  15. 14ea569 Installation of Clang libraries and headers, from Axel Naumann! by Douglas Gregor · 15 years ago
  16. 0c41180 Pull TypeLocVisitor into its own header file. by Argyrios Kyrtzidis · 15 years ago
  17. b116884 Keep track of type references in DeclReferenceMap. by Argyrios Kyrtzidis · 15 years ago
  18. 09d8a95 In ASTVisitor, call the correct base methods. by Argyrios Kyrtzidis · 15 years ago
  19. 5a70ea6 Resolve a source location inside the return type of a functon. by Argyrios Kyrtzidis · 15 years ago
  20. ef6cd67 Resolve a source location that is inside a type declarator. by Argyrios Kyrtzidis · 15 years ago
  21. f4526e3 Modify ASTLocation and apart from being a Decl or Stmt, allow it to also be: by Argyrios Kyrtzidis · 15 years ago
  22. 1ebd740 Add more const-goodness to ASTLocation. by Argyrios Kyrtzidis · 15 years ago
  23. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  24. 7ebe971 Don't install Clang libraries. by Douglas Gregor · 15 years ago
  25. 8c4dc1f For a CXXOperatorCallExpr, fix the order that StmtLocResolver uses to check subexpressions. by Argyrios Kyrtzidis · 15 years ago
  26. 4b5acc5 Lexically order files. by Ted Kremenek · 15 years ago
  27. ab5f311 Fix Selector <-> GlobalSelector conversion. by Argyrios Kyrtzidis · 15 years ago
  28. bebc467 Fix gcc warning. by Eli Friedman · 15 years ago
  29. 19b732a Add support for ObjC message expressions, in the Analyzer: by Argyrios Kyrtzidis · 15 years ago
  30. 1e16847 Update CMake. by Argyrios Kyrtzidis · 15 years ago
  31. 87bcb50 Support ObjC methods as Entities. by Argyrios Kyrtzidis · 15 years ago
  32. d88284b Index the selectors and provide the translation units that contain them by Argyrios Kyrtzidis · 15 years ago
  33. 557b1d2 Introduce SelectorMap whose purpose is to map selectors to objc methods and message exprs, by Argyrios Kyrtzidis · 15 years ago
  34. ad6e5d1 Find references inside blocks. by Argyrios Kyrtzidis · 15 years ago
  35. 81e8456 Use helper class ASTVisitor to fully traverse an AST. by Argyrios Kyrtzidis · 15 years ago
  36. 27bd0dc Introduce the GlobalSelector class in the Indexing library. by Argyrios Kyrtzidis · 15 years ago
  37. dc1792c Use an IdentifierTable for names used for Entities. by Argyrios Kyrtzidis · 15 years ago
  38. 7f4656e -Introduce the idx::Analyzer class used for getting indexing information, like finding by Argyrios Kyrtzidis · 15 years ago
  39. 40c0e73 Introduce TULocation and TULocationHandler classes. by Argyrios Kyrtzidis · 15 years ago
  40. 52f1d47 Modify the Indexer class so that it can return the TranslationUnit that internal by Argyrios Kyrtzidis · 15 years ago
  41. 6dbbc0e Constify ASTLocation::print. by Argyrios Kyrtzidis · 15 years ago
  42. 94431b5 Introduce a helper template for the Handler classes and use it instead by Argyrios Kyrtzidis · 15 years ago
  43. daf253d Add an assert. by Argyrios Kyrtzidis · 15 years ago
  44. 16d8bcf Accept Handler objects in parameters as references. by Argyrios Kyrtzidis · 15 years ago
  45. 77b4a79 Rename EntityHandler::HandleEntity to Handle. by Argyrios Kyrtzidis · 15 years ago
  46. b17dc46 -Make IndexProvider an abstract interface for getting indexing information. by Argyrios Kyrtzidis · 15 years ago
  47. 6d8f56f Constify methods. by Zhongxing Xu · 15 years ago
  48. f785643 constify methods. by Zhongxing Xu · 15 years ago
  49. 4c7c5a1 Remove the ASTContext parameter from Entity::getPrintableName(). by Argyrios Kyrtzidis · 15 years ago
  50. 1f71727 Keep only canonical Decls in Entities. by Argyrios Kyrtzidis · 15 years ago
  51. f7cf15c Change the semantics for Entity. by Argyrios Kyrtzidis · 15 years ago
  52. 80ede1d Handle references from ObjCIvarRefExprs. by Argyrios Kyrtzidis · 15 years ago
  53. 89021b0 The children statements might be NULL. Check for this case in by Zhongxing Xu · 15 years ago
  54. dc50c64 Introduce ASTLocation::getReferencedDecl(), for getting the declaration that the ASTLocation references. by Argyrios Kyrtzidis · 15 years ago
  55. 9b9685d Handle invalid ASTLocations instead of asserting. by Argyrios Kyrtzidis · 15 years ago
  56. 21b01c7 Remove StmtLocResolver::VisitObjCIvarRefExpr, it was only there to avoid returning an implicit 'self' instead of the ivar. by Argyrios Kyrtzidis · 15 years ago
  57. b57a4fe Move the functionality of ASTContext::getCanonicalDecl(), into a virtual method Decl::getCanonicalDecl(). by Argyrios Kyrtzidis · 15 years ago
  58. 0df1347 Resolve a location that is inside an ObjCMethodDecl. by Argyrios Kyrtzidis · 15 years ago
  59. cc1ccb7 Make ASTLocation accept a Stmt that is inside an ObjCMethodDecl. by Argyrios Kyrtzidis · 15 years ago
  60. 7e4fe3b Search through all Decls that are DeclContexts. by Argyrios Kyrtzidis · 15 years ago
  61. 56aac3f Rename Entity::getName() to Entity::getPrintableName() to make its purpose by Zhongxing Xu · 15 years ago
  62. 7f66bd2 As suggested by Argyrios, revert r76159 and make "FindImmediateParent" by Zhongxing Xu · 15 years ago
  63. adfc8d1 Relax the assertion in ASTLocation's ctor: if the decl is not the immediate by Zhongxing Xu · 15 years ago
  64. ada4542 If we are not doing a Debug build, no need for the debugging print methods. by Argyrios Kyrtzidis · 15 years ago
  65. dc0b11e Check whether the IdentifierInfo is null, before using it. by Argyrios Kyrtzidis · 15 years ago
  66. 53363b2 Add getName() method to Entity. by Zhongxing Xu · 15 years ago
  67. 2e46aee In ResolveLocationInAST, handle locations that are inside TagDecl definitions. by Argyrios Kyrtzidis · 15 years ago
  68. 9e6bc06 In DeclReferenceMap, map FieldDecls to the MemberExprs that reference them. by Argyrios Kyrtzidis · 15 years ago
  69. c3a6540 fix file headers. by Chris Lattner · 15 years ago
  70. a6488a1 Simplify a bit by using functions instead of checking enum values. No functionality change. by Argyrios Kyrtzidis · 15 years ago
  71. bd2ab6e Refactor DeclLocResolver/StmtLocResolver into a more functional style by removing the search state by Argyrios Kyrtzidis · 15 years ago
  72. 0daea7a Update CMake files. by Argyrios Kyrtzidis · 15 years ago
  73. 755c6b4 Some changes to ASTLocation's methods by Argyrios Kyrtzidis · 15 years ago
  74. 818e15b Move the 'ResolveLocationInAST' function from the Frontend library to the Index library. by Argyrios Kyrtzidis · 15 years ago
  75. ccbcb70 Move ASTLocation and DeclReferenceMap from the AST library to the Index library. by Argyrios Kyrtzidis · 15 years ago
  76. 9eec4ed Introduce the 'Index' library. by Argyrios Kyrtzidis · 15 years ago