1. 86820f5 Pass access specifiers around in overload resolution. by John McCall · 15 years ago
  2. c026540 Teach code-completion to deal with calls to functions without prototypes. by Douglas Gregor · 15 years ago
  3. 608300b Switch a few callers of MaybeAddResult over to AddResult, when the by Douglas Gregor · 15 years ago
  4. 80f4f4c Switch code-completion's ivar lookup over to LookupVisibleDecls, by Douglas Gregor · 15 years ago
  5. a447781 Start migrating code-completion results from by Douglas Gregor · 15 years ago
  6. 0cc8404 Switch the remaining code completions over to LookupVisibleDecls, by Douglas Gregor · 15 years ago
  7. def9107 Move code completion for qualified name lookup (foo::) to by Douglas Gregor · 15 years ago
  8. 5d2fc40 Eliminate the code-completion-specifier CollectLookupResults in favor by Douglas Gregor · 15 years ago
  9. 45bcd43 Simplify the code-completion logic for nested-name-specifiers: rather by Douglas Gregor · 15 years ago
  10. e3eef64 When providing completions for a member access expression in C++, by Douglas Gregor · 15 years ago
  11. 1ca6ae8 Switch code-completion for ordinary names over to the new(ish) by Douglas Gregor · 15 years ago
  12. 6660d84 More refactoring of ResultBuilder::MaybeAddResult. No intended by Douglas Gregor · 15 years ago
  13. e495b7f Refactor the "is this declaration interesting" logic in by Douglas Gregor · 15 years ago
  14. bca403c Banish the notion of a "rank" for code-completion results, since we by Douglas Gregor · 15 years ago
  15. ab0b4f1 Improve the sorting of code-completion results. We now always sort by by Douglas Gregor · 15 years ago
  16. c38c3e1 Code-completion for @public, @protected, @private, @package. by Douglas Gregor · 15 years ago
  17. b6ac245 Whenever completing ordinary names for an Objective-C source, also by Douglas Gregor · 15 years ago
  18. 834389b Use horizontal-space markers in code-completion results rather than by Douglas Gregor · 15 years ago
  19. 01dfea0 Improve code completion by introducing patterns for the various C and by Douglas Gregor · 15 years ago
  20. 6b401c0 remove extraneous #include by Chris Lattner · 15 years ago
  21. 546be3c Typo correction for type names when they appear in declarations, e.g., given by Douglas Gregor · 15 years ago
  22. 54d76db Remove some dead variables clang-analyzer found. by Benjamin Kramer · 15 years ago
  23. 2a17af0 Objective-C methods can be variadic, too. Who knew. by Douglas Gregor · 15 years ago
  24. ff5ce6e Extend code-completion results with the type of each result by Douglas Gregor · 15 years ago
  25. 3b4294e Shift things around so that it's easier to recover from a missing by John McCall · 15 years ago
  26. 06159e8 update to match LLVM API change: by Chris Lattner · 15 years ago
  27. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  28. ef96eac When code completion of an overload set fails, produce results for ordinary name lookup instead. by Douglas Gregor · 15 years ago
  29. a61a879 Add a function's cv-qualifiers to the code-completion results as an by Douglas Gregor · 15 years ago
  30. d1cd31a Teach code completion to instantiate templates when it needs to by Douglas Gregor · 15 years ago
  31. ce82196 Member function templates can occur after . or -> by Douglas Gregor · 15 years ago
  32. 7628294 Tweak code-completion results by suppressing class template by Douglas Gregor · 15 years ago
  33. e29ffaa Class template (partial) specializations should not show up in code completion results by Douglas Gregor · 15 years ago
  34. 2a7925c When in an Objective-C instance method, super is a valid code-completion result by Douglas Gregor · 15 years ago
  35. 9a0c85e Code completion for Objective-C @ keywords that are statements or expressions by Douglas Gregor · 15 years ago
  36. c464ae8 Code completion for Objective-C @ directives by Douglas Gregor · 15 years ago
  37. d490f95 PointerUnion == PointerUnion does not do what I thought it did. Also, fix a thinko in a PointerUnion::get call. by Douglas Gregor · 15 years ago
  38. fbcb5d6 Switch the std::multimap shadow map used in code completion to an by Douglas Gregor · 15 years ago
  39. 0e7049f Avoid trashing two temporary strings. by Benjamin Kramer · 15 years ago
  40. f42d488 strcasecmp is unportable. by Benjamin Kramer · 15 years ago
  41. 2b0cc12 Improve the performance of code completion by 2.2x when completing for ordinary names with Cocoa.h included, by drastically improving the performance of our results sorting. by Douglas Gregor · 15 years ago
  42. 2b4074f Switch the clang-to-CIndex interface for code-completion to a binary format, for a massive speedup by Douglas Gregor · 15 years ago
  43. 7dafdf5 Remove all of Sema's explicit uses of OverloadedFunctionDecl except for by John McCall · 15 years ago
  44. 660cc18 Remove useless c_str() calls in SemaCodeComplete. by Benjamin Kramer · 15 years ago
  45. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  46. d5532b6 Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations" into by John McCall · 15 years ago
  47. 7453ed4 Consider a FunctionTemplate to be an overload all on its lonesome. Track by John McCall · 15 years ago
  48. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  49. 4ad9685 Objective-C code completion within properties after "setter = " or by Douglas Gregor · 15 years ago
  50. d3c6854 Improve code completion for Objective-C message sends, so that we by Douglas Gregor · 15 years ago
  51. 988358f Improve the accuracy of code completion for the attributes of an @property declaration, so that we don't produce completions for attributes that would conflict with already-specified attributes by Douglas Gregor · 15 years ago
  52. 54f0161 Improve code-completion results for the flags in an @property by Douglas Gregor · 15 years ago
  53. a93b108 Rename CodeCompleteObjCProperty to something more specific. No functionality change. by Douglas Gregor · 15 years ago
  54. 424b2a5 Code completion after @dynamic by Douglas Gregor · 15 years ago
  55. 322328b Code completion for Objective-C @synthesized. by Douglas Gregor · 15 years ago
  56. 33ced0b Implement code completion for Objective-C category names in @interface by Douglas Gregor · 15 years ago
  57. 3b49aca Code completion for Objective-C class names after @interface, by Douglas Gregor · 15 years ago
  58. 083128f Code completion after @property, providing the names of forward-declared properties by Douglas Gregor · 15 years ago
  59. 55385fe Code completion for Objective-C properly lists by Douglas Gregor · 15 years ago
  60. 95ac655 Code completion for member accesses that involve Objective-C properties and instance variables by Douglas Gregor · 15 years ago
  61. f74a419 Finish code completion for Objective-C message sends by Douglas Gregor · 15 years ago
  62. 60b01cc Rename Objective-C message send completion functions to indicate that we're referring to message sends by Douglas Gregor · 15 years ago
  63. 36ecb04 Refactor code-completion support for message sends, collecting the by Douglas Gregor · 15 years ago
  64. 24a069f Implement code completion for Objective-C message sends to "super". by Douglas Gregor · 15 years ago
  65. 9630eb6 Augment code-completion results to provide argument names and by Douglas Gregor · 15 years ago
  66. 9488ea1 Instead of hanging a using declaration's target decls directly off the using by John McCall · 15 years ago
  67. 3a2838d Rework Sema code completion interface. by Daniel Dunbar · 15 years ago
  68. ff4393c Make sure that we look into nested, transparent declaration contexts by Douglas Gregor · 15 years ago
  69. c4df6d2 Add basic code completion support for ObjC messages. by Steve Naroff · 15 years ago
  70. 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
  71. 3f7c7f4 Include macros in code-completion results by Douglas Gregor · 15 years ago
  72. 833ca99 Track source information for template arguments and template specialization by John McCall · 15 years ago
  73. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  74. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  75. f52cede Minor tweaks for code-completion: by Douglas Gregor · 15 years ago
  76. 7f51112 - Fixup SortCodeCompleteResult() to properly sort keywords on Mac OS (compare was system dependent). Worked on Linux, failed on Mac OS (which caused the recently added testcase to fail on Linux). by Steve Naroff · 15 years ago
  77. ece8e71 Add code completion support for ObjC property declarations/attributes. by Steve Naroff · 15 years ago
  78. 6a68403 Determinism is for wimps. <Wimper> by Douglas Gregor · 15 years ago
  79. eb5758b For code completion, note that injected-class-names found as part of by Douglas Gregor · 15 years ago
  80. 86d802e Print the results of code-completion for overloading by displaying the by Douglas Gregor · 15 years ago
  81. 0594438 Separate the code-completion results for call completion from the by Douglas Gregor · 15 years ago
  82. 8e0a0e4 Make sure we don't try to add code-completion results without an by Douglas Gregor · 15 years ago
  83. 3e7253f When code-completion finds a declaration only because it is usable as by Douglas Gregor · 15 years ago
  84. 0563c26 Tweak the code-completion results ranking and formation, so that by Douglas Gregor · 15 years ago
  85. b3d4525 Teach code-completion to introduce a ", ..." placeholder for variadic functions by Douglas Gregor · 15 years ago
  86. 9075630 (With Doug's help) fix a crash in the code completion code that lead to a test failure. by Anders Carlsson · 15 years ago
  87. 9c6a0e9 Implement code completion within a function call, triggered after the by Douglas Gregor · 15 years ago
  88. 791215b Code completion for ordinary names when we're starting a declaration, expression, or statement by Douglas Gregor · 15 years ago
  89. 456c4a1 When providing a code-completion suggestion for a hidden name, include by Douglas Gregor · 15 years ago
  90. b9d0ef7 Enhance "case" code completion in C++ to suggest qualified names for by Douglas Gregor · 15 years ago
  91. 3e1005f Code completion for "case" statements within a switch on an expression by Douglas Gregor · 15 years ago
  92. 86d9a52 Refactor and simplify the CodeCompleteConsumer, so that all of the by Douglas Gregor · 15 years ago
  93. ed8d322 C++ code completion after the "operator" keyword. Provide overloaded by Douglas Gregor · 15 years ago
  94. 49f40bd Introduce four new code-completion hooks for C++: by Douglas Gregor · 15 years ago
  95. 374929f Implement code completion for tags, e.g., code completion after "enum" by Douglas Gregor · 15 years ago
  96. 81b747b Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 15 years ago