1. 20b2ebd Implement a new 'availability' attribute, that allows one to specify by Douglas Gregor · 15 years ago
  2. 3a69eaf When code-completing a case statement for a switch on a value of by Douglas Gregor · 15 years ago
  3. 669a25a Implement code completion results for the Objective-C Key-Value Coding by Douglas Gregor · 15 years ago
  4. ac18130 Revert r124704, which uniqued code-completion strings. The space by Douglas Gregor · 15 years ago
  5. 801acff Unique code-completion strings. On Cocoa.h, this costs us about 4% in by Douglas Gregor · 15 years ago
  6. bcbf46c Create a special allocator class for code completion, so that all of by Douglas Gregor · 15 years ago
  7. b278aaf Allocate CodeCompletionString and all of its components in a by Douglas Gregor · 15 years ago
  8. b9ab0ed Eliminate the (de-)serialization of code completion results, now that by Douglas Gregor · 15 years ago
  9. 0ac4138 Synchronize globally-cached code completion results with the results by Douglas Gregor · 15 years ago
  10. 0212fd7 Add code completion for C++ constructors wherever we see the class (or by Douglas Gregor · 15 years ago
  11. 521db40 Give the Objective-C _cmd an "unlikely" code completion priority; it's by Douglas Gregor · 15 years ago
  12. 09c0eb1 Synchronize code-completion cursor kinds with indexing cursor by Douglas Gregor · 15 years ago
  13. c4ef180 Simplify code-completion result sorting a bit by Douglas Gregor · 15 years ago
  14. 50c6825 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 · 15 years ago
  15. 49f67ce Move the sorting of code-completion results out of the main path and by Douglas Gregor · 15 years ago
  16. bef185c Revert r112149, "Move the sorting of code-completion results out of the main by Daniel Dunbar · 15 years ago
  17. 78ecc49 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 15 years ago
  18. 1099865 Revert "Move the sorting of code-completion results out of the main path and by Douglas Gregor · 15 years ago
  19. ebb7c84 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 15 years ago
  20. 0de55ce When combining the code-completion results from Sema long with the by Douglas Gregor · 15 years ago
  21. 276321a Teach Sema to live without CodeCompleteConsumer.h. by John McCall · 15 years ago
  22. 19c1bfd Move more stuff out of Sema.h. by John McCall · 15 years ago
  23. de6836a Struggle mightily against header inclusion in Sema.h. by John McCall · 15 years ago
  24. f757a12 Introduce new libclang API functions that determine the availability by Douglas Gregor · 15 years ago
  25. 8b0666c Another step in the process of making the parser depend on Sema: by John McCall · 15 years ago
  26. b14904c Implement caching of code-completion results for macro definitions by Douglas Gregor · 15 years ago
  27. c3a6ade Move Sema's headers into include/clang/Sema, renaming a few along the way. by Douglas Gregor · 15 years ago
  28. 00c37ef Once code completion has completed, pass a "completion context" on to by Douglas Gregor · 15 years ago
  29. 8e984da Add code-completion support directly to ASTUnit, which performs code by Douglas Gregor · 15 years ago
  30. 4888f1a Minor code simplification. by Dan Gohman · 15 years ago
  31. a2db793 Introduce priorities into the code-completion results. by Douglas Gregor · 15 years ago
  32. 6da3db4 Improve code completion in failure cases in two ways: by Douglas Gregor · 15 years ago
  33. b11416d Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 16 years ago
  34. 636a61e Implement code completion for Objective-C method declarations and by Douglas Gregor · 16 years ago
  35. f3df985 Code completion results that refer to macros now get the cursor kind by Douglas Gregor · 16 years ago
  36. 7a9ba76 Remove unused headers. by Duncan Sands · 16 years ago
  37. 6b8232f Eliminate cursor kinds used to express definitions. Instead, provide by Douglas Gregor · 16 years ago
  38. 52ce62f Improve the sorting of code-completion results. We now always sort by by Douglas Gregor · 16 years ago
  39. 504a6ae Improve code completion by introducing patterns for the various C and by Douglas Gregor · 16 years ago
  40. b3fa919 Extend code-completion results with the type of each result by Douglas Gregor · 16 years ago
  41. 1615d45 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 16 years ago
  42. f09935f Switch the clang-to-CIndex interface for code-completion to a binary format, for a massive speedup by Douglas Gregor · 16 years ago
  43. 337e3a5 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 16 years ago
  44. 45f83ee Improve code-completion results for the flags in an @property by Douglas Gregor · 16 years ago
  45. ab6ccb5 StringRef'ify CodeCompletionString by Douglas Gregor · 16 years ago
  46. 242ea9a Rework Sema code completion interface. by Daniel Dunbar · 16 years ago
  47. b0a1942 Spell empty StringRef correctly (0 is a null StringRef, which is not the same). by Daniel Dunbar · 16 years ago
  48. 9eb7701 Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 16 years ago
  49. f329c7c Include macros in code-completion results by Douglas Gregor · 16 years ago
  50. 58acf32 Minor tweaks for code-completion: by Douglas Gregor · 16 years ago
  51. 78f0fa5 Make sure to flush raw_string_ostream, from John Thompson by Douglas Gregor · 16 years ago
  52. f0f5198 Print the results of code-completion for overloading by displaying the by Douglas Gregor · 16 years ago
  53. 05f477c Separate the code-completion results for call completion from the by Douglas Gregor · 16 years ago
  54. 5bf5269 Tweak the code-completion results ranking and formation, so that by Douglas Gregor · 16 years ago
  55. 3545ff4 Refactor and simplify the CodeCompleteConsumer, so that all of the by Douglas Gregor · 16 years ago
  56. b5c738b In C++ code completion, only suggest the "template" keyword after ".", by Douglas Gregor · 16 years ago
  57. ce23bae Make the construction of the code-completion string for a function by Douglas Gregor · 16 years ago
  58. 3f6ca38 Introduce code completion patterns for templates, which provide the by Douglas Gregor · 16 years ago
  59. fedc328 Introduce code completion strings, which describe how to *use* the by Douglas Gregor · 16 years ago
  60. c811ede C++ code completion after the "operator" keyword. Provide overloaded by Douglas Gregor · 16 years ago
  61. 7e90c6d Introduce four new code-completion hooks for C++: by Douglas Gregor · 16 years ago
  62. 2ecab75 Don't perform name lookup into a given declaration context more than once during code completion by Douglas Gregor · 16 years ago
  63. 56c2dbc Handle using declarations and overload sets in code completion. by Douglas Gregor · 16 years ago
  64. 945e8d9 For code completion in C++ member access expressions and tag names, by Douglas Gregor · 16 years ago
  65. 2da1108 When gathering results for code completion, only include hidden by Douglas Gregor · 16 years ago
  66. f45b0cf Implement code completion for tags, e.g., code completion after "enum" by Douglas Gregor · 16 years ago
  67. 2436e71 Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 16 years ago