1. 37c2e96 c-index-test shouldn't crash when a goto has no matching label. Fixes <rdar://problem/9123493>. by Ted Kremenek · 14 years ago
  2. 3deeb6d Fixed type and declaration source range in presence of typeQuals. by Abramo Bagnara · 14 years ago
  3. f525160 Teach libclang's token-annotation logic about context-sensitive by Douglas Gregor · 14 years ago
  4. a2026c9 Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source range for declarations using postfix types. by Abramo Bagnara · 14 years ago
  5. acba90f Fixed NamespaceDecl source range. by Abramo Bagnara · 14 years ago
  6. ff676cb Fixed source range for all DeclaratorDecl's. by Abramo Bagnara · 14 years ago
  7. 344577e Fixed TypedefDecl and TemplateTypeParameter source range. by Abramo Bagnara · 14 years ago
  8. 4a85a73 Fixed source range for ClassTemplateSpecializationDecl. by Abramo Bagnara · 14 years ago
  9. 77d4ee2 Improved TemplateTypeParmDecl end location. by Abramo Bagnara · 14 years ago
  10. ee4bfd4 Fixed end location of NonTypeTemplateParamDecl. by Abramo Bagnara · 14 years ago
  11. 159c0a0 Finish updated test by Douglas Gregor · 14 years ago
  12. 0f0ea2a Eliminate redundant nested-name-specifiers on by Douglas Gregor · 14 years ago
  13. 5f6bcbe Fixed end source location for LinkageSpecDecl. by Abramo Bagnara · 14 years ago
  14. 0a9beb5 Force CaseStmt to store its child statements in source-code order, by Douglas Gregor · 14 years ago
  15. 75e8504 Fix the source range for a member access expression that includes a by Douglas Gregor · 14 years ago
  16. c314aa4 Teach libclang how to visit the children of a C++ base-class specifier by Douglas Gregor · 14 years ago
  17. b6744ef Push nested-name-specifier source location information into template by Douglas Gregor · 14 years ago
  18. 059101f Push nested-name-specifier source-location information into dependent by Douglas Gregor · 14 years ago
  19. 94fdffa Push nested-name-specifier source-location information into dependent by Douglas Gregor · 14 years ago
  20. 9e87687 Reinstate the introduction of source-location information for by Douglas Gregor · 14 years ago
  21. 2786864 Revert r126748, my second attempt at nested-name-specifier source by Douglas Gregor · 14 years ago
  22. be38c5f Reinstate r126737, extending the generation of type-source location by Douglas Gregor · 14 years ago
  23. 44cd9f9 Revert r126737, the most recent nested-name-specifier location change, for buildbot breakage. by Douglas Gregor · 14 years ago
  24. 239cbb0 Push nested-name-specifier source location information into elaborated by Douglas Gregor · 14 years ago
  25. 2494dd0 Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  26. 40d96a6 Push nested-name-specifier location information into DeclRefExpr and by Douglas Gregor · 14 years ago
  27. 4c9be89 Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  28. f3db29f Push nested-name-specifier source-location information into by Douglas Gregor · 14 years ago
  29. 0cfaf6a Push nested-name-specifier source location information into namespace aliases. by Douglas Gregor · 14 years ago
  30. db99241 Push nested-name-specifier source location information into using directives. by Douglas Gregor · 14 years ago
  31. a8eef31 Direct testing of source-location information on using declarations, via libclang by Douglas Gregor · 14 years ago
  32. c22b5ff Use NestedNameSpecifierLoc within out-of-line variables, function, and by Douglas Gregor · 14 years ago
  33. dc35571 Update UsingDecl, UnresolvedUsingTypenameDecl, and by Douglas Gregor · 14 years ago
  34. 5c722c70 When code-completing a case statement for a switch on a value of by Douglas Gregor · 14 years ago
  35. 813d834 Selector::getIdentifierInfoForSlot() can return NULL values, a fact by Douglas Gregor · 14 years ago
  36. c6daf0b When printing a qualified type, look through a substituted template by Douglas Gregor · 14 years ago
  37. 4706e87 When Parser::ParseExpressionList isn't given a completer, fall back to by Douglas Gregor · 14 years ago
  38. 577cdfd Implement code completion results for the Objective-C Key-Value Coding by Douglas Gregor · 14 years ago
  39. d98abd8 When searching for visible declarations (e.g., for code completion), by Douglas Gregor · 14 years ago
  40. 78bcd91 When trying to provide a code completion item for a call to "super" in by Douglas Gregor · 14 years ago
  41. 830072c Teach code completion to cope with block types written without a by Douglas Gregor · 14 years ago
  42. afc4578 Implement a special code-completion pattern for "IBAction". Fixes by Douglas Gregor · 14 years ago
  43. 68e3c2e When code-completing within a list of declaration specifiers, by Douglas Gregor · 14 years ago
  44. 97d7ff0 When we encounter an Objective-C class name in an expression, followed by Douglas Gregor · 14 years ago
  45. 0895d15 When reading the AST, delay loading of the redeclaration chain to avoid deeply nested calls. by Argyrios Kyrtzidis · 14 years ago
  46. 52d6bbe Don't crash when generating USRs for ObjC methods in protocols. by Ted Kremenek · 14 years ago
  47. cd9175d USRs for Objective-C methods use the USR of the @interface as their base, not the USR of the class category or extension. by Ted Kremenek · 14 years ago
  48. 4814fb5 If any Fix-Its attached to a diagnostic have invalid source locations by Douglas Gregor · 14 years ago
  49. 2a11469 Test for previous commit by Douglas Gregor · 14 years ago
  50. e72fb6f Add libclang functions to determine the const/volatile/restrict by Douglas Gregor · 14 years ago
  51. fbcfeea Eliminate the use of getTypeForDecl from clang_getCursorType() and by Douglas Gregor · 14 years ago
  52. ba73ada Teach libclang to generate USRs containing parameter packs and pack expansions. by Douglas Gregor · 14 years ago
  53. 94d9629 Teach libclang about SizeOfPackExpr. by Douglas Gregor · 14 years ago
  54. 0b53cf8 Don't silently drop warning flags passed in to by Douglas Gregor · 14 years ago
  55. 1d5d0b9 Add the location of the right parenthesis of a C++ named cast by Douglas Gregor · 14 years ago
  56. 112c330 Fold -fobjc-nonfragile-abi2 into -fobjc-nonfragile-abi. // rdar://8818375 by Fariborz Jahanian · 14 years ago
  57. 0fe5397 When in code-completion, skip obj-c method bodies for speed up. by Argyrios Kyrtzidis · 14 years ago
  58. 3437f1f Speed up code-completion by skipping function bodies. by Argyrios Kyrtzidis · 14 years ago
  59. 32038bb When determining which preprocessed entities to traverse in libclang, by Douglas Gregor · 14 years ago
  60. 52e64c8 Fix test to be platform-agnostic by Douglas Gregor · 14 years ago
  61. bdb2d50 Fix a major inconsistency in the representation of Objective-C by Douglas Gregor · 14 years ago
  62. 2fcbcef Implement BlockDecl::getSourceRange(). The bogus source-range by Douglas Gregor · 14 years ago
  63. 124b3de add missing newlines at end of file. by Chris Lattner · 14 years ago
  64. c7b5ed6 Swap the order of the condition and body of a do-while statement in by Douglas Gregor · 14 years ago
  65. bbca85d Avoid to emit redundant implicit cast for enum constants init expressions. by Abramo Bagnara · 14 years ago
  66. 85fe156 In clang_getCursor(), don't override a preprocessing cursor within by Douglas Gregor · 14 years ago
  67. 7344921 Eliminate duplicate code completions for properties. by Douglas Gregor · 14 years ago
  68. 70c2335 Don't walk the translation unit context to produce protocol names when by Douglas Gregor · 14 years ago
  69. 0a03a3f Fix bug where annotate tokens was not working for BinaryTypeTraitExpr. by Francois Pichet · 14 years ago
  70. 2346789 Fix test that didn't really test anything. by Francois Pichet · 14 years ago
  71. 89d9980 When using a precompiled preamble with detailed preprocessing records, by Douglas Gregor · 14 years ago
  72. aa5f135 Extend the libclang diagnostic API to provide information about the by Douglas Gregor · 14 years ago
  73. cf54426 Do not produce "purely informative" code completion results for by Douglas Gregor · 14 years ago
  74. 89629a7 When libclang is walking a member access expression, don't walk into by Douglas Gregor · 14 years ago
  75. 6653798 When comparing the source range of a declaration against the region of by Douglas Gregor · 14 years ago
  76. a4ffd85 For an Objective-C @synthesize statement, e.g., by Douglas Gregor · 14 years ago
  77. e3c60a7 Fix source-range information for Objective-C properties. Previously, by Douglas Gregor · 14 years ago
  78. 8f0889c Fix use of an uninitialized SourceLocation because DeclarationNameLoc failed to completely zero-initialize itself. by Ted Kremenek · 14 years ago
  79. 473f674 Temporarily remove this test. It is causing an assertion failure in the builtbot. by Ted Kremenek · 14 years ago
  80. ab97961 Annotate tokens in a separate thread to avoid blowing out stack space. While the CursorVisitor by Ted Kremenek · 14 years ago
  81. c0e1d92 Generalize data-recursive visitation in CursorVisitor to also handle MemberExprs by Ted Kremenek · 14 years ago
  82. e47be3e Improve ASTUnit's capture of diagnostics so that the by Douglas Gregor · 14 years ago
  83. 826faa2 Replace UsingDecl's SmallPtrSet of UsingShadowDecls with a linked list to avoid leaking memory. by Argyrios Kyrtzidis · 14 years ago
  84. a9b06d4 ntroduce clang_getSpellingLocation() into libclang, to provide the by Douglas Gregor · 14 years ago
  85. 27a31fe Revert r118492, which didn't update all of its tests accordingly by Douglas Gregor · 14 years ago
  86. b627871 Introduce clang_getSpellingLocation() into libclang, to provide the by Douglas Gregor · 14 years ago
  87. 9b0ba87 Teach code completion not to include out-of-line declarations and by Douglas Gregor · 14 years ago
  88. 04c450c Add CursorVisitor::VisitBinaryOperator() to explicitly handle the case where we can blow out the stack due by Ted Kremenek · 14 years ago
  89. da89264 If an instance method messages is sending to an expression of type Class, by Douglas Gregor · 14 years ago
  90. 93798e2 Teach clang_getCursorReferenced() that a by Douglas Gregor · 14 years ago
  91. 40749ee Improve source-location information for CXXConstructExpr nodes, by by Douglas Gregor · 14 years ago
  92. d8c370c Hack to workaround deficiency in ObjC ASTs. Functions and variables may be declared by Ted Kremenek · 14 years ago
  93. ca45da0 Teach code completion to provide property results when the property by Douglas Gregor · 14 years ago
  94. 007a7c9 Encapsulate within CXCursor the notion of whether a VarDecl* is the first Decl in a DeclGroup. We use this by Ted Kremenek · 14 years ago
  95. 428edaf Improve the tracking of source locations for parentheses in constructor calls. by Chandler Carruth · 14 years ago
  96. 38f28c1 Teach clang_getCursorReferenced() and friends about BlockDeclRefExprs. by Douglas Gregor · 14 years ago
  97. 1fb0caa Substantially revise how clang computes the visibility of a declaration to by John McCall · 14 years ago
  98. d93fae6 Update clang_getCursor() test to check searches on include directives by Douglas Gregor · 14 years ago
  99. 4419b67 Improve the implementation of libclang's token-annotation logic for by Douglas Gregor · 14 years ago
  100. ecdcb88 Extend the preprocessing record and libclang with support for by Douglas Gregor · 14 years ago