1. 3b4294e Shift things around so that it's easier to recover from a missing by John McCall · 15 years ago
  2. 06159e8 update to match LLVM API change: by Chris Lattner · 15 years ago
  3. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  4. ef96eac When code completion of an overload set fails, produce results for ordinary name lookup instead. by Douglas Gregor · 15 years ago
  5. a61a879 Add a function's cv-qualifiers to the code-completion results as an by Douglas Gregor · 15 years ago
  6. d1cd31a Teach code completion to instantiate templates when it needs to by Douglas Gregor · 15 years ago
  7. ce82196 Member function templates can occur after . or -> by Douglas Gregor · 15 years ago
  8. 7628294 Tweak code-completion results by suppressing class template by Douglas Gregor · 15 years ago
  9. e29ffaa Class template (partial) specializations should not show up in code completion results by Douglas Gregor · 15 years ago
  10. 2a7925c When in an Objective-C instance method, super is a valid code-completion result by Douglas Gregor · 15 years ago
  11. 9a0c85e Code completion for Objective-C @ keywords that are statements or expressions by Douglas Gregor · 15 years ago
  12. c464ae8 Code completion for Objective-C @ directives by Douglas Gregor · 15 years ago
  13. 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
  14. fbcb5d6 Switch the std::multimap shadow map used in code completion to an by Douglas Gregor · 15 years ago
  15. 0e7049f Avoid trashing two temporary strings. by Benjamin Kramer · 15 years ago
  16. f42d488 strcasecmp is unportable. by Benjamin Kramer · 15 years ago
  17. 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
  18. 2b4074f Switch the clang-to-CIndex interface for code-completion to a binary format, for a massive speedup by Douglas Gregor · 15 years ago
  19. 7dafdf5 Remove all of Sema's explicit uses of OverloadedFunctionDecl except for by John McCall · 15 years ago
  20. 660cc18 Remove useless c_str() calls in SemaCodeComplete. by Benjamin Kramer · 15 years ago
  21. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  22. d5532b6 Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations" into by John McCall · 15 years ago
  23. 7453ed4 Consider a FunctionTemplate to be an overload all on its lonesome. Track by John McCall · 15 years ago
  24. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  25. 4ad9685 Objective-C code completion within properties after "setter = " or by Douglas Gregor · 15 years ago
  26. d3c6854 Improve code completion for Objective-C message sends, so that we by Douglas Gregor · 15 years ago
  27. 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
  28. 54f0161 Improve code-completion results for the flags in an @property by Douglas Gregor · 15 years ago
  29. a93b108 Rename CodeCompleteObjCProperty to something more specific. No functionality change. by Douglas Gregor · 15 years ago
  30. 424b2a5 Code completion after @dynamic by Douglas Gregor · 15 years ago
  31. 322328b Code completion for Objective-C @synthesized. by Douglas Gregor · 15 years ago
  32. 33ced0b Implement code completion for Objective-C category names in @interface by Douglas Gregor · 15 years ago
  33. 3b49aca Code completion for Objective-C class names after @interface, by Douglas Gregor · 15 years ago
  34. 083128f Code completion after @property, providing the names of forward-declared properties by Douglas Gregor · 15 years ago
  35. 55385fe Code completion for Objective-C properly lists by Douglas Gregor · 15 years ago
  36. 95ac655 Code completion for member accesses that involve Objective-C properties and instance variables by Douglas Gregor · 15 years ago
  37. f74a419 Finish code completion for Objective-C message sends by Douglas Gregor · 15 years ago
  38. 60b01cc Rename Objective-C message send completion functions to indicate that we're referring to message sends by Douglas Gregor · 15 years ago
  39. 36ecb04 Refactor code-completion support for message sends, collecting the by Douglas Gregor · 15 years ago
  40. 24a069f Implement code completion for Objective-C message sends to "super". by Douglas Gregor · 15 years ago
  41. 9630eb6 Augment code-completion results to provide argument names and by Douglas Gregor · 15 years ago
  42. 9488ea1 Instead of hanging a using declaration's target decls directly off the using by John McCall · 15 years ago
  43. 3a2838d Rework Sema code completion interface. by Daniel Dunbar · 15 years ago
  44. ff4393c Make sure that we look into nested, transparent declaration contexts by Douglas Gregor · 15 years ago
  45. c4df6d2 Add basic code completion support for ObjC messages. by Steve Naroff · 15 years ago
  46. 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
  47. 3f7c7f4 Include macros in code-completion results by Douglas Gregor · 15 years ago
  48. 833ca99 Track source information for template arguments and template specialization by John McCall · 15 years ago
  49. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  50. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  51. f52cede Minor tweaks for code-completion: by Douglas Gregor · 15 years ago
  52. 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
  53. ece8e71 Add code completion support for ObjC property declarations/attributes. by Steve Naroff · 15 years ago
  54. 6a68403 Determinism is for wimps. <Wimper> by Douglas Gregor · 15 years ago
  55. eb5758b For code completion, note that injected-class-names found as part of by Douglas Gregor · 15 years ago
  56. 86d802e Print the results of code-completion for overloading by displaying the by Douglas Gregor · 15 years ago
  57. 0594438 Separate the code-completion results for call completion from the by Douglas Gregor · 15 years ago
  58. 8e0a0e4 Make sure we don't try to add code-completion results without an by Douglas Gregor · 15 years ago
  59. 3e7253f When code-completion finds a declaration only because it is usable as by Douglas Gregor · 15 years ago
  60. 0563c26 Tweak the code-completion results ranking and formation, so that by Douglas Gregor · 15 years ago
  61. b3d4525 Teach code-completion to introduce a ", ..." placeholder for variadic functions by Douglas Gregor · 15 years ago
  62. 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
  63. 9c6a0e9 Implement code completion within a function call, triggered after the by Douglas Gregor · 15 years ago
  64. 791215b Code completion for ordinary names when we're starting a declaration, expression, or statement by Douglas Gregor · 15 years ago
  65. 456c4a1 When providing a code-completion suggestion for a hidden name, include by Douglas Gregor · 15 years ago
  66. b9d0ef7 Enhance "case" code completion in C++ to suggest qualified names for by Douglas Gregor · 15 years ago
  67. 3e1005f Code completion for "case" statements within a switch on an expression by Douglas Gregor · 15 years ago
  68. 86d9a52 Refactor and simplify the CodeCompleteConsumer, so that all of the by Douglas Gregor · 15 years ago
  69. ed8d322 C++ code completion after the "operator" keyword. Provide overloaded by Douglas Gregor · 15 years ago
  70. 49f40bd Introduce four new code-completion hooks for C++: by Douglas Gregor · 15 years ago
  71. 374929f Implement code completion for tags, e.g., code completion after "enum" by Douglas Gregor · 15 years ago
  72. 81b747b Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 15 years ago