1. 526d244 [libclang] Remove the ParentKind cursor kind from code-completion results. by Argyrios Kyrtzidis · 13 years ago
  2. 1014ecf Remove unused typedefs. Found by gcc48. by Roman Divacky · 13 years ago
  3. 6666ed4 Improved MSVC __interface support by adding first class support for it, instead of aliasing to "struct" which had some incorrect behaviour. Patch by David Robins. by Joao Matos · 13 years ago
  4. 8a64bb5 Keep history of macro definitions and #undefs by Alexander Kornienko · 13 years ago
  5. 70517ca Fix a bunch of -Wdocumentation warnings. by Dmitri Gribenko · 13 years ago
  6. 0a7dd78 Screw around with ObjCRuntime some more, changing the by John McCall · 13 years ago
  7. d7403a7 Code-complete 'weak' for properties under ARC-with-weak-references (or GC) by Jordan Rose · 13 years ago
  8. 66a3d47 Make the spacing of the code completion result for NSDictionary by Douglas Gregor · 13 years ago
  9. f50555e Attaching comments to declarations: find comment attached to any redeclaration by Dmitri Gribenko · 13 years ago
  10. 4ef832f Provide isConst/Volatile on CXXMethodDecl. by David Blaikie · 13 years ago
  11. 7961589 Remove unnecessary spacing around Objective-C object literal code by Douglas Gregor · 13 years ago
  12. d99ef53 Add a new libclang completion API to get brief documentation comment that is by Dmitri Gribenko · 13 years ago
  13. f70a886 Add support for the C11 _Alignof keyword. by Jordan Rose · 13 years ago
  14. de23c7e Documentation cleanup: fix two typos, rief -> brief and Descripts -> Describes by James Dennett · 13 years ago
  15. 1f6e22d [completion] Add completions for @"..." and @(...), and tidy up @[] and @{}. by Jordan Rose · 13 years ago
  16. 1dfbd92 Still more Doxygen documentation fixes: by James Dennett · 13 years ago
  17. a40f792 This makes SemaCodeComplete.cpp more Doxygen-friendly by changing the by James Dennett · 13 years ago
  18. b92a408 When code completion walks the members of a protocol or interface, by Douglas Gregor · 13 years ago
  19. 49fdccb Convert comments to proper Doxygen comments. by Dmitri Gribenko · 13 years ago
  20. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 13 years ago
  21. 27a0097 Make BuiltinType::getName return a StringRef and introduce BuiltinType::getNameAsCString by Argyrios Kyrtzidis · 13 years ago
  22. 8e5900c clang_getCursorLexicalParent should return a translation unit cursor for declarations at the global scope, from Evan P. Fixes PR9083. by Douglas Gregor · 13 years ago
  23. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 13 years ago
  24. 90f5f47 Include the Objective-C parameter- and return-passing qualifiers when by Douglas Gregor · 13 years ago
  25. 10ccf12 Don't include the ':' following code-completion suggestions for by Douglas Gregor · 13 years ago
  26. 28a83f5 [code-complete] Introduce CodeCompletionTUInfo which will be used for caching by Argyrios Kyrtzidis · 13 years ago
  27. 173a37a Remove more redundant lookups. Add a new "all_lookups_iterator" which provides by Nick Lewycky · 13 years ago
  28. ba10306 Introduce a new libclang API to determine the parent context of a code by Douglas Gregor · 13 years ago
  29. 1eb18af Move CodeCompletionBuilder's chunk adding methods out of line. by Benjamin Kramer · 13 years ago
  30. a5f4441 [Sema] Prefer to use ObjCInterfaceDecl's protocol_begin()/protocol_end() iterators instead of by Argyrios Kyrtzidis · 14 years ago
  31. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 14 years ago
  32. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 14 years ago
  33. 13a140c ArrayRef'ize various functions in the AST/Parser/Sema. by Ahmed Charles · 14 years ago
  34. f11641a If code completion patterns are not enabled, use simpler else/else if by Douglas Gregor · 14 years ago
  35. 81f3bff Implement code completion support for lambda capture lists. by Douglas Gregor · 14 years ago
  36. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 14 years ago
  37. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 14 years ago
  38. b223d8c When providing code completions for a switch over a scoped enumeration by Douglas Gregor · 14 years ago
  39. 013b366 SmallBitVectorize the deduced parameter set. by Benjamin Kramer · 14 years ago
  40. c5b2e58 Implement code completion support for module import declarations, e.g., by Douglas Gregor · 14 years ago
  41. e4b9276 Added source location for the template keyword in AST template-id expressions. by Abramo Bagnara · 14 years ago
  42. c15707d [libclang] In clang::getCursorKindForDecl() don't return "UnexposedDecl" by Argyrios Kyrtzidis · 14 years ago
  43. f5cd27d Handle pseudo-object expressions (and any other placeholder by Douglas Gregor · 14 years ago
  44. c8dc135 Fix the code completion string for variadic macros with more than one by Douglas Gregor · 14 years ago
  45. 312ede8 Remove dead comments as per Chandler's feedback to r148292 by David Blaikie · 14 years ago
  46. 7530c03 Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) by David Blaikie · 14 years ago
  47. ea8c59a Introduce a CodeCompletionResult::CreateCodeCompletionString() that by Argyrios Kyrtzidis · 14 years ago
  48. 72899c3 More lambda work: semantic analysis of capturing 'this'. It's a bit complicated, but we have to be careful about when exactly captures are marked given PotentiallyPotentiallyEvaluated contexts. (Actually, it's not 100% correct yet, but it's close enough for the moment.) by Eli Friedman · 14 years ago
  49. bd9482d Eliminate ObjCForwardProtocolDecl, which is redundant now that by Douglas Gregor · 14 years ago
  50. 5e2a1ff Move the data that corresponds to the definition of a protocol into a by Douglas Gregor · 14 years ago
  51. 375bb14 Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl by Douglas Gregor · 14 years ago
  52. 7723fec Keep track of all declarations of an Objective-C class (both forward by Douglas Gregor · 14 years ago
  53. 2e5c15b Move the definition-specific data of ObjCInterfaceDecl into a by Douglas Gregor · 14 years ago
  54. 6ef9209 Introduce proper spacing after the Objective-C parameter qualifiers by Douglas Gregor · 14 years ago
  55. 17015ef Refactor Sema::IsSimplyAccessible slightly, to work on a DeclContext rather than a class by Douglas Gregor · 14 years ago
  56. 25270b6 Add a printing policy flag to suppress printing "<anonymous>::" prior by Douglas Gregor · 14 years ago
  57. 8ca7208 Provide result types for code completions that describe built-in by Douglas Gregor · 14 years ago
  58. a50216c Add code completions for C++0x expressions by Douglas Gregor · 14 years ago
  59. ee1c68a Don't format the code completion for parameters of block literal by Douglas Gregor · 14 years ago
  60. 6164ea1 Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations to by Erik Verbruggen · 14 years ago
  61. d120596 Added CXAvailability_NotAccessible to indicate that a declaration is available, but not accessible from the current code completion context. by Erik Verbruggen · 14 years ago
  62. 2dfdb94 [libclang] Introduce CXCursor_CXXAccessSpecifier for C++'s public:/private:/protected: specifiers. by Argyrios Kyrtzidis · 14 years ago
  63. 8987b23 Only print _Bool as 'bool' when 'bool' is defined as an object-like by Douglas Gregor · 14 years ago
  64. 30c4240 When 'bool' is not a built-in type but is defined as a macro, print by Douglas Gregor · 14 years ago
  65. eb2d1f1 Removing a bunch of dead returns/breaks after llvm_unreachables. by David Blaikie · 14 years ago
  66. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 14 years ago
  67. f81e5a9 Change all references of type ExprTy to Expr and get rid of the typedefs. by Richard Trieu · 14 years ago
  68. 8697d30 objective-c: this patch (re)introduces objective-c's default property by Fariborz Jahanian · 14 years ago
  69. 95ed778 objective-c: Treat top-level objective-c declarations by Fariborz Jahanian · 14 years ago
  70. a28948f Restore patch I reversed in r138040. Known buildbot failures are resolved. by Fariborz Jahanian · 14 years ago
  71. e6f07f5 Revers r138040. Need to look at a few buildbot failures. by Fariborz Jahanian · 14 years ago
  72. 3dbf2f5 objective-c: Bring objective-c handling of decl context by Fariborz Jahanian · 14 years ago
  73. 5c5f03e [libclang] Support code-completion inside macro arguments. by Argyrios Kyrtzidis · 14 years ago
  74. a8e0cd8 Do l-value conversion, etc., on a switch condition expression in by John McCall · 14 years ago
  75. d2d8be6 Add code completion to produce "else" blocks after an "if" by Douglas Gregor · 14 years ago
  76. e424470 When producing code completion results for variadic macros, fold the by Douglas Gregor · 14 years ago
  77. 6fa14dd Add the various parameter-passing keywords for Distributed Objects by Douglas Gregor · 14 years ago
  78. 0f91c8c When performing code completion after at @interface, allow both by Douglas Gregor · 14 years ago
  79. a0651c5 Eliminate a bunch of temporary strings. by Benjamin Kramer · 14 years ago
  80. 0a47d69 Add new libclang API, clang_codeCompleteGetObjCSelector(), which by Douglas Gregor · 14 years ago
  81. 430d7a1 Added clang_getCursorReferenceNameRange to libclang to to retrieve parts of by Douglas Gregor · 14 years ago
  82. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
  83. e081a61 New libclang API to expose container type for code completion, from by Douglas Gregor · 14 years ago
  84. 3da626b Introduce a new libclang aPI function, by Douglas Gregor · 14 years ago
  85. f85e193 Automatic Reference Counting. by John McCall · 14 years ago
  86. 27f4523 Add code completetion code for the new 'atomic' attribute by Fariborz Jahanian · 14 years ago
  87. 352697a Expose @synthesize and @dynamic via their own cursor kinds in by Douglas Gregor · 14 years ago
  88. 3f828d1 Tweak code completions for Objective-C Key-Value Observing. The by Douglas Gregor · 14 years ago
  89. 4b81cde When providing code completions for an Objective-C property access, by Douglas Gregor · 14 years ago
  90. e74c25c When adding KVC code completions, keep track of all of the selectors by Douglas Gregor · 14 years ago
  91. e842605 When providing code completions of ivar names for a property by Douglas Gregor · 14 years ago
  92. aa490cb When producing code completion results for the Objective-C property by Douglas Gregor · 14 years ago
  93. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 14 years ago
  94. 3e64d56 When determining the "usage" type of a declaration for the purposes of code by Douglas Gregor · 14 years ago
  95. ec3310a Don't suggest dynamic_cast or typeid as code completion results when by Douglas Gregor · 14 years ago
  96. 429bb27 Use ExprResult& instead of Expr *& in Sema by John Wiegley · 14 years ago
  97. da57f3e Make helpers static. by Benjamin Kramer · 15 years ago
  98. 34b41d9 Implement the C++0x deduced 'auto' feature. by Richard Smith · 15 years ago
  99. 5c722c70 When code-completing a case statement for a switch on a value of by Douglas Gregor · 15 years ago
  100. 813d834 Selector::getIdentifierInfoForSlot() can return NULL values, a fact by Douglas Gregor · 15 years ago