summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/CodeCompleteConsumer.h
Commit message (Expand)AuthorAgeFilesLines
* [code-complete] Introduce CodeCompletionTUInfo which will be used for cachingArgyrios Kyrtzidis2012-04-101-16/+53
* Introduce a new libclang API to determine the parent context of a codeDouglas Gregor2012-03-271-14/+61
* Move CodeCompletionBuilder's chunk adding methods out of line.Benjamin Kramer2012-03-261-23/+9
* Revert my patches which removed Diagnostic.h includes by moving some operator...Benjamin Kramer2012-02-071-1/+0
* Move various diagnostic operator<< overloads out of line and remove includes ...Benjamin Kramer2012-02-041-0/+1
* Introduce a CodeCompletionResult::CreateCodeCompletionString() thatArgyrios Kyrtzidis2012-01-171-0/+3
* Fixing 80 col violations (& removing any trailing whitespace on files I was t...David Blaikie2011-11-091-160/+160
* Code completion chunks are pod-like.Benjamin Kramer2011-10-171-1/+11
* Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations toErik Verbruggen2011-10-141-4/+18
* Added CXAvailability_NotAccessible to indicate that a declaration is availabl...Erik Verbruggen2011-10-061-3/+4
* When performing code completion after at @interface, allow bothDouglas Gregor2011-07-301-2/+2
* Add new libclang API, clang_codeCompleteGetObjCSelector(), whichDouglas Gregor2011-07-261-2/+19
* New libclang API to expose container type for code completion, fromDouglas Gregor2011-07-211-1/+2
* remove some now-redundant forward declarations.Chris Lattner2011-07-201-5/+0
* add raw_ostream and Twine to LLVM.h, eliminating a ton of llvm:: qualifications.Chris Lattner2011-07-201-4/+4
* now that we have a centralized place to do so, add some using declarations forChris Lattner2011-07-201-5/+5
* Introduce a new libclang aPI function,Douglas Gregor2011-07-071-3/+27
* When providing code completions for an Objective-C property access,Douglas Gregor2011-05-051-1/+4
* When code-completing a case statement for a switch on a value ofDouglas Gregor2011-02-181-0/+6
* Implement code completion results for the Objective-C Key-Value CodingDouglas Gregor2011-02-171-9/+21
* When code-completing within a list of declaration specifiers,Douglas Gregor2011-02-151-1/+1
* Fix Microsoft bit field problem. This resolves the Index\complete-exprs.c reg...Francois Pichet2011-02-031-1/+1
* Revert r124704, which uniqued code-completion strings. The spaceDouglas Gregor2011-02-021-38/+0
* Unique code-completion strings. On Cocoa.h, this costs us about 4% inDouglas Gregor2011-02-011-0/+38
* Create a special allocator class for code completion, so that all ofDouglas Gregor2011-02-011-9/+16
* Allocate CodeCompletionString and all of its components in aDouglas Gregor2011-02-011-61/+96
* Change all self assignments X=X to (void)X, so that we can turn on aJeffrey Yasskin2010-12-231-1/+1
* Tweak code-completion result priorities, so that exact and similarDouglas Gregor2010-10-191-5/+5
* Eliminate the (de-)serialization of code completion results, now thatDouglas Gregor2010-10-111-34/+0
* Switch c-index-test from clang_codeComplete() over toDouglas Gregor2010-10-111-1/+2
* Synchronize globally-cached code completion results with the resultsDouglas Gregor2010-09-231-2/+5
* Add code completion for C++ constructors wherever we see the class (orDouglas Gregor2010-09-211-0/+4
* Code completion has no reason to prefer values over types, especiallyDouglas Gregor2010-09-201-2/+2
* Get rid of the lame attempt to prioritize "void" functions atDouglas Gregor2010-09-201-5/+0
* Tweak priorities for some types and macros:Douglas Gregor2010-09-201-1/+8
* Give the Objective-C _cmd an "unlikely" code completion priority; it'sDouglas Gregor2010-09-181-1/+4
* Swap the priorities of constants and types, so that we prefer types.Douglas Gregor2010-09-161-3/+3
* Introduce a new code-completion context for a parenthesizedDouglas Gregor2010-09-141-1/+4
* Synchronize code-completion cursor kinds with indexing cursorDouglas Gregor2010-09-031-0/+6
* Improve code completion for initializer lists in constructors. InsteadDouglas Gregor2010-08-291-0/+3
* Suggest "const" and "volatile" code completions after a functionDouglas Gregor2010-08-271-1/+3
* When code-completing inside an Objective-C method, give a slightDouglas Gregor2010-08-271-1/+5
* Add a super-cool code completion for send-to-super. When we're typingDouglas Gregor2010-08-271-0/+2
* When code-completing a potential call to a C++ non-static memberDouglas Gregor2010-08-261-2/+5
* Implement code completion for @selector expressionsDouglas Gregor2010-08-261-1/+3
* When combining the code-completion results from Sema long with theDouglas Gregor2010-08-251-0/+21
* Add a code-completion context for "natural language" completions, soDouglas Gregor2010-08-251-1/+7
* Teach Sema to live without CodeCompleteConsumer.h.John McCall2010-08-251-147/+149
* Give a slight preference to functions returning "void" when we'reDouglas Gregor2010-08-241-1/+6
* In code-completion contexts where both types and other values areDouglas Gregor2010-08-241-2/+2