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