1. b05496d Tweak priorities for some types and macros: by Douglas Gregor · 14 years ago
  2. ac5fd84 Continue parsing more postfix expressions, even after semantic by Douglas Gregor · 14 years ago
  3. d36adf5 Don't add two code-completion results for the same selector; it by Douglas Gregor · 14 years ago
  4. e396c7b When collecting Objective-C methods for message send completions, be by Douglas Gregor · 14 years ago
  5. c7b6d88 Implement code completion for Objective-C class message sends that are by Douglas Gregor · 14 years ago
  6. 78edf51 Improve code completion for Objective-C message sends when the opening by Douglas Gregor · 14 years ago
  7. 0268810 Introduce a new code-completion context for a parenthesized by Douglas Gregor · 14 years ago
  8. a67e03f Teach libclang to walk the base and member initializers of a by Douglas Gregor · 14 years ago
  9. 3827625 When providing a completion for a function/method parameter of block by Douglas Gregor · 14 years ago
  10. 66392d4 zap dead code. by Chris Lattner · 14 years ago
  11. e8d7beb Synchronize code-completion cursor kinds with indexing cursor by Douglas Gregor · 14 years ago
  12. 53b9441 Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtocols and AllReferencedProtocols. ReferencedProtocols by Ted Kremenek · 14 years ago
  13. e17794f When provide code completions for a variadic Objective-C method by Douglas Gregor · 14 years ago
  14. 7a126a4 Rename DeclContext::getLookupContext to getRedeclContext and change its semantics slightly. No functionality change in the absence of inline namespaces. Also, change a few places where inline namespaces actually make a difference to be prepared for them. by Sebastian Redl · 14 years ago
  15. aba4808 When providing a code completion for an Objective-C message send, drop by Douglas Gregor · 14 years ago
  16. 0c431c8 Improve code completion for initializer lists in constructors. Instead by Douglas Gregor · 14 years ago
  17. 0133f52 Basic code completion support for the base and member initializers in by Douglas Gregor · 14 years ago
  18. f696152 Implement the "call super" code completion for C++. If the virtual by Douglas Gregor · 14 years ago
  19. 1a480c4 Suggest "const" and "volatile" code completions after a function by Douglas Gregor · 14 years ago
  20. 265f749 When code-completing inside an Objective-C method, give a slight by Douglas Gregor · 14 years ago
  21. 03d8aec Add a super-cool code completion for send-to-super. When we're typing by Douglas Gregor · 14 years ago
  22. f312b1e One who seeks knowledge learns something new every day. by John McCall · 14 years ago
  23. 2d9e21f Tweak the @selector completion to collapse multiple informative and by Douglas Gregor · 14 years ago
  24. 3cdee12 When code-completing a potential call to a C++ non-static member by Douglas Gregor · 14 years ago
  25. 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
  26. 1e5e668 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  27. 1cb237f Revert r112149, "Move the sorting of code-completion results out of the main by Daniel Dunbar · 14 years ago
  28. be13afe Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  29. 9214819 Revert "Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  30. c7ed372 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  31. 2d88708 Split out a header to hold APIs meant for the Sema implementation from Sema.h. by John McCall · 14 years ago
  32. 721f359 When combining the code-completion results from Sema long with the by Douglas Gregor · 14 years ago
  33. af1c6b5 Add a code-completion context for "natural language" completions, so by Douglas Gregor · 14 years ago
  34. 55817af Introduce a preprocessor code-completion hook for contexts where we by Douglas Gregor · 14 years ago
  35. 781472f Split FunctionScopeInfo and BlockScopeInfo into their own header. by John McCall · 14 years ago
  36. 0a2c5e2 Teach Sema to live without CodeCompleteConsumer.h. by John McCall · 14 years ago
  37. 408be5a When performing completions involving Objective-C method declarations by Douglas Gregor · 14 years ago
  38. eb0d014 Give a slight preference to functions returning "void" when we're by Douglas Gregor · 14 years ago
  39. f29c523 Implement code completion for preprocessor expressions and in macro arguments. by Douglas Gregor · 14 years ago
  40. 120d63c Move some of SemaOverload's API to various places in Overload.h, and kill by John McCall · 14 years ago
  41. 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 14 years ago
  42. f44e854 Introduce basic code-completion support for preprocessor directives, by Douglas Gregor · 14 years ago
  43. 83482d1 When providing completions for a function or method argument that by Douglas Gregor · 14 years ago
  44. 5f1e094 More header elimination. The goal of all this is to allow Parser to by John McCall · 14 years ago
  45. 7cd088e Struggle mightily against header inclusion in Sema.h. by John McCall · 14 years ago
  46. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  47. b3d8748 Abstract out passing around types and kill off ActionBase. by John McCall · 14 years ago
  48. 4497dd4 State explicitly that we are intentionally not providing macro completions for declarator name completions by Douglas Gregor · 14 years ago
  49. 72db108 Consistently switch on PCC_Type by Douglas Gregor · 14 years ago
  50. d32b022 Provide code completion results for the context-sensitive Objective-C by Douglas Gregor · 14 years ago
  51. aaa107a When calling a function or messaging a method marked "sentinel", add by Douglas Gregor · 14 years ago
  52. aa5f77b Include __FUNCTION__, __PRETTY_FUNCTION_, __func__ in code-completion by Douglas Gregor · 14 years ago
  53. fb62941 Introduce a code-completion hook for the Objective-C collection by Douglas Gregor · 14 years ago
  54. 6d72cbe Don't include macro results when we're completing a declarator. by Douglas Gregor · 14 years ago
  55. 2ccccb3 Introduce a new code-completion point when we're parsing a by Douglas Gregor · 14 years ago
  56. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  57. 3c7f413 More PCH -> AST renaming. by Sebastian Redl · 14 years ago
  58. 9c487d1 zap a big dead method. by Chris Lattner · 14 years ago
  59. 16ed9ad When generating code completion patterns for method declarations, give by Douglas Gregor · 14 years ago
  60. 47c03a7 1 != I. Fix the formulation of code-completion patterns for by Douglas Gregor · 14 years ago
  61. a5fb7c3 Implement support for cached code completions for by Douglas Gregor · 14 years ago
  62. 1827e10 When caching global completion results, keep track of the simplified by Douglas Gregor · 14 years ago
  63. 8071e42 Extend the code-completion caching infrastructure to include global by Douglas Gregor · 14 years ago
  64. 87c08a5 Implement caching of code-completion results for macro definitions by Douglas Gregor · 14 years ago
  65. e737f50 Move Sema's headers into include/clang/Sema, renaming a few along the way. by Douglas Gregor · 14 years ago
  66. e6b1bb6 Once code completion has completed, pass a "completion context" on to by Douglas Gregor · 14 years ago
  67. deacbdc Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, by Douglas Gregor · 14 years ago
  68. 74c730a - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for forward declarations and the definition. by Sebastian Redl · 14 years ago
  69. 1abc6bc Add code-completion support directly to ASTUnit, which performs code by Douglas Gregor · 14 years ago
  70. db9d214 Simplify global method pool implementation in Sema. No functionality change. by Sebastian Redl · 14 years ago
  71. f957843 When performing code completion for a case statement in a switch whose by Douglas Gregor · 14 years ago
  72. 797efb5 Only filter out names reserved for the implementation (e.g., __blah or by Douglas Gregor · 14 years ago
  73. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  74. 40ed9a1 Support code completion for parameter names in Objective-C method declarations. by Douglas Gregor · 14 years ago
  75. 1f5537a Introduce a new code-completion point prior to an identifier in the by Douglas Gregor · 14 years ago
  76. 590c7d5 During code completion, give the "nil" and "NULL" macros the same by Douglas Gregor · 14 years ago
  77. 80aa1cd Patch to provide separate ASTs for multiple ObjC class extension by Fariborz Jahanian · 14 years ago
  78. 410a1da Remove a completely useless and utterly incorrect assertion. by Douglas Gregor · 14 years ago
  79. 9b30b26 Teach code completion not to ignore data members when performing code by Douglas Gregor · 14 years ago
  80. 76bd1f3 Alter the ExternalASTSource interface to permit by-name lookups. PCH continues to by John McCall · 15 years ago
  81. 681e256 Fix crash in code completion when an ObjCMethodDecl doesn't have an associated @interface. by Ted Kremenek · 15 years ago
  82. d28dcd7 Teach code-completion for calls to be more careful with a by Douglas Gregor · 15 years ago
  83. 5ac3bdb Teach code completion to adjust its completion priorities based on the by Douglas Gregor · 15 years ago
  84. 447107d Don't put method bodies into code completions unless code patterns are by Douglas Gregor · 15 years ago
  85. 4710e5b Do not produce types as valid code completions when we're in an by Douglas Gregor · 15 years ago
  86. c8bddde Make -code-completion-patterns only cover multi-line code by Douglas Gregor · 15 years ago
  87. 8e254cf Implement a code-completion hook for the receiver of an Objective-C by Douglas Gregor · 15 years ago
  88. 12e1313 Introduce priorities into the code-completion results. by Douglas Gregor · 15 years ago
  89. d8e8a58 Only enable code patterns (e.g., try { statements } catch (...) { by Douglas Gregor · 15 years ago
  90. dc84534 Improve code completion in failure cases in two ways: by Douglas Gregor · 15 years ago
  91. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 15 years ago
  92. 465d41b Merged Elaborated and QualifiedName types. by Abramo Bagnara · 15 years ago
  93. 77bb1aa It turns out that basically every caller to RequireCompleteDeclContext by John McCall · 15 years ago
  94. 0d6b164 Recommit my change to how C++ does elaborated type lookups, now with by John McCall · 15 years ago
  95. 00b40d3 Revert "C++ doesn't really use "namespaces" for different kinds of names the same", which seems to break most C++ nightly test apps. by Daniel Dunbar · 15 years ago
  96. d04efc9 C++ doesn't really use "namespaces" for different kinds of names the same by John McCall · 15 years ago
  97. 2725ca8 Rework the Parser-Sema interaction for Objective-C message by Douglas Gregor · 15 years ago
  98. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 15 years ago
  99. c27d6c5 Eliminate the ForceRValue parameter to Sema::AddOverloadCandidate by Douglas Gregor · 15 years ago
  100. c83c687 Feed proper source-location information into Sema::LookupSingleResult, by Douglas Gregor · 15 years ago