summaryrefslogtreecommitdiffstats
path: root/lib/Sema/CodeCompleteConsumer.cpp
Commit message (Expand)AuthorAgeFilesLines
* Synchronize code-completion cursor kinds with indexing cursorDouglas Gregor2010-09-031-87/+5
* Simplify code-completion result sorting a bitDouglas Gregor2010-09-031-8/+0
* Rename DeclContext::getLookupContext to getRedeclContext and change its seman...Sebastian Redl2010-08-311-1/+1
* Move the sorting of code-completion results out of the main path andDouglas Gregor2010-08-261-1/+8
* Revert r112149, "Move the sorting of code-completion results out of the mainDaniel Dunbar2010-08-261-8/+1
* Move the sorting of code-completion results out of the main path andDouglas Gregor2010-08-261-1/+8
* Revert "Move the sorting of code-completion results out of the main path andDouglas Gregor2010-08-261-8/+1
* Move the sorting of code-completion results out of the main path andDouglas Gregor2010-08-251-1/+8
* When combining the code-completion results from Sema long with theDouglas Gregor2010-08-251-0/+56
* Teach Sema to live without CodeCompleteConsumer.h.John McCall2010-08-251-12/+12
* Move more stuff out of Sema.h.John McCall2010-08-251-0/+1
* Struggle mightily against header inclusion in Sema.h.John McCall2010-08-241-0/+1
* Introduce new libclang API functions that determine the availabilityDouglas Gregor2010-08-231-1/+14
* Another step in the process of making the parser depend on Sema:John McCall2010-08-201-1/+1
* Implement caching of code-completion results for macro definitionsDouglas Gregor2010-08-131-75/+89
* Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor2010-08-121-1/+1
* Once code completion has completed, pass a "completion context" on toDouglas Gregor2010-08-111-0/+2
* Add code-completion support directly to ASTUnit, which performs codeDouglas Gregor2010-08-041-54/+46
* Minor code simplification.Dan Gohman2010-07-261-2/+1
* Introduce priorities into the code-completion results.Douglas Gregor2010-05-261-13/+34
* Improve code completion in failure cases in two ways:Douglas Gregor2010-05-251-20/+0
* Add raw_ostream operators to NamedDecl for convenience. Switch over all users...Benjamin Kramer2010-04-171-1/+1
* Implement code completion for Objective-C method declarations andDouglas Gregor2010-04-071-1/+1
* Code completion results that refer to macros now get the cursor kindDouglas Gregor2010-04-051-2/+5
* Remove unused headers.Duncan Sands2010-03-081-1/+0
* Eliminate cursor kinds used to express definitions. Instead, provideDouglas Gregor2010-01-191-2/+2
* Improve the sorting of code-completion results. We now always sort byDouglas Gregor2010-01-131-6/+5
* Improve code completion by introducing patterns for the various C andDouglas Gregor2010-01-101-0/+40
* Extend code-completion results with the type of each resultDouglas Gregor2009-12-181-1/+16
* Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gaveJeffrey Yasskin2009-12-121-1/+1
* Switch the clang-to-CIndex interface for code-completion to a binary format, ...Douglas Gregor2009-12-011-319/+172
* Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.Benjamin Kramer2009-11-281-1/+0
* Improve code-completion results for the flags in an @propertyDouglas Gregor2009-11-191-0/+61
* StringRef'ify CodeCompletionStringDouglas Gregor2009-11-171-4/+6
* Rework Sema code completion interface.Daniel Dunbar2009-11-131-4/+8
* Spell empty StringRef correctly (0 is a null StringRef, which is not the same).Daniel Dunbar2009-11-121-1/+1
* Various improvements to Clang's code-completion infrastructure:Douglas Gregor2009-11-071-8/+465
* Include macros in code-completion resultsDouglas Gregor2009-10-301-0/+11
* Minor tweaks for code-completion:Douglas Gregor2009-10-091-1/+2
* Make sure to flush raw_string_ostream, from John ThompsonDouglas Gregor2009-09-291-1/+1
* Print the results of code-completion for overloading by displaying theDouglas Gregor2009-09-231-20/+4
* Separate the code-completion results for call completion from theDouglas Gregor2009-09-231-0/+64
* Tweak the code-completion results ranking and formation, so thatDouglas Gregor2009-09-221-16/+28
* Refactor and simplify the CodeCompleteConsumer, so that all of theDouglas Gregor2009-09-211-846/+5
* In C++ code completion, only suggest the "template" keyword after ".",Douglas Gregor2009-09-181-4/+18
* Make the construction of the code-completion string for a functionDouglas Gregor2009-09-181-8/+48
* Introduce code completion patterns for templates, which provide theDouglas Gregor2009-09-181-0/+88
* Introduce code completion strings, which describe how to *use* theDouglas Gregor2009-09-181-2/+131
* C++ code completion after the "operator" keyword. Provide overloadedDouglas Gregor2009-09-181-1/+76
* Introduce four new code-completion hooks for C++:Douglas Gregor2009-09-181-0/+68