1. 428edaf Improve the tracking of source locations for parentheses in constructor calls. by Chandler Carruth · 14 years ago
  2. 38f28c1 Teach clang_getCursorReferenced() and friends about BlockDeclRefExprs. by Douglas Gregor · 14 years ago
  3. 1fb0caa Substantially revise how clang computes the visibility of a declaration to by John McCall · 14 years ago
  4. d93fae6 Update clang_getCursor() test to check searches on include directives by Douglas Gregor · 14 years ago
  5. 4419b67 Improve the implementation of libclang's token-annotation logic for by Douglas Gregor · 14 years ago
  6. ecdcb88 Extend the preprocessing record and libclang with support for by Douglas Gregor · 14 years ago
  7. 8ec904c Tweak code-completion result priorities, so that exact and similar by Douglas Gregor · 14 years ago
  8. a5450a0 Fix the translation of the PCC_ForInit code-completion context for by Douglas Gregor · 14 years ago
  9. 75ab414 Provide code completion for types after the '^' that starts a block literal. by Douglas Gregor · 14 years ago
  10. c7b7b7a Introduce code completion results for Objective-C methods, both when by Douglas Gregor · 14 years ago
  11. ea76618 When providing code completions of Objective-C method declarations by Douglas Gregor · 14 years ago
  12. 8b380af Reverting r116493: removes a test that failed on clang selfhost and msvc by Andrew Trick · 14 years ago
  13. f34553d Test case for r116439 by David Chisnall · 14 years ago
  14. 4cd912a When we load an ASTUnit from command-line arguments, hold on to the by Douglas Gregor · 14 years ago
  15. c7f3961 This test should now work on windows, since we're no longer using temporary files badly by Douglas Gregor · 14 years ago
  16. 32be4a5 Switch c-index-test from clang_codeComplete() over to by Douglas Gregor · 14 years ago
  17. b10daed Eliminate clang_setUseExternalASTGeneration() from libclang. Between by Douglas Gregor · 14 years ago
  18. 90c121c Remove a rogue typo by Douglas Gregor · 14 years ago
  19. 6309737 Register the __builtin_va_list_type node when we parse it, rather than by Douglas Gregor · 14 years ago
  20. c2760bc When providing a block literal as a code completion for a by Douglas Gregor · 14 years ago
  21. 358559d Introduce a new libclang function, clang_getCursorDisplayName(), which by Douglas Gregor · 14 years ago
  22. 3f0fee3 Teach clang_getCursorType() about base specifiers and other references by Douglas Gregor · 14 years ago
  23. 1b0f7af Provide proper source location and range information for C++ base by Douglas Gregor · 14 years ago
  24. db1314e Teach clang_getCursorReferenced() about Objective-C property reference by Douglas Gregor · 14 years ago
  25. 9f59234 Extend libclang with an API that determines, given a C++ virtual by Douglas Gregor · 14 years ago
  26. 4949927 Add test case for <rdar://problem/8452791> (fixed in r114392). by Ted Kremenek · 14 years ago
  27. 76dc889 When setting the globally-visible declarations for a particular by Douglas Gregor · 14 years ago
  28. 1909dfd Remove this test for now until I figure out how to get it to work with c-index-test in a portable way. by Ted Kremenek · 14 years ago
  29. 84906b2 Pass -fobjc-nonfragile-abi2 in test. by Ted Kremenek · 14 years ago
  30. fc320e3 Since this test depends on default ivar synthesis, specify the target triple. This hopefully unbreaks the buildbot by Ted Kremenek · 14 years ago
  31. 4e42972 Update comment in test with reference to bug report. by Ted Kremenek · 14 years ago
  32. 2a6af6b Default synthesized ivars don't really have a location in the source. Using the location of the @implementation by Ted Kremenek · 14 years ago
  33. 52779fb Synchronize globally-cached code completion results with the results by Douglas Gregor · 14 years ago
  34. 0d22d22 Add test case for c-index-test showing that @property declarations added in class extensions don't get reported by Ted Kremenek · 14 years ago
  35. 4a2e9ea For properties declared in a @protocol and redeclared in a class extension, use the class extension by Ted Kremenek · 14 years ago
  36. a054fb4 Correctly register the class extension as the lexical DeclContext for ObjC methods declared with @property in class extensions. by Ted Kremenek · 14 years ago
  37. 8254aa6 For ObjCPropertyDecls in class extensions, use the class extension as the lexical DeclContext for newly created by Ted Kremenek · 14 years ago
  38. 6f942b2 Add code completion for C++ constructors wherever we see the class (or by Douglas Gregor · 14 years ago
  39. b9d7757 When providing code completions for an argument in an Objective-C by Douglas Gregor · 14 years ago
  40. 08f43cd Code completion has no reason to prefer values over types, especially by Douglas Gregor · 14 years ago
  41. d475aad Get rid of the lame attempt to prioritize "void" functions at by Douglas Gregor · 14 years ago
  42. b05496d Tweak priorities for some types and macros: by Douglas Gregor · 14 years ago
  43. 66b7fbf Introduce a simple, substitution-based compression scheme for USRs, so by Douglas Gregor · 14 years ago
  44. 97fe61c Give the Objective-C _cmd an "unlikely" code completion priority; it's by Douglas Gregor · 14 years ago
  45. 833ba9c Add another text for code completion after recovery by Douglas Gregor · 14 years ago
  46. ac5fd84 Continue parsing more postfix expressions, even after semantic by Douglas Gregor · 14 years ago
  47. 9485989 Improve recovery when the middle expression of a ternary operator is ill-formed by Douglas Gregor · 14 years ago
  48. 200b292 When we run into an error parsing or type-checking the left-hand side by Douglas Gregor · 14 years ago
  49. 692577c When traversing an InitListExpr, there may not be a syntactic form; by Douglas Gregor · 14 years ago
  50. d754d55 Swap the priorities of constants and types, so that we prefer types. by Douglas Gregor · 14 years ago
  51. d36adf5 Don't add two code-completion results for the same selector; it by Douglas Gregor · 14 years ago
  52. e396c7b When collecting Objective-C methods for message send completions, be by Douglas Gregor · 14 years ago
  53. c7b6d88 Implement code completion for Objective-C class message sends that are by Douglas Gregor · 14 years ago
  54. 77328d1 Handle bracket insertion for Objective-C class messages in a very by Douglas Gregor · 14 years ago
  55. 78edf51 Improve code completion for Objective-C message sends when the opening by Douglas Gregor · 14 years ago
  56. 0268810 Introduce a new code-completion context for a parenthesized by Douglas Gregor · 14 years ago
  57. 1f60d9e Introduce a new kind of cursor into libclang, which covers a reference by Douglas Gregor · 14 years ago
  58. 424668c The two libclang crash-recovery tests that involve precompiled by Douglas Gregor · 14 years ago
  59. 36897b0 Add libclang support for label statements, gotos, and taking the by Douglas Gregor · 14 years ago
  60. fa2e26f Add libclang visitation for C99 designated initializers. by Douglas Gregor · 14 years ago
  61. 8ccef2d Add libclang visitation for __builtin_offsetof's components (fields by Douglas Gregor · 14 years ago
  62. a67e03f Teach libclang to walk the base and member initializers of a by Douglas Gregor · 14 years ago
  63. b2ebdf9 Use temporary files for this test, to see if we can flush out an inexplicable error on Windows by Douglas Gregor · 14 years ago
  64. 3d37c0a Add proper type-source information to UnaryTypeTraitExpr, including by Douglas Gregor · 14 years ago
  65. 3827625 When providing a completion for a function/method parameter of block by Douglas Gregor · 14 years ago
  66. ab6677e Provide proper type-source location information for by Douglas Gregor · 14 years ago
  67. 1bb2a93 Improve source-location information for CXXNewExpr, by hanging on to by Douglas Gregor · 14 years ago
  68. 0c42bb6 'const std::type_info*' instead of 'std::type_info const*' by Chris Lattner · 14 years ago
  69. 58f9e13 make clang print types as "const int *" instead of "int const*", by Chris Lattner · 14 years ago
  70. e8d7beb Synchronize code-completion cursor kinds with indexing cursor by Douglas Gregor · 14 years ago
  71. aaa80b2 Implement libclang visitation for UnresolvedMemberExpr. This is the by Douglas Gregor · 14 years ago
  72. 25d6362 libclang visitation for CXXDependentScopeMemberExpr by Douglas Gregor · 14 years ago
  73. bfebed2 libclang visitation for DependentScopeDeclRefExpr by Douglas Gregor · 14 years ago
  74. 9536572 Avoid unnecessary redirect, so that stderr shows up in output. by Daniel Dunbar · 14 years ago
  75. 1f7b590 Teach libclang to visit OverloadExprs, so that we can reuse this by Douglas Gregor · 14 years ago
  76. 8ab670e Add libclang visitation for UnresolvedLookupExprs by Douglas Gregor · 14 years ago
  77. 6f7198f Add libclang visitation for C++ pseudo-destructor expressions. by Douglas Gregor · 14 years ago
  78. 9480229 Add libclang visitation for C++ typeid expressions. by Douglas Gregor · 14 years ago
  79. fbb4c98 In libclang, visit the nested-name-specifier and explicitly-specified template arguments of a MemberExpr. by Douglas Gregor · 14 years ago
  80. 8947a75 Visit the nested-name-specifier and explicitly-specified template by Douglas Gregor · 14 years ago
  81. c5ade2e Implement basic visitation for nested name specifiers via libclang by Douglas Gregor · 14 years ago
  82. e0329ac Introduce a new libclang function, by Douglas Gregor · 14 years ago
  83. 8e7139c Fix the source-range information for an EnumConstantDecl; previously, by Douglas Gregor · 14 years ago
  84. 662df6e Test visiting the template parameters of template template parameters, by Douglas Gregor · 14 years ago
  85. 84b51d7 Teach libclang to visit the default arguments of template parameters. by Douglas Gregor · 14 years ago
  86. 7e24256 Implement libclang support for using declarations. Clang actually uses by Douglas Gregor · 14 years ago
  87. 0ab1e9f Improve libclang indexing support for class template specializations by Douglas Gregor · 14 years ago
  88. 828629b Add test for nothing... i.e., the contents of a USR for using directives by Douglas Gregor · 14 years ago
  89. 0a35bce Implement libclang support for using directives (cursor + visitation + by Douglas Gregor · 14 years ago
  90. 53b9441 Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtocols and AllReferencedProtocols. ReferencedProtocols by Ted Kremenek · 14 years ago
  91. 8ea5b9d Improve location information in the representation of namespace by Douglas Gregor · 14 years ago
  92. 6931900 Add libclang support for namespace aliases (visitation + USRs) along by Douglas Gregor · 14 years ago
  93. 0b36e61 Extend libclang with a new cursor kind that indicates a reference to a by Douglas Gregor · 14 years ago
  94. 74dbe64 Add libclang support for class template partial specializations, by Douglas Gregor · 14 years ago
  95. 39d6f07 Add a libclang cursor kind, visitation support and USR support for C++ by Douglas Gregor · 14 years ago
  96. fe72e9c Implement basic support for indexing function templates in by Douglas Gregor · 14 years ago
  97. 01829d3 libclang indexing support for C++ constructors, destructors, and by Douglas Gregor · 14 years ago
  98. 8fb280c Add a simple test for indexing namespaces by Douglas Gregor · 14 years ago
  99. e17794f When provide code completions for a variadic Objective-C method by Douglas Gregor · 14 years ago
  100. aba4808 When providing a code completion for an Objective-C message send, drop by Douglas Gregor · 14 years ago