summaryrefslogtreecommitdiff
path: root/lib/Sema/CodeCompleteConsumer.cpp
Commit message (Expand)AuthorAge
* [C++11] Use 'nullptr'. Sema edition.Craig Topper2014-05-26
* Fix a bunch of mislayered clang/Lex includes from SemaAlp Toker2014-05-03
* Allow the computation of the base priority for a declaration code completion ...Douglas Gregor2013-01-31
* Use 'const Decl *' throughout code completion in SemaDmitri Gribenko2013-01-23
* Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko2013-01-12
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-04
* [libclang] Remove the ParentKind cursor kind from code-completion results.Argyrios Kyrtzidis2012-09-26
* Add a new libclang completion API to get brief documentation comment that isDmitri Gribenko2012-07-02
* Bitpack CodeCompletionResults.Benjamin Kramer2012-05-20
* [code-complete] Introduce CodeCompletionTUInfo which will be used for cachingArgyrios Kyrtzidis2012-04-10
* Introduce a new libclang API to determine the parent context of a codeDouglas Gregor2012-03-27
* Move CodeCompletionBuilder's chunk adding methods out of line.Benjamin Kramer2012-03-26
* When determining the availability of an enum constant, also considerDouglas Gregor2012-03-17
* Basic: import SmallString<> into clang namespaceDylan Noblesmith2012-02-05
* Move a method from IdentifierTable.h out of line and remove the SmallString i...Benjamin Kramer2012-02-04
* Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie2012-01-17
* Eliminate ObjCForwardProtocolDecl, which is redundant now thatDouglas Gregor2012-01-01
* Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDeclDouglas Gregor2011-12-27
* Change operator<< for raw_ostream and NamedDecl to take a reference instead o...Benjamin Kramer2011-10-14
* Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations toErik Verbruggen2011-10-14
* Added CXAvailability_NotAccessible to indicate that a declaration is availabl...Erik Verbruggen2011-10-06
* When performing code completion after at @interface, allow bothDouglas Gregor2011-07-30
* remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner2011-07-23
* Introduce a new libclang aPI function,Douglas Gregor2011-07-07
* Implement a new 'availability' attribute, that allows one to specifyDouglas Gregor2011-03-23
* When code-completing a case statement for a switch on a value ofDouglas Gregor2011-02-18
* Implement code completion results for the Objective-C Key-Value CodingDouglas Gregor2011-02-17
* Revert r124704, which uniqued code-completion strings. The spaceDouglas Gregor2011-02-02
* Unique code-completion strings. On Cocoa.h, this costs us about 4% inDouglas Gregor2011-02-01
* Create a special allocator class for code completion, so that all ofDouglas Gregor2011-02-01
* Allocate CodeCompletionString and all of its components in aDouglas Gregor2011-02-01
* Eliminate the (de-)serialization of code completion results, now thatDouglas Gregor2010-10-11
* Synchronize globally-cached code completion results with the resultsDouglas Gregor2010-09-23
* Add code completion for C++ constructors wherever we see the class (orDouglas Gregor2010-09-21
* Give the Objective-C _cmd an "unlikely" code completion priority; it'sDouglas Gregor2010-09-18
* Synchronize code-completion cursor kinds with indexing cursorDouglas Gregor2010-09-03
* Simplify code-completion result sorting a bitDouglas Gregor2010-09-03
* Rename DeclContext::getLookupContext to getRedeclContext and change its seman...Sebastian Redl2010-08-31
* Move the sorting of code-completion results out of the main path andDouglas Gregor2010-08-26
* Revert r112149, "Move the sorting of code-completion results out of the mainDaniel Dunbar2010-08-26
* Move the sorting of code-completion results out of the main path andDouglas Gregor2010-08-26
* Revert "Move the sorting of code-completion results out of the main path andDouglas Gregor2010-08-26
* Move the sorting of code-completion results out of the main path andDouglas Gregor2010-08-25
* When combining the code-completion results from Sema long with theDouglas Gregor2010-08-25
* Teach Sema to live without CodeCompleteConsumer.h.John McCall2010-08-25
* Move more stuff out of Sema.h.John McCall2010-08-25
* Struggle mightily against header inclusion in Sema.h.John McCall2010-08-24
* Introduce new libclang API functions that determine the availabilityDouglas Gregor2010-08-23
* Another step in the process of making the parser depend on Sema:John McCall2010-08-20
* Implement caching of code-completion results for macro definitionsDouglas Gregor2010-08-13