aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/CodeCompleteConsumer.cpp
AgeCommit message (Expand)Author
2011-07-30When performing code completion after at @interface, allow bothDouglas Gregor
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-07-07Introduce a new libclang aPI function,Douglas Gregor
2011-03-23Implement a new 'availability' attribute, that allows one to specifyDouglas Gregor
2011-02-18When code-completing a case statement for a switch on a value ofDouglas Gregor
2011-02-17Implement code completion results for the Objective-C Key-Value CodingDouglas Gregor
2011-02-02Revert r124704, which uniqued code-completion strings. The spaceDouglas Gregor
2011-02-01Unique code-completion strings. On Cocoa.h, this costs us about 4% inDouglas Gregor
2011-02-01Create a special allocator class for code completion, so that all ofDouglas Gregor
2011-02-01Allocate CodeCompletionString and all of its components in aDouglas Gregor
2010-10-11Eliminate the (de-)serialization of code completion results, now thatDouglas Gregor
2010-09-23Synchronize globally-cached code completion results with the resultsDouglas Gregor
2010-09-21Add code completion for C++ constructors wherever we see the class (orDouglas Gregor
2010-09-18Give the Objective-C _cmd an "unlikely" code completion priority; it'sDouglas Gregor
2010-09-03Synchronize code-completion cursor kinds with indexing cursorDouglas Gregor
2010-09-03Simplify code-completion result sorting a bitDouglas Gregor
2010-08-31Rename DeclContext::getLookupContext to getRedeclContext and change its seman...Sebastian Redl
2010-08-26Move the sorting of code-completion results out of the main path andDouglas Gregor
2010-08-26Revert r112149, "Move the sorting of code-completion results out of the mainDaniel Dunbar
2010-08-26Move the sorting of code-completion results out of the main path andDouglas Gregor
2010-08-26Revert "Move the sorting of code-completion results out of the main path andDouglas Gregor
2010-08-25Move the sorting of code-completion results out of the main path andDouglas Gregor
2010-08-25When combining the code-completion results from Sema long with theDouglas Gregor
2010-08-25Teach Sema to live without CodeCompleteConsumer.h.John McCall
2010-08-25Move more stuff out of Sema.h.John McCall
2010-08-24Struggle mightily against header inclusion in Sema.h.John McCall
2010-08-23Introduce new libclang API functions that determine the availabilityDouglas Gregor
2010-08-20Another step in the process of making the parser depend on Sema:John McCall
2010-08-13Implement caching of code-completion results for macro definitionsDouglas Gregor
2010-08-12Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor
2010-08-11Once code completion has completed, pass a "completion context" on toDouglas Gregor
2010-08-04Add code-completion support directly to ASTUnit, which performs codeDouglas Gregor
2010-07-26Minor code simplification.Dan Gohman
2010-05-26Introduce priorities into the code-completion results.Douglas Gregor
2010-05-25Improve code completion in failure cases in two ways:Douglas Gregor
2010-04-17Add raw_ostream operators to NamedDecl for convenience. Switch over all users...Benjamin Kramer
2010-04-07Implement code completion for Objective-C method declarations andDouglas Gregor
2010-04-05Code completion results that refer to macros now get the cursor kindDouglas Gregor
2010-03-08Remove unused headers.Duncan Sands
2010-01-19Eliminate cursor kinds used to express definitions. Instead, provideDouglas Gregor
2010-01-13Improve the sorting of code-completion results. We now always sort byDouglas Gregor
2010-01-10Improve code completion by introducing patterns for the various C andDouglas Gregor
2009-12-18Extend code-completion results with the type of each resultDouglas Gregor
2009-12-12Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gaveJeffrey Yasskin
2009-12-01Switch the clang-to-CIndex interface for code-completion to a binary format, ...Douglas Gregor
2009-11-28Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.Benjamin Kramer
2009-11-19Improve code-completion results for the flags in an @propertyDouglas Gregor
2009-11-17StringRef'ify CodeCompletionStringDouglas Gregor
2009-11-13Rework Sema code completion interface.Daniel Dunbar
2009-11-12Spell empty StringRef correctly (0 is a null StringRef, which is not the same).Daniel Dunbar